polarbeardesign / dds_app

2nd Gen
2 stars 0 forks source link

Bump jquery-rails, rails, devise, sass-rails, coffee-rails, paper_trail, exception_notification, acts_as_list and i18n #25

Open dependabot[bot] opened 1 year ago

dependabot[bot] commented 1 year ago

Bumps jquery-rails, rails, devise, sass-rails, coffee-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.6.0

Changelog

Sourced from jquery-rails's changelog.

4.6.0

  • update jquery to 3.7.0

4.5.1

  • update jquery to 3.6.1
  • update jquery-ujs 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

... (truncated)

Commits
  • 12869da Release v4.6.0 with jQuery v3.7.0
  • 65a9c73 Update jquery to 3.7.0
  • fb5a7a8 Merge pull request #293 from MichaelHoste/patch-1
  • d9dfbe1 Merge pull request #296 from okuramasafumi/patch-1
  • f34a439 Update CHANGELOG.md
  • b9e5aa7 Fix typo in CHANGELOG.md (usj => ujs)
  • 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]
  • Additional commits viewable in compare view


Updates rails from 3.2.22 to 7.0.6

Release notes

Sourced from rails's releases.

7.0.6

Active Support

  • Fix EncryptedConfiguration returning incorrect values for some Hash methods

    Hartley McGuire

  • Fix arguments being destructed Enumerable#many? with block.

    Andrew Novoselac

  • Fix humanize for strings ending with id.

    fatkodima

Active Model

  • No changes.

Active Record

  • Fix autosave associations with validations added on :base of the associated objects.

    fatkodima

  • Fix result with anonymous PostgreSQL columns of different type from json.

    Oleksandr Avoiants

  • Preserve timestamp when setting an ActiveSupport::TimeWithZone value to timestamptz attribute.

    fatkodima

  • Fix where on association with has_one/has_many polymorphic relations.

    Before:

    Treasure.where(price_estimates: PriceEstimate.all)
    #=> SELECT (...) WHERE "treasures"."id" IN (SELECT "price_estimates"."estimate_of_id" FROM "price_estimates")
    

    Later:

    Treasure.where(price_estimates: PriceEstimate.all)
    #=> SELECT (...) WHERE "treasures"."id" IN (SELECT "price_estimates"."estimate_of_id" FROM "price_estimates" WHERE "price_estimates"."estimate_of_type" = 'Treasure')
    

... (truncated)

Commits
  • 593893c Preparing for 7.0.6 release
  • e4509c6 Fix yarn.lock
  • 4aa2446 Update CHANGELOG
  • 0b89567 Avoid creating match object when checking for illegal header value
  • be7cde2 Merge pull request #48588 from zzak/7-0-backport-f1cdfc0
  • 9ae3da1 Fix rubocop warning
  • 8e37f2b Merge branch '7-0-sec' into 7-0-stable
  • cdd14ce Preparing for 7.0.5.1 release
  • 93b9c74 update changelog
  • c9ab9b3 Added check for illegal HTTP header value in redirect_to
  • Additional commits viewable in compare view


Updates devise from 3.5.10 to 4.9.2

Release notes

Sourced from devise's releases.

v4.9.2

https://github.com/heartcombo/devise/blob/main/CHANGELOG.md#492---2023-04-03

v4.9.1

https://github.com/heartcombo/devise/blob/v4.9.1/CHANGELOG.md#491---2023-03-31

v4.9.0

https://github.com/heartcombo/devise/blob/v4.9.0/CHANGELOG.md#490---2023-02-17

v4.8.1

No release notes provided.

v4.8.0

No release notes provided.

v4.7.1

No release notes provided.

v4.7.0

No release notes provided.

v4.6.2

No release notes provided.

v4.6.1

No release notes provided.

v4.6.0

No release notes provided.

v4.5.0

No release notes provided.

v4.4.3

No release notes provided.

v4.4.2

No release notes provided.

v4.4.1

No release notes provided.

v4.4.0

No release notes provided.

Changelog

Sourced from devise's changelog.

4.9.2 - 2023-04-03

  • deprecations
    • Bring back Devise.activerecord51? and deprecate it, in order to avoid breakage with some libraries that apparently relied on it.

4.9.1 - 2023-03-31

  • enhancements

    • Allow resource class scopes to override the global configuration for sign_in_after_reset_password behaviour. #5429 @​mattr
    • Refactor conditional dirty tracking logic to a centralized module to simplify usage throughout the codebase. #5575
    • Improve support for Devise in apps with Active Record and Mongoid ORMs loaded, so it does not incorrectly uses new Active Record dirty tracking APIs with a Mongoid Devise model. #5576
  • bug fixes

    • Failure app will respond with configured redirect_status instead of error_status if the recall app returns a redirect status (300..399) #5573
    • Fix frozen string exception in validatable. #5563 #5465 @​mameier

4.9.0 - 2023-02-17

  • enhancements
    • Add support for Ruby 3.1/3.2.
    • Add support for Hotwire + Turbo, default in Rails 7+.
      • Devise uses the latest responders version (v3.1.0 or higher), which allows configuring the status used for validation error responses (error_status) and for redirects after POST/PUT/PATCH/DELETE requests (redirect_status). For backwards compatibility, Devise keeps error_status as :ok which returns a 200 OK response, and redirect_status to :found which returns a 302 Found response, but you can configure it to return 422 Unprocessable Entity and 303 See Other respectively, to match the behavior expected by Hotwire/Turbo:

        # config/initializers/devise.rb
        Devise.setup do |config|
          # ...
          config.responder.error_status = :unprocessable_entity
          config.responder.redirect_status = :see_other
          # ...
        end
        

        These configs are already generated by default with new apps, and existing apps may opt-in as described above. Trying to set these with an older version of responders will issue a warning and have no effect, so please upgrade the responders version if you're upgrading Devise for this integration. Note that these defaults may change in future versions of Devise, to better match the Rails + Hotwire/Turbo defaults across the board.

      • If you have a custom responder set on your application and expect it to affect Devise as well, you may need to override the Devise responder entirely with config.responder = MyApplicationResponder, so that it uses your custom one. The main reason Devise uses a custom responder is to be able to configure the statuses as described above, but you can also change that config on your own responder if you want. Check the responders readme for more info on that.

      • If you have created a custom responder and/or failure app just to customize responses for better Hotwire/Turbo integration, they should no longer be necessary.

      • :turbo_stream is now treated as a navigational format, so it works like HTML navigation when using Turbo. Note: if you relied on :turbo_stream to be treated as a non-navigational format before, you can reconfigure your navigational_formats in the Devise initializer file to exclude it.

      • OmniAuth "Sign in with" links were changed to buttons that generate HTML forms with method=POST, instead of using link + method=POST that required rails-ujs to work. Since rails-ujs is no longer the default for new Rails apps, this allows the OmniAuth buttons to work in any scenario, with or without rails-ujs and/or Turbo. This only affects apps that are using the default devise/shared/_links.html.erb partial from Devise with OmniAuth enabled.

      • The "Cancel my account" button was changed to include the data-turbo-confirm option, so that it works with both rails-ujs and Turbo by default.

      • Devise does not provide "sign out" links/buttons in its shared views, but if you're using sign_out_via with :delete (the default), and are using links with method: :delete, those need to be updated with data: { turbo_method: :delete } instead for Turbo.

      • Check this upgrade guide for more detailed information.

4.8.1 - 2021-12-16

  • enhancements
    • Add support for Rails 7.0. Please note that Turbo integration is not fully supported by Devise yet.

4.8.0 - 2021-04-29

  • enhancements

... (truncated)

Commits
  • 8b0b849 Release v4.9.2
  • 4f849f4 Bring back `Devise.activerecord51? and deprecate it
  • 3926e6d Release v4.9.1
  • 506eaf4 Merge pull request #5576 from heartcombo/ca-multiple-orms
  • 8dbe5b2 Merge pull request #5573 from heartcombo/ca/failure-app-respect-redirect
  • 207ddc5 Improve support for Devise in apps with multiple ORMs loaded
  • 367ea42 Refactor dirty tracking conditionals for different versions (#5575)
  • 89a0835 Uses the responder redirect_status when recall returns a redirect
  • eed5117 Add explicit test for respecting the error_status responder config
  • 232c855 Fix tests with Rails main
  • Additional commits viewable in compare view


Updates sass-rails from 3.2.6 to 6.0.0

Release notes

Sourced from sass-rails's releases.

6.0.0

Breaking change

v5.0.7

  • Remove ruby warnings

v5.0.6

  • Fixes deprecation warnings on Sprockets 3 (#382)

    Richard Schneeman

5.0.5

  • Support Rails 5

5.0.4

  • Allow Tilt 2 usage
  • Allow no compression for all environments

5.0.3

  • Fixed file permissions

5.0.2

  • Configure assets environment inside a configure block. This fixes an issue with sprockets-rails' master branch.

5.0.1

  • Fixed @import glob related caching bug

5.0.0

  • Register scss and sass extensions for rake notes
  • Make possible to use sprocktes > 2.8 and < 4
  • Make possible to use sass ~> 3.1
  • Deprecate .css.scss and .css.sass extensions
  • Limit =require to .css only files and @import to .scss files. Avoid mixing the two.

4.0.5

  • Make possible to use sprockets 2.12.

4.0.4

  • Make possible to use any sprockets version in the 2.11 series.
  • Require at least sass 3.2.2.

4.0.3

  • Make possible to use sprockets-rails 2.1.

4.0.2

  • Lock sprockets version to <= 2.11.0. Fixes #191.

... (truncated)

Commits
  • a77240c Prepare to 6.0.0
  • 8dbe4dc Bump version to 6.0.0.beta3
  • 830a8ec Bump minimum version of sassc-rails
  • ff54c20 Fix open-ended dependency
  • ebe9ef7 Bump version to v6.0.0.beta2
  • 409d871 Merge pull request #424 from rails/sassc-rails
  • d809900 Recomend to use SassC::Rails::Importer to users requiring sass/rails/importer
  • 706526d Make sass-rails an wrapper for sassc-rails to allow a smooth upgrade path
  • ac38f1e Merge pull request #423 from gregmolnar/master
  • d61b999 remove gemnasium badge from readme
  • Additional commits viewable in compare view


Updates coffee-rails from 3.2.2 to 5.0.0

Changelog

Sourced from coffee-rails's changelog.

5.0.0 (Apr 23, 2019)

  • Remove support to Rails < 5.2.
  • Support Rails 6.

4.2.2 (May 24, 2017)

  • Support digest resolution for coffee templates.

4.2.1 (June 30, 2016)

  • Fix error in the gem package.

4.2.0 (June 30, 2016)

  • Override js_template hook in the Rails generator to allow Rails to be CoffeeScript agnostic.

4.1.1 (December 18, 2015)

  • Allow Rails 5.

    Rafael Mendonça França

4.1.0 (October 12, 2014)

  • Default to .coffee extension instead of .js.coffee

    Joshua Peek

  • Register coffee extension for rake notes.

    Roberto Miranda

4.0.1 (October 17, 2013)

  • Drop support to Rails 4.0.0.rc releases

    Rafael Mendonça França

4.0.0 (April 18, 2013)

  • Bump railties version to 4.0.0.beta.

    José Valim

Commits
  • 32a2939 Prepare to 5.0.0
  • 6507f0a Set the javascripts generator option as true in the railtie
  • 5f0e005 Point to rails repository
  • 74214e8 Merge pull request #114 from larouxn/rails_6_support
  • eff9c00 Revert folder structure changes, remove --javascripts flag
  • e7ce694 Fix for exclusively Rails 6
  • 69e6782 TESTING, use my fork of Rails
  • fc8c48c Conditionally use Rails 6 folder stucture
  • 5df5816 Merge pull request #111 from larouxn/stop_testing_below_ruby_2.2
  • 9bead93 Merge pull request #112 from larouxn/update_travis_jruby_version
  • 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.14.1

Release notes

Sourced from i18n's releases.

v1.14.1

Included in this release

Maintenance stuff

Thanks to @​amatsuda for these PRs!

New Contributors

Full Changelog: https://github.com/ruby-i18n/i18n/compare/v1.14.0...v1.14.1

v1.14.0

What's Changed

New Contributors

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

v1.13.0

What's Changed

New Contributors

... (truncated)

Commits
  • 395aa5e Bump to 1.14.1
  • 5d5c40f Merge pull request #666 from amatsuda/checkout_v3
  • d61de01 Fix build warnings in the CI by using actions/checkout@v3
  • 767c0a2 Merge pull request #665 from amatsuda/ci_ruby32
  • 9b519dc CI against Ruby 3.2
  • c396bae Merge pull request #659 from mark-a/mark-a-fallback-doc
  • bbe078b Merge pull request #662 from amatsuda/default_empty_array
  • 0bbef26 Merge pull request #663 from amatsuda/fix_rails_edge_ci
  • 26ae7f6 Merge pull request #664 from amatsuda/skip_jruby_rails52
  • 6afb576 Skip CIing on jruby against Rails 5.2
  • 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).