polarbeardesign / dds_app

2nd Gen
2 stars 0 forks source link

Bump jquery-rails, rails, paper_trail, exception_notification, acts_as_list and i18n #24

Open dependabot[bot] opened 1 year ago

dependabot[bot] commented 1 year ago

Bumps jquery-rails, rails, paper_trail, exception_notification, acts_as_list and i18n. These dependencies needed to be updated together. Updates jquery-rails from 3.1.5 to 4.5.1

Changelog

Sourced from jquery-rails's changelog.

unreleased

  • update jquery to 3.6.1
  • update jquery-usj to 1.2.3

4.5.0

  • update jquery to 3.6.0

4.4.0

4.3.5

  • update jquery to 3.4.1

4.3.4

  • update jquery to 3.4.0

4.3.3

  • update jquery to 3.3.1

4.3.2

  • update jquery to 3.3.0
  • Add possibility to test HTML: all, attribute prefix, attribute contains, attribute ends with, child, and class selectors
  • Fix matching multiple calls for the same selector/function exception

4.3.1

  • update jquery to 3.2.1

4.3.0

  • update jquery to 3.2.0
  • Add possibility to test HTML attribute selectors

4.2.2

  • update jquery to 3.1.1

4.2.1

  • update jquery to 3.1.0

... (truncated)

Commits
  • de8792d Release v4.5.1 with jquery 3.6.1 and jquery-ujs 1.2.3
  • 7e6f508 Update jquery-ujs to latest v1.2.3
  • a80d74b Update jQuery to latest v3.6.1
  • 153d9ff Fix changelog typo [ci skip]
  • 5cb8af2 Release v4.5.0 with jQuery 3.6.0
  • 8cd051a Update jQuery to 3.6.0
  • a8b003d Release v4.4.0
  • 90826fd Bump jQuery version to 3.5.1
  • ad3227e Test against latest Ruby versions
  • 6361d43 Merge pull request #269 from repinel/fix-unescape-js
  • Additional commits viewable in compare view


Updates rails from 3.2.22 to 7.0.4.3

Release notes

Sourced from rails's releases.

v7.0.4.3

Active Support

  • Implement SafeBuffer#bytesplice

    [CVE-2023-28120]

Active Model

  • No changes.

Active Record

  • No changes.

Action View

  • Ignore certain data-* attributes in rails-ujs when element is contenteditable

    [CVE-2023-23913]

Action Pack

  • No changes.

Active Job

  • No changes.

Action Mailer

  • No changes.

Action Cable

... (truncated)

Commits
  • c15ee6e Preparing for 7.0.4.3 release
  • 73009ea Ignore certain data-* attributes in rails-ujs when element is contenteditable
  • 3468503 Implement SafeBuffer#bytesplice
  • 7c70791 Version 7.0.4.2
  • 1d6de16 Merge pull request #47087 from jhawthorn/cookie_domain
  • 23e0345 Version 7.0.4.1
  • d7aba06 Make sanitize_as_sql_comment more strict
  • 8d82687 Avoid regex backtracking on If-None-Match header
  • 2164d4f Avoid regex backtracking in Inflector.underscore
  • cd46b0e Use string#split instead of regex for domain parts
  • Additional commits viewable in compare view


Updates paper_trail from 4.0.2 to 14.0.0

Release notes

Sourced from paper_trail's releases.

v12.0.0

Breaking Changes

  • Rails: The deprecated config.paper_trail configuration technique has been removed. This configuration object was deprecated in 10.2.0. It only had one key, config.paper_trail.enabled. Please review docs section 2.d. Turning PaperTrail Off for alternatives.

Added

  • where_object_changes_from queries for versions where the object's attributes changed from one set of known values to any other set of values.

Fixed

  • #1281 Rails: Instead of an Engine, PT now provides a Railtie, which is simpler.
  • Expand kwargs passed to save_with_version using double splat operator - Rails 6.1 compatibility
  • #1287 - Fix 'rails db:migrate' error when run against an app with mysql2 adapter

Dependencies

  • Drop support for ruby 2.4 (reached EoL on 2020-03-31)

v7.0.0

No release notes provided.

v6.0.2

No release notes provided.

v6.0.1

No release notes provided.

6.0.0

See changelog

v5.2.3

See CHANGELOG.md

v5.2.2

No release notes provided.

v5.2.1

No release notes provided.

v5.2.0

No release notes provided.

v5.1.1

See CHANGELOG.md

v5.1.0

See CHANGELOG.md

v5.0.1

... (truncated)

Changelog

Sourced from paper_trail's changelog.

14.0.0 (2022-11-26)

Breaking Changes

  • #1399 - Same change re: YAML.safe_load as in 13.0.0, but this time for Rails 6.0 and 6.1.
  • #1406 - Certain [Metadata][1] keys are now forbidden, like id, and item_type. These keys are reserved by PT.
    • This change is unlikely to affect anyone. It is not expected that anyone uses these metadata keys. Most people probably don't use PT metadata at all.

Dependencies

  • Drop support for Rails 5.2, which reached EoL on 2022-06-01
  • Drop support for Ruby 2.6, which reached EoL on 2022-03-31
  • Drop support for request_store < 1.4

Added

  • None

Fixed

  • #1395 - Fix incorrect Version#created_at value when using PaperTrail::RecordTrail#update_columns
  • #1404 - Delay referencing ActiveRecord until after Railtie is loaded
  • Where possible, methods which are not part of PaperTrail's public API have had their access changed to private. All of these methods had been clearly marked as @api private in the documentation, for years. This is not expected to be a breaking change.

13.0.0 (2022-08-15)

Breaking Changes

  • For Rails >= 7.0, the default serializer will now use YAML.safe_load unless ActiveRecord.use_yaml_unsafe_load. This change only affects users whose versions table has object or object_changes columns of type text, and who use the YAML serializer. People who use the JSON serializer, or those with json(b) columns, are unaffected. Please see https://github.com/paper-trail-gem/paper_trail/blob/master/doc/pt_13_yaml_safe_load.md for details.

Added

... (truncated)

Commits
  • 1aa0945 Release 14.0.0
  • edefe81 Drop support for request_store < 1.4
  • 81822fa Lint: Rails/RedundantForeignKey
  • e98e639 Lint: Rails/RakeEnvironment
  • 3ad8bf2 Regen rubocop todo
  • 3885128 Lint: Rails/NegateInclude
  • f5e129f Lint: Rails/ApplicationRecord
  • 71f5212 Make some api-private methods actually private
  • 9a48faf Doc: Mention PT 14 YAML.safe_load
  • e059109 GHA: upgrade to actions/stale@v6, add exempt-issue-labels option
  • Additional commits viewable in compare view


Updates exception_notification from 3.0.1 to 4.5.0

Changelog

Sourced from exception_notification's changelog.

== 4.5.0

  • enhancements

    • Added Rails 7 compatibility (by @​fwininger)
    • Added support for the optional data attribute to the SNS notifier (@​TomK32)
    • Addressed a deprecation warning for module_parent_name which was thrown for users using Rails > 6.x (@​quorak)
    • Restored the hash separator for controller#action in the email notifier (@​garethrees)
  • removals

    • Dropped support for Tinder (gem is no longer maintained) (by @​fwininger)
    • Dropped support for Ruby on Rails versions below 5.2

== 4.4.3

  • big fixes
    • Remove using configured default from address from custom mailer_parent class

== 4.4.2 (yanked)

  • bug fixes
    • Fix sender_address being overwritten

== 4.4.1

  • enhancements

    • Enhance ignore_if option to allow by-notifier customization (by @​fursich)
    • Ignore extended modules of ignored exceptions (by @​elengine)
    • Add exception_data to Mattermost notifier (by @​camillof)
  • bug fixes

== 4.4.0

== 4.3.0

  • enhancements

... (truncated)

Commits
  • 13bd47d Merge pull request #527 from mschnitzer/master
  • 092d399 Delete travis config
  • 60cbe96 Reflect current GitHub actions build status in README
  • 01874d9 Update release date for upcoming 4.5.0 release
  • 7337212 Highlight that Rails versions below 5.2 are no longer supported
  • 5eaea31 Merge pull request #524 from Cyberwatch/refactor_tests
  • 84f4be8 Add net-smtp to be compatible with ruby 3.1
  • 7d3c321 Use github action for testing and update test suite
  • 10272f9 Merge pull request #526 from mschnitzer/prepare_for_4.5.0
  • 09fb4a4 Merge pull request #523 from Cyberwatch/update_rails_7
  • Additional commits viewable in compare view


Updates acts_as_list from 0.2.0 to 1.1.0

Changelog

Sourced from acts_as_list's changelog.

v1.1.0 - 2023-02-01

Fixed (Possibly Breaking)

  • Use after_save instead of after_commit for clear_scope_changed callback #407 (@​Flixt)
  • Rename add_to_list_top and add_to_list_bottom private methods to avoid_collision that handles both cases as well as the case where :add_new_at is nil. Setting an explicit position when :add_new_at is nil will now shuffle other items out of the way if necessary. This may break existing workarounds you have in place to deal with this bug. #411. ([brendon])

v1.0.4 - 2021-04-20

Fixed

  • Add Tests ruby 2.7 and 3.0 #393 ([QWYNG])

v1.0.3 - 2020-12-24

Fixed

  • Silence deprecation warnings in Rails 6 #384 ([h-lame])
  • Add explicit requirement of ActiveSupport::Inflector #387 ([rdvdijk])

v1.0.2 - 2020-09-14

Fixed

  • Get foreign key from reflections when possible #383 (jefftsang)

Removed

v1.0.1 - 2020-02-27

Fixed

  • Invert order when incrementing to circumvent unique index violations (#368)

v1.0.0 - 2019-09-26

Full Changelog

Removed

  • BREAKING CHANGE: Support for Rails 3.2 > 4.1 has been removed. 0.9.19 is the last version that supports these Rails versions

Added

  • Added Troubleshooting Database Deadlock Errors section to README.md
  • Added support for Rails 6.0 in testing
  • Various README fixes
  • A new method called current_position now exists and returns the integer position of the item it's called on, or nil if the position isn't set.

v0.9.19 - 2019-03-12

Full Changelog

Added

... (truncated)

Commits


Updates i18n from 0.6.11 to 1.13.0

Release notes

Sourced from i18n's releases.

v1.13.0

What's Changed

New Contributors

Full Changelog: https://github.com/ruby-i18n/i18n/compare/v1.12.0...v1.13.0

v1.12.0

What's Changed

  • Revert "Add support for CLDR data in I18n::Backend::Pluralization" by @​radar in ruby-i18n/i18n#633 -- this was causing breaking changes unintentionally.

Full Changelog: https://github.com/ruby-i18n/i18n/compare/v1.11.0...v1.12.0

v1.11.0

What's Changed

New Contributors

Full Changelog: https://github.com/ruby-i18n/i18n/compare/v1.10.0...v1.11.0

v1.10.0

What's Changed

New Features

Bug fixes

... (truncated)

Commits
  • b9b79ab Bump to 1.13.0
  • b4cd00d Merge pull request #649 from fatkodima/fix-interpolate-same-object
  • be2f3a0 Return same string object when no interpolations were made
  • f75520a Merge pull request #651 from fatkodima/optimizations
  • ac2592f Merge pull request #650 from fatkodima/stub_const
  • 048af5c Optimize I18n.t
  • 288868e Properly stub constants
  • 42052e8 Merge pull request #637 from movermeyer/movermeyer/nested_pluralization_with_...
  • c635958 Merge pull request #647 from misdoro/exists_scope
  • d94228c Merge pull request #634 from movermeyer/movermeyer/explicit_0_1_and_lateral_i...
  • Additional commits viewable in compare view


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/polarbeardesign/dds_app/network/alerts).