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-gems group across 1 directory with 12 updates #4708

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the rails-gems group with 1 update in the / directory: rails.

Updates rails from 7.0.8.6 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.0.8.6 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.

Rails 7.2.1.2 (October 23, 2024)

  • No changes.

Rails 7.2.1.1 (October 15, 2024)

  • No changes.

Rails 7.2.1 (August 22, 2024)

  • No changes.

Rails 7.2.0 (August 09, 2024)

  • Bring ActionCable::Connection::TestCookieJar in alignment with ActionDispatch::Cookies::CookieJar in regards to setting the cookie value.

    Before:

    cookies[:foo] = { value: "bar" }
    puts cookies[:foo] # => { value: "bar" }

    After:

    cookies[:foo] = { value: "bar" }
    puts cookies[:foo] # => "bar"

    Justin Ko

  • Record ping on every Action Cable message.

    Previously only ping and welcome message types were keeping the connection active. Now every Action Cable message updates the pingedAt value, preventing the connection from being marked as stale.

    yauhenininjia

  • Add two new assertion methods for Action Cable test cases: assert_has_no_stream and assert_has_no_stream_for.

... (truncated)

Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 7750d64 Preparing for 7.2.1.2 release
  • 5f5349f Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • a1f6a13 Preparing for 7.2.1.1 release
  • d7ab27b Merge pull request #52962 from rails/rm-releser
  • 6637543 Merge pull request #53202 from byroot/ruby-3.4-hash-inspect
  • a11f0a6 Preparing for 7.2.1 release
  • fb6c430 Preparing for 7.2.0 release
  • 41d50f4 Preparing for 7.2.0.rc1 release
  • Additional commits viewable in compare view

Updates actionmailbox from 7.0.8.6 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.

Rails 7.2.1.2 (October 23, 2024)

  • No changes.

Rails 7.2.1.1 (October 15, 2024)

  • No changes.

Rails 7.2.1 (August 22, 2024)

  • No changes.

Rails 7.2.0 (August 09, 2024)

  • Fix all Action Mailbox database related models to respect ActiveRecord::Base.table_name_prefix configuration.

    Chedli Bourguiba

Please check 7-1-stable for previous changes.

Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 7750d64 Preparing for 7.2.1.2 release
  • 5f5349f Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • a1f6a13 Preparing for 7.2.1.1 release
  • d7ab27b Merge pull request #52962 from rails/rm-releser
  • 76fbcde Merge pull request #52988 from FrancescoK/fix-52896
  • a11f0a6 Preparing for 7.2.1 release
  • 90d9e12 Merge pull request #52138 from skipkayhil/hm-rack-input-is-optional
  • fb6c430 Preparing for 7.2.0 release
  • Additional commits viewable in compare view

Updates actionmailer from 7.0.8.6 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.

Rails 7.2.1.2 (October 23, 2024)

  • Fix NoMethodError in block_format helper

    Michael Leimstaedtner

Rails 7.2.1.1 (October 15, 2024)

  • Avoid regex backtracking in block_format helper

    [CVE-2024-47889]

    John Hawthorn

Rails 7.2.1 (August 22, 2024)

  • No changes.

Rails 7.2.0 (August 09, 2024)

  • Remove deprecated params via :args for assert_enqueued_email_with.

    Rafael Mendonça França

  • Remove deprecated config.action_mailer.preview_path.

    Rafael Mendonça França

Please check 7-1-stable for previous changes.

Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 7750d64 Preparing for 7.2.1.2 release
  • 7ffd7bd Fix NoMethodError in ActionMailer block_format
  • b4ebf86 Fix edge case where ActionMailer::MailHelper#block_format caused a
  • 05dabd7 Add author to the CHANGELOG entries
  • a1f6a13 Preparing for 7.2.1.1 release
  • de33c73 Update CHANGELOGs
  • be898cc Avoid backtracking in ActionMailer block_format
  • d7ab27b Merge pull request #52962 from rails/rm-releser
  • Additional commits viewable in compare view

Updates actionpack from 7.0.8.6 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

Rails 7.2.1.2 (October 23, 2024)

  • No changes.

Rails 7.2.1.1 (October 15, 2024)

  • Avoid regex backtracking in HTTP Token authentication

    [CVE-2024-47887]

    John Hawthorn

  • Avoid regex backtracking in query parameter filtering

    [CVE-2024-41128]

    John Hawthorn

Rails 7.2.1 (August 22, 2024)

  • Fix Request#raw_post raising NoMethodError when rack.input is nil.

    Hartley McGuire

Rails 7.2.0 (August 09, 2024)

  • Allow bots to ignore allow_browser.

    Matthew Nguyen

  • Include the HTTP Permissions-Policy on non-HTML Content-Types [CVE-2024-28103]

    Aaron Patterson, Zack Deveau

  • Fix Mime::Type.parse handling type parameters for HTTP Accept headers.

    Taylor Chaparro

  • Fix the error page that is displayed when a view template is missing to account for nested controller paths in the

... (truncated)

Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 7750d64 Preparing for 7.2.1.2 release
  • 05dabd7 Add author to the CHANGELOG entries
  • 5f5349f Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • a1f6a13 Preparing for 7.2.1.1 release
  • de33c73 Update CHANGELOGs
  • 27121e8 Avoid backtracking in filtered_query_string
  • f4dc83d Avoid backtracking in Token#raw_params
  • d7ab27b Merge pull request #52962 from rails/rm-releser
  • Additional commits viewable in compare view

Updates actiontext from 7.0.8.6 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.

Rails 7.2.1.2 (October 23, 2024)

  • No changes.

Rails 7.2.1.1 (October 15, 2024)

  • Avoid backtracing in plain_text_for_blockquote_node

    [CVE-2024-47888]

    John Hawthorn

Rails 7.2.1 (August 22, 2024)

  • Strip content attribute if the key is present but the value is empty

    Jeremy Green

Rails 7.2.0 (August 09, 2024)

  • Only sanitize content attribute when present in attachments.

    Petrik de Heus

  • Sanitize ActionText HTML ContentAttachment in Trix edit view [CVE-2024-32464]

    Aaron Patterson, Zack Deveau

  • Use includes instead of eager_load for with_all_rich_text.

    Petrik de Heus

  • Delegate ActionText::Content#deconstruct to Nokogiri::XML::DocumentFragment#elements.

    content = ActionText::Content.new <<~HTML
      <h1>Hello, world</h1>
    <div>The body</div>
    HTML
    content => [h1, div]

... (truncated)

Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 7750d64 Preparing for 7.2.1.2 release
  • 05dabd7 Add author to the CHANGELOG entries
  • 5f5349f Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • a1f6a13 Preparing for 7.2.1.1 release
  • de33c73 Update CHANGELOGs
  • ba286c0 Avoid backtracing in plain_text_for_blockquote_node
  • d7ab27b Merge pull request #52962 from rails/rm-releser
  • 76fbcde Merge pull request #52988 from FrancescoK/fix-52896
  • Additional commits viewable in compare view

Updates actionview from 7.0.8.6 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.

Rails 7.2.1.2 (October 23, 2024)

  • No changes.

Rails 7.2.1.1 (October 15, 2024)

  • No changes.

Rails 7.2.1 (August 22, 2024)

  • No changes.

Rails 7.2.0 (August 09, 2024)

  • Fix templates with strict locals to also include local_assigns.

    Previously templates defining strict locals wouldn't receive the local_assigns hash.

    Jean Boussier

  • Add queries count to template rendering instrumentation.

    # Before
    Completed 200 OK in 3804ms (Views: 41.0ms | ActiveRecord: 33.5ms | Allocations: 112788)
    

    After

    Completed 200 OK in 3804ms (Views: 41.0ms | ActiveRecord: 33.5ms (2 queries, 1 cached) | Allocations: 112788)

    fatkodima

  • Raise ArgumentError if :renderable object does not respond to #render_in.

    Sean Doyle

  • Add the nonce: true option for stylesheet_link_tag helper to support automatic nonce generation for Content Security Policy.

    Works the same way as javascript_include_tag nonce: true does.

    Akhil G Krishnan, AJ Esler

... (truncated)

Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 7750d64 Preparing for 7.2.1.2 release
  • 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
  • a1f6a13 Preparing for 7.2.1.1 release
  • d7ab27b Merge pull request #52962 from rails/rm-releser
  • 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+
  • Additional commits viewable in compare view

Updates activejob from 7.0.8.6 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.

Rails 7.2.1.2 (October 23, 2024)

  • No changes.

Rails 7.2.1.1 (October 15, 2024)

  • No changes.

Rails 7.2.1 (August 22, 2024)

  • No changes.

Rails 7.2.0 (August 09, 2024)

  • All tests now respect the active_job.queue_adapter config.

    Previously if you had set config.active_job.queue_adapter in your config/application.rb or config/environments/test.rb file, the adapter you selected was previously not used consistently across all tests. In some tests your adapter would be used, but other tests would use the TestAdapter.

    In Rails 7.2, all tests will respect the queue_adapter config if provided. If no config is provided, the TestAdapter will continue to be used.

    See #48585 for more details.

    Alex Ghiculescu

  • Make Active Job transaction aware when used conjointly with Active Record.

    A common mistake with Active Job is to enqueue jobs from inside a transaction, causing them to potentially be picked and ran by another process, before the transaction is committed, which may result in various errors.

    Topic.transaction do
      topic = Topic.create(...)
      NewTopicNotificationJob.perform_later(topic)
    end

    Now Active Job will automatically defer the enqueuing to after the transaction is committed, and drop the job if the transaction is rolled back.

... (truncated)

Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 7750d64 Preparing for 7.2.1.2 release
  • 5f5349f Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • a1f6a13 Preparing for 7.2.1.1 release
  • d7ab27b Merge pull request #52962 from rails/rm-releser
  • 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
  • a11f0a6 Preparing for 7.2.1 release
  • Additional commits viewable in compare view

Updates activemodel from 7.0.8.6 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

Rails 7.2.1.2 (October 23, 2024)

  • No changes.

Rails 7.2.1.1 (October 15, 2024)

  • No changes.

Rails 7.2.1 (August 22, 2024)

  • No changes.

Rails 7.2.0 (August 09, 2024)

  • Fix a bug where type casting of string to Time and DateTime doesn't calculate minus minute value in TZ offset correctly.

    Akira Matsuda

  • Port the type_for_attribute method to Active Model. Classes that include ActiveModel::Attributes will now provide this method. This method behaves the same for Active Model as it does for Active Record.

    class MyModel

... (truncated)

Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 7750d64 Preparing for 7.2.1.2 release
  • 5f5349f Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • a1f6a13 Preparing for 7.2.1.1 release
  • d7ab27b Merge pull request #52962 from rails/rm-releser
  • 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
  • Additional commits viewable in compare view

Updates activerecord from 7.0.8.6 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
  • 7750d64 Preparing for 7.2.1.2 release
  • Additional commits viewable in compare view

Updates activestorage from 7.0.8.6 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.

Rails 7.2.1.2 (October 23, 2024)

  • No changes.

Rails 7.2.1.1 (October 15, 2024)

  • No changes.

Rails 7.2.1 (August 22, 2024)

  • No changes.

Rails 7.2.0 (August 09, 2024)

  • Remove deprecated config.active_storage.silence_invalid_content_types_warning.

    Rafael Mendonça França

  • Remove deprecated config.active_storage.replace_on_assign_to_many.

    Rafael Mendonça França

  • Add support for custom key in ActiveStorage::Blob#compose.

    Elvin Efendiev

  • Add image/webp to config.active_storage.web_image_content_types when load_defaults "7.2" is set.

    Lewis Buckley

  • Fix JSON-encoding of ActiveStorage::Filename instances.

    Jonathan del Strother

  • Fix N+1 query when fetching preview images for non-image assets.

    Aaron Patterson & Justin Searls

  • Fix all Active Storage database related models to respect ActiveRecord::Base.table_name_prefix configuration.

... (truncated)

Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 7750d64 Preparing for 7.2.1.2 release
  • a1f6a13 Preparing for 7.2.1.1 release
  • d7ab27b Merge pull request #52962 from rails/rm-releser
  • a11f0a6 Preparing for 7.2.1 release
  • ab37a3a Merge pull request #52376 from sato11/active-storage-deprecated-config
  • fb6c430 Preparing for 7.2.0 release
  • 41d50f4 Preparing for 7.2.0.rc1 release
  • 9b63450 Preparing for 7.2.0.beta3 release
  • b752c38 Preparing for 7.2.0.beta2 release
  • Additional commits viewable in compare view

Updates railties from 7.0.8.6 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.

Rails 7.2.1.2 (October 23, 2024)

  • No changes.

Rails 7.2.1.1 (October 15, 2024)

  • No changes.

Rails 7.2.1 (August 22, 2024)

  • Fix rails console for application with non default application constant.

    The wrongly assumed the Rails application would be named AppNamespace::Application, which is the default but not an obligation.

    Jean Boussier

  • Fix the default Dockerfile to include the full sqlite3 package.

    Prior to this it only included libsqlite3, so it wasn't enough to run rails dbconsole.

    Jerome Dalbert

  • Don't update public directory during app:update command for API-only Applications.

    y-yagi

  • Don't add bin/brakeman if brakeman is not in bundle when upgrading an application.

    Etienne Barrié

  • Remove PWA views and routes if its an API only project.

    Jean Boussier

  • Simplify generated Puma configuration

    DHH, Rafael Mendonça França

Rails 7.2.0 (August 09, 2024)

... (truncated)

Commits
  • d0dcb8f Preparing for 7.2.2 release
  • 2975a88 Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • 7750d64 Preparing for 7.2.1.2 release
  • 5f5349f Merge remote-tracking branch 'origin/7-2-sec' into 7-2-stable
  • a1f6a13 Preparing for 7.2.1.1 release
  • d7ab27b Merge pull request #52962 from rails/rm-releser
  • 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
  • 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 <depe...

Description has been truncated

@dependabot dependabot bot added dependencies ruby Pull requests that update Ruby code labels Oct 31, 2024
@dependabot dependabot bot force-pushed the dependabot/bundler/rails-gems-eeec7d4158 branch 5 times, most recently from 7214b0c to 5fb645f Compare November 7, 2024 05:19
Bumps the rails-gems group with 1 update in the / directory: [rails](https://github.com/rails/rails).


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

Updates `actioncable` from 7.0.8.6 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.0.8.6...v7.2.2)

Updates `actionmailbox` from 7.0.8.6 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.0.8.6...v7.2.2)

Updates `actionmailer` from 7.0.8.6 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.0.8.6...v7.2.2)

Updates `actionpack` from 7.0.8.6 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.0.8.6...v7.2.2)

Updates `actiontext` from 7.0.8.6 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.0.8.6...v7.2.2)

Updates `actionview` from 7.0.8.6 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.0.8.6...v7.2.2)

Updates `activejob` from 7.0.8.6 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.0.8.6...v7.2.2)

Updates `activemodel` from 7.0.8.6 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.0.8.6...v7.2.2)

Updates `activerecord` from 7.0.8.6 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.0.8.6...v7.2.2)

Updates `activestorage` from 7.0.8.6 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.0.8.6...v7.2.2)

Updates `railties` from 7.0.8.6 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.0.8.6...v7.2.2)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/bundler/rails-gems-eeec7d4158 branch from 5fb645f to 61c89d7 Compare November 7, 2024 13:39
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 8, 2024

Looks like these dependencies are no longer updatable, so this is no longer needed.

@dependabot dependabot bot closed this Nov 8, 2024
@dependabot dependabot bot deleted the dependabot/bundler/rails-gems-eeec7d4158 branch November 8, 2024 05:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies ruby Pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants