Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ Bump the rails group with 13 updates #2703

Merged
merged 1 commit into from
Oct 31, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 31, 2024

Bumps the rails group with 13 updates:

Package From To
rails 7.2.1.2 7.2.2
actioncable 7.2.1.2 7.2.2
actionmailbox 7.2.1.2 7.2.2
actionmailer 7.2.1.2 7.2.2
actionpack 7.2.1.2 7.2.2
actiontext 7.2.1.2 7.2.2
actionview 7.2.1.2 7.2.2
activejob 7.2.1.2 7.2.2
activemodel 7.2.1.2 7.2.2
activerecord 7.2.1.2 7.2.2
activestorage 7.2.1.2 7.2.2
activesupport 7.2.1.2 7.2.2
railties 7.2.1.2 7.2.2

Updates rails from 7.2.1.2 to 7.2.2

Release notes

Sourced from rails's releases.

7.2.2

Active Support

  • Include options when instrumenting ActiveSupport::Cache::Store#delete and ActiveSupport::Cache::Store#delete_multi.

    Adam Renberg Tamm

  • Print test names when running rails test -v for parallel tests.

    John Hawthorn, Abeid Ahmed

Active Model

  • Fix regression in alias_attribute to work with user defined methods.

    alias_attribute would wrongly assume the attribute accessor was generated by Active Model.

    class Person
      include ActiveModel::AttributeMethods
    define_attribute_methods :name
    attr_accessor :name
    alias_attribute :full_name, :name
    end
    person.full_name # => NoMethodError: undefined method `attribute' for an instance of Person

    Jean Boussier

Active Record

  • Fix support for query_cache: false in database.yml.

    query_cache: false would no longer entirely disable the Active Record query cache.

    zzak

  • Set .attributes_for_inspect to :all by default.

    For new applications it is set to [:id] in config/environment/production.rb.

    In the console all the attributes are always shown.

    Andrew Novoselac

... (truncated)

Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 9f24f75 Add yarn.lock allowed dirty files
  • ad485aa Merge pull request #52951 from Ridhwana/Ridhwana/active-record-validations [c...
  • f6916e7 Merge pull request #53494 from zzak/re-53492
  • a7858b5 Merge pull request #53472 from p8/activerecord/improve-attributes-for-inspect...
  • e6a8acd Merge pull request #53475 from p8/activerecord/show-all-attributes-in-console
  • 91aac4a Merge pull request #53484 from zzak/query_cache-config-disable
  • fe5f624 Better wording for config.action_dispatch.show_exceptions [ci-skip] (#53483)
  • 15872b4 Merge pull request #53473 from p8/activerecord/update-attributes-for-inspect-...
  • e1cccdc Add CHANGELOG entry for 170e6c178b7358a87a7304bdf80273e0b153f6fd
  • Additional commits viewable in compare view

Updates actioncable from 7.2.1.2 to 7.2.2

Release notes

Sourced from actioncable's releases.

7.2.2

Active Support

  • Include options when instrumenting ActiveSupport::Cache::Store#delete and ActiveSupport::Cache::Store#delete_multi.

    Adam Renberg Tamm

  • Print test names when running rails test -v for parallel tests.

    John Hawthorn, Abeid Ahmed

Active Model

  • Fix regression in alias_attribute to work with user defined methods.

    alias_attribute would wrongly assume the attribute accessor was generated by Active Model.

    class Person
      include ActiveModel::AttributeMethods
    define_attribute_methods :name
    attr_accessor :name
    alias_attribute :full_name, :name
    end
    person.full_name # => NoMethodError: undefined method `attribute' for an instance of Person

    Jean Boussier

Active Record

  • Fix support for query_cache: false in database.yml.

    query_cache: false would no longer entirely disable the Active Record query cache.

    zzak

  • Set .attributes_for_inspect to :all by default.

    For new applications it is set to [:id] in config/environment/production.rb.

    In the console all the attributes are always shown.

    Andrew Novoselac

... (truncated)

Changelog

Sourced from actioncable's changelog.

Rails 7.2.2 (October 30, 2024)

  • No changes.
Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 5f5349f Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 6637543 Merge pull request #53202 from byroot/ruby-3.4-hash-inspect
  • See full diff in compare view

Updates actionmailbox from 7.2.1.2 to 7.2.2

Release notes

Sourced from actionmailbox's releases.

7.2.2

Active Support

  • Include options when instrumenting ActiveSupport::Cache::Store#delete and ActiveSupport::Cache::Store#delete_multi.

    Adam Renberg Tamm

  • Print test names when running rails test -v for parallel tests.

    John Hawthorn, Abeid Ahmed

Active Model

  • Fix regression in alias_attribute to work with user defined methods.

    alias_attribute would wrongly assume the attribute accessor was generated by Active Model.

    class Person
      include ActiveModel::AttributeMethods
    define_attribute_methods :name
    attr_accessor :name
    alias_attribute :full_name, :name
    end
    person.full_name # => NoMethodError: undefined method `attribute' for an instance of Person

    Jean Boussier

Active Record

  • Fix support for query_cache: false in database.yml.

    query_cache: false would no longer entirely disable the Active Record query cache.

    zzak

  • Set .attributes_for_inspect to :all by default.

    For new applications it is set to [:id] in config/environment/production.rb.

    In the console all the attributes are always shown.

    Andrew Novoselac

... (truncated)

Changelog

Sourced from actionmailbox's changelog.

Rails 7.2.2 (October 30, 2024)

  • No changes.
Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 5f5349f Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 76fbcde Merge pull request #52988 from FrancescoK/fix-52896
  • See full diff in compare view

Updates actionmailer from 7.2.1.2 to 7.2.2

Release notes

Sourced from actionmailer's releases.

7.2.2

Active Support

  • Include options when instrumenting ActiveSupport::Cache::Store#delete and ActiveSupport::Cache::Store#delete_multi.

    Adam Renberg Tamm

  • Print test names when running rails test -v for parallel tests.

    John Hawthorn, Abeid Ahmed

Active Model

  • Fix regression in alias_attribute to work with user defined methods.

    alias_attribute would wrongly assume the attribute accessor was generated by Active Model.

    class Person
      include ActiveModel::AttributeMethods
    define_attribute_methods :name
    attr_accessor :name
    alias_attribute :full_name, :name
    end
    person.full_name # => NoMethodError: undefined method `attribute' for an instance of Person

    Jean Boussier

Active Record

  • Fix support for query_cache: false in database.yml.

    query_cache: false would no longer entirely disable the Active Record query cache.

    zzak

  • Set .attributes_for_inspect to :all by default.

    For new applications it is set to [:id] in config/environment/production.rb.

    In the console all the attributes are always shown.

    Andrew Novoselac

... (truncated)

Changelog

Sourced from actionmailer's changelog.

Rails 7.2.2 (October 30, 2024)

  • No changes.
Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • b4ebf86 Fix edge case where ActionMailer::MailHelper#block_format caused a
  • 05dabd7 Add author to the CHANGELOG entries
  • See full diff in compare view

Updates actionpack from 7.2.1.2 to 7.2.2

Release notes

Sourced from actionpack's releases.

7.2.2

Active Support

  • Include options when instrumenting ActiveSupport::Cache::Store#delete and ActiveSupport::Cache::Store#delete_multi.

    Adam Renberg Tamm

  • Print test names when running rails test -v for parallel tests.

    John Hawthorn, Abeid Ahmed

Active Model

  • Fix regression in alias_attribute to work with user defined methods.

    alias_attribute would wrongly assume the attribute accessor was generated by Active Model.

    class Person
      include ActiveModel::AttributeMethods
    define_attribute_methods :name
    attr_accessor :name
    alias_attribute :full_name, :name
    end
    person.full_name # => NoMethodError: undefined method `attribute' for an instance of Person

    Jean Boussier

Active Record

  • Fix support for query_cache: false in database.yml.

    query_cache: false would no longer entirely disable the Active Record query cache.

    zzak

  • Set .attributes_for_inspect to :all by default.

    For new applications it is set to [:id] in config/environment/production.rb.

    In the console all the attributes are always shown.

    Andrew Novoselac

... (truncated)

Changelog

Sourced from actionpack's changelog.

Rails 7.2.2 (October 30, 2024)

  • Fix non-GET requests not updating cookies in ActionController::TestCase.

    Jon Moss, Hartley McGuire

Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 05dabd7 Add author to the CHANGELOG entries
  • 5f5349f Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 566ccc9 Merge pull request #53222 from seanpdoyle/csp-docs-links
  • 6637543 Merge pull request #53202 from byroot/ruby-3.4-hash-inspect
  • 080edd5 Fix URI::DEFAULT_PARSER warnings
  • f7dbc3a Merge pull request #53131 from seanpdoyle/allow-browser-browser-blocker-private
  • 0c65e6e Merge pull request #53126 from chancancode/patch-1
  • 6010d90 Merge pull request #52348 from skipkayhil/hm-fix-ac-tc-cookies-again
  • Additional commits viewable in compare view

Updates actiontext from 7.2.1.2 to 7.2.2

Release notes

Sourced from actiontext's releases.

7.2.2

Active Support

  • Include options when instrumenting ActiveSupport::Cache::Store#delete and ActiveSupport::Cache::Store#delete_multi.

    Adam Renberg Tamm

  • Print test names when running rails test -v for parallel tests.

    John Hawthorn, Abeid Ahmed

Active Model

  • Fix regression in alias_attribute to work with user defined methods.

    alias_attribute would wrongly assume the attribute accessor was generated by Active Model.

    class Person
      include ActiveModel::AttributeMethods
    define_attribute_methods :name
    attr_accessor :name
    alias_attribute :full_name, :name
    end
    person.full_name # => NoMethodError: undefined method `attribute' for an instance of Person

    Jean Boussier

Active Record

  • Fix support for query_cache: false in database.yml.

    query_cache: false would no longer entirely disable the Active Record query cache.

    zzak

  • Set .attributes_for_inspect to :all by default.

    For new applications it is set to [:id] in config/environment/production.rb.

    In the console all the attributes are always shown.

    Andrew Novoselac

... (truncated)

Changelog

Sourced from actiontext's changelog.

Rails 7.2.2 (October 30, 2024)

  • No changes.
Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 05dabd7 Add author to the CHANGELOG entries
  • 5f5349f Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 76fbcde Merge pull request #52988 from FrancescoK/fix-52896
  • See full diff in compare view

Updates actionview from 7.2.1.2 to 7.2.2

Release notes

Sourced from actionview's releases.

7.2.2

Active Support

  • Include options when instrumenting ActiveSupport::Cache::Store#delete and ActiveSupport::Cache::Store#delete_multi.

    Adam Renberg Tamm

  • Print test names when running rails test -v for parallel tests.

    John Hawthorn, Abeid Ahmed

Active Model

  • Fix regression in alias_attribute to work with user defined methods.

    alias_attribute would wrongly assume the attribute accessor was generated by Active Model.

    class Person
      include ActiveModel::AttributeMethods
    define_attribute_methods :name
    attr_accessor :name
    alias_attribute :full_name, :name
    end
    person.full_name # => NoMethodError: undefined method `attribute' for an instance of Person

    Jean Boussier

Active Record

  • Fix support for query_cache: false in database.yml.

    query_cache: false would no longer entirely disable the Active Record query cache.

    zzak

  • Set .attributes_for_inspect to :all by default.

    For new applications it is set to [:id] in config/environment/production.rb.

    In the console all the attributes are always shown.

    Andrew Novoselac

... (truncated)

Changelog

Sourced from actionview's changelog.

Rails 7.2.2 (October 30, 2024)

  • No changes.
Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 4c45fc1 Fix invalid syntax in TextHelper#highlight API docs example [ci skip]
  • 5f5349f Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • c177aca Support Prism for ActionView::Template.spot
  • c82f864 Revert "Skip Action View error mapping tests on 3.4+"
  • ef42ffc Skip Action View error mapping tests on 3.4+
  • 6637543 Merge pull request #53202 from byroot/ruby-3.4-hash-inspect
  • 080edd5 Fix URI::DEFAULT_PARSER warnings
  • 5a735e9 Merge pull request #53049 from fatkodima/fix-link_to-with-symbol-rel
  • See full diff in compare view

Updates activejob from 7.2.1.2 to 7.2.2

Release notes

Sourced from activejob's releases.

7.2.2

Active Support

  • Include options when instrumenting ActiveSupport::Cache::Store#delete and ActiveSupport::Cache::Store#delete_multi.

    Adam Renberg Tamm

  • Print test names when running rails test -v for parallel tests.

    John Hawthorn, Abeid Ahmed

Active Model

  • Fix regression in alias_attribute to work with user defined methods.

    alias_attribute would wrongly assume the attribute accessor was generated by Active Model.

    class Person
      include ActiveModel::AttributeMethods
    define_attribute_methods :name
    attr_accessor :name
    alias_attribute :full_name, :name
    end
    person.full_name # => NoMethodError: undefined method `attribute' for an instance of Person

    Jean Boussier

Active Record

  • Fix support for query_cache: false in database.yml.

    query_cache: false would no longer entirely disable the Active Record query cache.

    zzak

  • Set .attributes_for_inspect to :all by default.

    For new applications it is set to [:id] in config/environment/production.rb.

    In the console all the attributes are always shown.

    Andrew Novoselac

... (truncated)

Changelog

Sourced from activejob's changelog.

Rails 7.2.2 (October 30, 2024)

  • No changes.
Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 5f5349f Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • e090d45 Merge pull request #53203 from byroot/ruby-3.4-active-job
  • 6637543 Merge pull request #53202 from byroot/ruby-3.4-hash-inspect
  • 3b816a7 Merge pull request #53160 from cbliard/fix_active_job_retry_stopped_log_level
  • See full diff in compare view

Updates activemodel from 7.2.1.2 to 7.2.2

Release notes

Sourced from activemodel's releases.

7.2.2

Active Support

  • Include options when instrumenting ActiveSupport::Cache::Store#delete and ActiveSupport::Cache::Store#delete_multi.

    Adam Renberg Tamm

  • Print test names when running rails test -v for parallel tests.

    John Hawthorn, Abeid Ahmed

Active Model

  • Fix regression in alias_attribute to work with user defined methods.

    alias_attribute would wrongly assume the attribute accessor was generated by Active Model.

    class Person
      include ActiveModel::AttributeMethods
    define_attribute_methods :name
    attr_accessor :name
    alias_attribute :full_name, :name
    end
    person.full_name # => NoMethodError: undefined method `attribute' for an instance of Person

    Jean Boussier

Active Record

  • Fix support for query_cache: false in database.yml.

    query_cache: false would no longer entirely disable the Active Record query cache.

    zzak

  • Set .attributes_for_inspect to :all by default.

    For new applications it is set to [:id] in config/environment/production.rb.

    In the console all the attributes are always shown.

    Andrew Novoselac

... (truncated)

Changelog

Sourced from activemodel's changelog.

Rails 7.2.2 (October 30, 2024)

  • Fix regression in alias_attribute to work with user defined methods.

    alias_attribute would wrongly assume the attribute accessor was generated by Active Model.

    class Person
      include ActiveModel::AttributeMethods
    define_attribute_methods :name
    attr_accessor :name
    alias_attribute :full_name, :name
    end
    person.full_name # => NoMethodError: undefined method `attribute' for an instance of Person

    Jean Boussier

Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 5f5349f Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • d0e9e01 Fix another Ruby 3.4 Hash#inspect failure
  • abe904d alias_attribute: handle user defined source methods
  • 9fb3c81 Revert "Merge pull request #52822 from byroot/active-model-alias"
  • 2cb3582 Add missing authorship in CHANGELOG
  • c0988ee Merge pull request #52822 from byroot/active-model-alias
  • See full diff in compare view

Updates activerecord from 7.2.1.2 to 7.2.2

Release notes

Sourced from activerecord's releases.

7.2.2

Active Support

  • Include options when instrumenting ActiveSupport::Cache::Store#delete and ActiveSupport::Cache::Store#delete_multi.

    Adam Renberg Tamm

  • Print test names when running rails test -v for parallel tests.

    John Hawthorn, Abeid Ahmed

Active Model

  • Fix regression in alias_attribute to work with user defined methods.

    alias_attribute would wrongly assume the attribute accessor was generated by Active Model.

    class Person
      include ActiveModel::AttributeMethods
    define_attribute_methods :name
    attr_accessor :name
    alias_attribute :full_name, :name
    end
    person.full_name # => NoMethodError: undefined method `attribute' for an instance of Person

    Jean Boussier

Active Record

  • Fix support for query_cache: false in database.yml.

    query_cache: false would no longer entirely disable the Active Record query cache.

    zzak

  • Set .attributes_for_inspect to :all by default.

    For new applications it is set to [:id] in config/environment/production.rb.

    In the console all the attributes are always shown.

    Andrew Novoselac

... (truncated)

Changelog

Sourced from activerecord's changelog.

Rails 7.2.2 (October 30, 2024)

  • Fix support for query_cache: false in database.yml.

    query_cache: false would no longer entirely disable the Active Record query cache.

    zzak

  • Set .attributes_for_inspect to :all by default.

    For new applications it is set to [:id] in config/environment/production.rb.

    In the console all the attributes are always shown.

    Andrew Novoselac

  • PG::UnableToSend: no connection to the server is now retryable as a connection-related exception

    Kazuma Watanabe

  • Fix marshalling of unsaved associated records in 7.1 format.

    The 7.1 format would only marshal associated records if the association was loaded. But associations that would only contain unsaved records would be skipped.

    Jean Boussier

  • Fix incorrect SQL query when passing an empty hash to ActiveRecord::Base.insert.

    David Stosik

  • Allow to save records with polymorphic join tables that have inverse_of specified.

    Markus Doits

  • Fix association scopes applying on the incorrect join when using a polymorphic has_many through:.

    Joshua Young

  • Fix dependent: :destroy for bi-directional has one through association.

    Fixes #50948.

    class Left < ActiveRecord::Base
      has_one :middle, dependent: :destroy
      has_one :right, through: :middle
    end

... (truncated)

Commits
  • d0dcb8f Preparing for 7.2.2 release
  • f6916e7 Merge pull request #53494 from zzak/re-53492
  • a7858b5 Merge pull request #53472 from p8/activerecord/improve-attributes-for-inspect...
  • e6a8acd Merge pull request #53475 from p8/activerecord/show-all-attributes-in-console
  • 91aac4a Merge pull request #53484 from zzak/query_cache-config-disable
  • e1cccdc Add CHANGELOG entry for 170e6c178b7358a87a7304bdf80273e0b153f6fd
  • 897b382 Merge pull request #53400 from wata727/translate_no_connection_to_not_establi...
  • c529251 Revert "Merge pull request #53398 from kamipo/fix_strict_loading_propagation"
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 500e2a9 Fix API doc for has_many [ci-skip]
  • Additional commits viewable in compare view

Updates activestorage from 7.2.1.2 to 7.2.2

Release notes

Sourced from activestorage's releases.

7.2.2

Active Support

  • Include options when instrumenting ActiveSupport::Cache::Store#delete and ActiveSupport::Cache::Store#delete_multi.

    Adam Renberg Tamm

  • Print test names when running rails test -v for parallel tests.

    John Hawthorn, Abeid Ahmed

Active Model

  • Fix regression in alias_attribute to work with user defined methods.

    alias_attribute would wrongly assume the attribute accessor was generated by Active Model.

    class Person
      include ActiveModel::AttributeMethods
    define_attribute_methods :name
    attr_accessor :name
    alias_attribute :full_name, :name
    end
    person.full_name # => NoMethodError: undefined method `attribute' for an instance of Person

    Jean Boussier

Active Record

  • Fix support for query_cache: false in database.yml.

    query_cache: false would no longer entirely disable the Active Record query cache.

    zzak

  • Set .attributes_for_inspect to :all by default.

    For new applications it is set to [:id] in config/environment/production.rb.

    In the console all the attributes are always shown.

    Andrew Novoselac

... (truncated)

Changelog

Sourced from activestorage's changelog.

Rails 7.2.2 (October 30, 2024)

  • No changes.
Commits

Updates activesupport from 7.2.1.2 to 7.2.2

Release notes

Sourced from activesupport's releases.

7.2.2

Active Support

  • Include options when instrumenting ActiveSupport::Cache::Store#delete and ActiveSupport::Cache::Store#delete_multi.

    Adam Renberg Tamm

  • Print test names when running rails test -v for parallel tests.

    John Hawthorn, Abeid Ahmed

Active Model

  • Fix regression in alias_attribute to work with user defined methods.

    alias_attribute would wrongly assume the attribute accessor was generated by Active Model.

    class Person
      include ActiveModel::AttributeMethods
    define_attribute_methods :name
    attr_accessor :name
    alias_attribute :full_name, :name
    end
    person.full_name # => NoMethodError: undefined method `attribute' for an instance of Person

    Jean Boussier

Active Record

  • Fix support for query_cache: false in database.yml.

    query_cache: false would no longer entirely disable the Active Record query cache.

    zzak

  • Set .attributes_for_inspect to :all by default.

    For new applications it is set to [:id] in config/environment/production.rb.

    In the console all the attributes are always shown.

    Andrew Novoselac

... (truncated)

Changelog

Sourced from activesupport's changelog.

Rails 7.2.2 (October 30, 2024)

  • Include options when instrumenting ActiveSupport::Cache::Store#delete and ActiveSupport::Cache::Store#delete_multi.

    Adam Renberg Tamm

  • Print test names when running rails test -v for parallel tests.

    John Hawthorn, Abeid Ahmed

Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 7dd2248 Avoid redefining IpAddr#as_json if it already exist
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 87fed5a Merge pull request #53376 from jeromedalbert/fix-api-docs-wrong-links
  • 812f3e7 Merge pull request #53367 from seanpdoyle/time-zone-api-docs-class-inference
  • 5f5349f Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 6637543 Merge pull request #53202 from byroot/ruby-3.4-hash-inspect
  • ac4dfd2 Merge pull request #52912 from tgwizard/as-cache-intstrument-delete-options
  • b4d424e Merge pull request #52917 from jhawthorn/prerecorded_option1
  • ed265be Do not populate CurrentAttributes#attributes when not using defaults
  • Additional commits viewable in compare view

Updates railties from 7.2.1.2 to 7.2.2

Release notes

Sourced from railties's releases.

7.2.2

Active Support

  • Include options when instrumenting ActiveSupport::Cache::Store#delete and ActiveSupport::Cache::Store#delete_multi.

    Adam Renberg Tamm

  • Print test names when running rails test -v for parallel tests.

    John Hawthorn, Abeid Ahmed

Active Model

  • Fix regression in alias_attribute to work with user defined methods.

    alias_attribute would wrongly assume the attribute accessor was generated by Active Model.

    class Person
      include ActiveModel::AttributeMethods
    define_attribute_methods :name
    attr_accessor :name
    alias_attribute :full_name, :name
    end
    person.full_name # => NoMethodError: undefined method `attribute' for an instance of Person

    Jean Boussier

Active Record

  • Fix support for query_cache: false in database.yml.

    query_cache: false would no longer entirely disable the Active Record query cache.

    zzak

  • Set .attributes_for_inspect to :all by default.

    For new applications it is set to [:id] in config/environment/production.rb.

    In the console all the attributes are always shown.

    Andrew Novoselac

... (truncated)

Changelog

Sourced from railties's changelog.

Rails 7.2.2 (October 30, 2024)

  • No changes.
Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 5f5349f Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 6637543 Merge pull request #53202 from byroot/ruby-3.4-hash-inspect
  • 080edd5 Fix URI::DEFAULT_PARSER warnings
  • 89ce9f6 Merge pull request #53150 from fatkodima/fix-query_logs-source_location
  • 6662c51 Merge pull request #52996 from pbhogan/console_reload_fix
  • 9a53f0c Address Layout/SpaceInsideArrayLiteralBrackets offense for Rails 7.2 and Ru...
  • 76fbcde Merge pull request #52988 from FrancescoK/fix-52896
  • ec73277 Merge pull request #52992 from excid3/fix-ci-railtie-test-command
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the rails group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [rails](https://github.com/rails/rails) | `7.2.1.2` | `7.2.2` |
| [actioncable](https://github.com/rails/rails) | `7.2.1.2` | `7.2.2` |
| [actionmailbox](https://github.com/rails/rails) | `7.2.1.2` | `7.2.2` |
| [actionmailer](https://github.com/rails/rails) | `7.2.1.2` | `7.2.2` |
| [actionpack](https://github.com/rails/rails) | `7.2.1.2` | `7.2.2` |
| [actiontext](https://github.com/rails/rails) | `7.2.1.2` | `7.2.2` |
| [actionview](https://github.com/rails/rails) | `7.2.1.2` | `7.2.2` |
| [activejob](https://github.com/rails/rails) | `7.2.1.2` | `7.2.2` |
| [activemodel](https://github.com/rails/rails) | `7.2.1.2` | `7.2.2` |
| [activerecord](https://github.com/rails/rails) | `7.2.1.2` | `7.2.2` |
| [activestorage](https://github.com/rails/rails) | `7.2.1.2` | `7.2.2` |
| [activesupport](https://github.com/rails/rails) | `7.2.1.2` | `7.2.2` |
| [railties](https://github.com/rails/rails) | `7.2.1.2` | `7.2.2` |


Updates `rails` from 7.2.1.2 to 7.2.2
- [Release notes](https://github.com/rails/rails/releases)
- [Commits](rails/rails@v7.2.1.2...v7.2.2)

Updates `actioncable` from 7.2.1.2 to 7.2.2
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.2/actioncable/CHANGELOG.md)
- [Commits](rails/rails@v7.2.1.2...v7.2.2)

Updates `actionmailbox` from 7.2.1.2 to 7.2.2
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.2/actionmailbox/CHANGELOG.md)
- [Commits](rails/rails@v7.2.1.2...v7.2.2)

Updates `actionmailer` from 7.2.1.2 to 7.2.2
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.2/actionmailer/CHANGELOG.md)
- [Commits](rails/rails@v7.2.1.2...v7.2.2)

Updates `actionpack` from 7.2.1.2 to 7.2.2
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.2/actionpack/CHANGELOG.md)
- [Commits](rails/rails@v7.2.1.2...v7.2.2)

Updates `actiontext` from 7.2.1.2 to 7.2.2
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.2/actiontext/CHANGELOG.md)
- [Commits](rails/rails@v7.2.1.2...v7.2.2)

Updates `actionview` from 7.2.1.2 to 7.2.2
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.2/actionview/CHANGELOG.md)
- [Commits](rails/rails@v7.2.1.2...v7.2.2)

Updates `activejob` from 7.2.1.2 to 7.2.2
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.2/activejob/CHANGELOG.md)
- [Commits](rails/rails@v7.2.1.2...v7.2.2)

Updates `activemodel` from 7.2.1.2 to 7.2.2
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.2/activemodel/CHANGELOG.md)
- [Commits](rails/rails@v7.2.1.2...v7.2.2)

Updates `activerecord` from 7.2.1.2 to 7.2.2
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.2/activerecord/CHANGELOG.md)
- [Commits](rails/rails@v7.2.1.2...v7.2.2)

Updates `activestorage` from 7.2.1.2 to 7.2.2
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.2/activestorage/CHANGELOG.md)
- [Commits](rails/rails@v7.2.1.2...v7.2.2)

Updates `activesupport` from 7.2.1.2 to 7.2.2
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.2/activesupport/CHANGELOG.md)
- [Commits](rails/rails@v7.2.1.2...v7.2.2)

Updates `railties` from 7.2.1.2 to 7.2.2
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.2/railties/CHANGELOG.md)
- [Commits](rails/rails@v7.2.1.2...v7.2.2)

---
updated-dependencies:
- dependency-name: rails
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rails
- dependency-name: actioncable
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rails
- dependency-name: actionmailbox
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rails
- dependency-name: actionmailer
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rails
- dependency-name: actionpack
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rails
- dependency-name: actiontext
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rails
- dependency-name: actionview
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rails
- dependency-name: activejob
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rails
- dependency-name: activemodel
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rails
- dependency-name: activerecord
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rails
- dependency-name: activestorage
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rails
- dependency-name: activesupport
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rails
- dependency-name: railties
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rails
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Oct 31, 2024
@ledermann-bot ledermann-bot enabled auto-merge (squash) October 31, 2024 03:59
@ledermann-bot ledermann-bot merged commit 13ecac6 into master Oct 31, 2024
3 checks passed
@ledermann-bot ledermann-bot deleted the dependabot/bundler/rails-76ef87fedb branch October 31, 2024 04:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant