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 bundler-all group across 1 directory with 22 updates #304

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 4, 2024

Bumps the bundler-all group with 8 updates in the / directory:

Package From To
chartkick 5.1.1 5.1.2
factory_bot_rails 6.4.3 6.4.4
pg 1.5.7 1.5.9
actioncable 7.1.4.1 7.1.5
aws-partitions 1.992.0 1.1001.0
date 3.3.4 3.4.0
execjs 2.9.1 2.10.0
rexml 3.3.8 3.3.9

Updates chartkick from 5.1.1 to 5.1.2

Changelog

Sourced from chartkick's changelog.

5.1.2 (2024-10-29)

  • Updated Chart.js to 4.4.6
Commits

Updates factory_bot_rails from 6.4.3 to 6.4.4

Release notes

Sourced from factory_bot_rails's releases.

6.4.4

What's Changed

New Contributors

Full Changelog: thoughtbot/factory_bot_rails@v6.4.3...v6.4.4

Changelog

Sourced from factory_bot_rails's changelog.

6.4.4 (October 25, 2024)

  • Changed: Bump Factory Bot 6.5.0
Commits

Updates pg from 1.5.7 to 1.5.9

Changelog

Sourced from pg's changelog.

v1.5.9 [2024-10-24] Lars Kanis lars@greiz-reinsdorf.de

  • Enable thread safety in static OpenSSL build for Windows. #595
  • Remove raising conect_timeout from 1 to 2 seconds. #590
  • Fix binary copy_data in Ractor context. #594
  • Exclude CI files and hidden files from built gem. #591 This is to simplify security inspection.
  • Update error classes to PostgreSQL-17.
  • Update Windows fat binary gem to OpenSSL-3.4.0 and PostgreSQL-17.0.

v1.5.8 [2024-09-06] Lars Kanis lars@greiz-reinsdorf.de

  • Fix host list duplication every time conn.reset is used. #586
  • Add default decoder for anonymous record types to BasicTypeRegistry #579
  • Update Windows fat binary gem to OpenSSL-3.3.2 and PostgreSQL-16.4.
Commits
  • afe2f20 Bump VERSION to 1.5.9
  • 9f8a6c6 Add History entry for pg-1.5.9
  • 342bdbb Merge pull request #599 from larskanis/update-postgres
  • ca8e69c Remove skip on Windows since the issue is fixed
  • 70c02ea Work around missing dependency to errorcodes.h in PostgreSQL-17.0
  • 4a52437 CI: Update jobs to postgresql-1.7.0
  • d8c3753 Update to postgresql-17.0 and openssl-3.4.0 for Windows binary gems
  • 86367c6 Update error codes by rake update_error_codes
  • 94f1d7f Merge pull request #598 from larskanis/osl-threads
  • 716221a Enable thread safety in static OpenSSL build
  • Additional commits viewable in compare view

Updates actioncable from 7.1.4.1 to 7.1.5

Release notes

Sourced from actioncable's releases.

7.1.5

Active Support

  • No changes.

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 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 an issue where .left_outer_joins used with multiple associations that have the same child association but different parents does not join all parents.

    Previously, using .left_outer_joins with the same child association would only join one of the parents.

    Now it will correctly join both parents.

    Fixes #41498.

    Garrett Blehm

  • Ensure ActiveRecord::Encryption.config is always ready before access.

... (truncated)

Commits
  • 625ec92 Preparing for 7.1.5 release
  • 3ddbd08 Merge remote-tracking branch 'origin/7-1-sec' into 7-1-stable
  • e52d670 Preparing for 7.1.4.2 release
  • d3ceb6c Merge remote-tracking branch 'origin/7-1-sec' into 7-1-stable
  • cce9ecb Merge pull request #53202 from byroot/ruby-3.4-hash-inspect
  • See full diff in compare view

Updates actionmailbox from 7.1.4.1 to 7.1.5

Release notes

Sourced from actionmailbox's releases.

7.1.5

Active Support

  • No changes.

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 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 an issue where .left_outer_joins used with multiple associations that have the same child association but different parents does not join all parents.

    Previously, using .left_outer_joins with the same child association would only join one of the parents.

    Now it will correctly join both parents.

    Fixes #41498.

    Garrett Blehm

  • Ensure ActiveRecord::Encryption.config is always ready before access.

... (truncated)

Commits

Updates actionmailer from 7.1.4.1 to 7.1.5

Release notes

Sourced from actionmailer's releases.

7.1.5

Active Support

  • No changes.

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 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 an issue where .left_outer_joins used with multiple associations that have the same child association but different parents does not join all parents.

    Previously, using .left_outer_joins with the same child association would only join one of the parents.

    Now it will correctly join both parents.

    Fixes #41498.

    Garrett Blehm

  • Ensure ActiveRecord::Encryption.config is always ready before access.

... (truncated)

Commits
  • 625ec92 Preparing for 7.1.5 release
  • 3ddbd08 Merge remote-tracking branch 'origin/7-1-sec' into 7-1-stable
  • e52d670 Preparing for 7.1.4.2 release
  • 75f0ae9 Fix NoMethodError in ActionMailer block_format
  • 7021f21 [ci skip] Fix CHANGELOG lint errors
  • See full diff in compare view

Updates actionpack from 7.1.4.1 to 7.1.5

Release notes

Sourced from actionpack's releases.

7.1.5

Active Support

  • No changes.

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 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 an issue where .left_outer_joins used with multiple associations that have the same child association but different parents does not join all parents.

    Previously, using .left_outer_joins with the same child association would only join one of the parents.

    Now it will correctly join both parents.

    Fixes #41498.

    Garrett Blehm

  • Ensure ActiveRecord::Encryption.config is always ready before access.

... (truncated)

Commits
  • 625ec92 Preparing for 7.1.5 release
  • 3ddbd08 Merge remote-tracking branch 'origin/7-1-sec' into 7-1-stable
  • e52d670 Preparing for 7.1.4.2 release
  • 7021f21 [ci skip] Fix CHANGELOG lint errors
  • d3ceb6c Merge remote-tracking branch 'origin/7-1-sec' into 7-1-stable
  • 7379f7c Backport Ruby 3.4 compatibility fixes for actionpack
  • cce9ecb Merge pull request #53202 from byroot/ruby-3.4-hash-inspect
  • 471eb56 [7.1] Fix URI::DEFAULT_PARSER warnings
  • cefd9e9 Merge pull request #52943 from yahonda/syntax_error_or_syntax_errors_found
  • 2cb18cc Merge pull request #51927 from collimarco/patch-1
  • Additional commits viewable in compare view

Updates actiontext from 7.1.4.1 to 7.1.5

Release notes

Sourced from actiontext's releases.

7.1.5

Active Support

  • No changes.

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 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 an issue where .left_outer_joins used with multiple associations that have the same child association but different parents does not join all parents.

    Previously, using .left_outer_joins with the same child association would only join one of the parents.

    Now it will correctly join both parents.

    Fixes #41498.

    Garrett Blehm

  • Ensure ActiveRecord::Encryption.config is always ready before access.

... (truncated)

Commits
  • 625ec92 Preparing for 7.1.5 release
  • 3ddbd08 Merge remote-tracking branch 'origin/7-1-sec' into 7-1-stable
  • e52d670 Preparing for 7.1.4.2 release
  • 7021f21 [ci skip] Fix CHANGELOG lint errors
  • See full diff in compare view

Updates actionview from 7.1.4.1 to 7.1.5

Release notes

Sourced from actionview's releases.

7.1.5

Active Support

  • No changes.

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 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 an issue where .left_outer_joins used with multiple associations that have the same child association but different parents does not join all parents.

    Previously, using .left_outer_joins with the same child association would only join one of the parents.

    Now it will correctly join both parents.

    Fixes #41498.

    Garrett Blehm

  • Ensure ActiveRecord::Encryption.config is always ready before access.

... (truncated)

Commits
  • 625ec92 Preparing for 7.1.5 release
  • 3ddbd08 Merge remote-tracking branch 'origin/7-1-sec' into 7-1-stable
  • e52d670 Preparing for 7.1.4.2 release
  • d3ceb6c Merge remote-tracking branch 'origin/7-1-sec' into 7-1-stable
  • f6ff364 Skip Action View error mapping tests on 3.4+
  • b31fcef Backport some more Ruby 3.4 compatibily fixes
  • 8b71353 Merge pull request #51597 from Shopify/ruby-head-fixes-2
  • cce9ecb Merge pull request #53202 from byroot/ruby-3.4-hash-inspect
  • 471eb56 [7.1] Fix URI::DEFAULT_PARSER warnings
  • a36c06d Merge pull request #53049 from fatkodima/fix-link_to-with-symbol-rel
  • See full diff in compare view

Updates activejob from 7.1.4.1 to 7.1.5

Release notes

Sourced from activejob's releases.

7.1.5

Active Support

  • No changes.

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 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 an issue where .left_outer_joins used with multiple associations that have the same child association but different parents does not join all parents.

    Previously, using .left_outer_joins with the same child association would only join one of the parents.

    Now it will correctly join both parents.

    Fixes #41498.

    Garrett Blehm

  • Ensure ActiveRecord::Encryption.config is always ready before access.

... (truncated)

Commits

Updates activemodel from 7.1.4.1 to 7.1.5

Release notes

Sourced from activemodel's releases.

7.1.5

Active Support

  • No changes.

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 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 an issue where .left_outer_joins used with multiple associations that have the same child association but different parents does not join all parents.

    Previously, using .left_outer_joins with the same child association would only join one of the parents.

    Now it will correctly join both parents.

    Fixes #41498.

    Garrett Blehm

  • Ensure ActiveRecord::Encryption.config is always ready before access.

... (truncated)

Commits
  • 625ec92 Preparing for 7.1.5 release
  • 3ddbd08 Merge remote-tracking branch 'origin/7-1-sec' into 7-1-stable
  • e52d670 Preparing for 7.1.4.2 release
  • d3ceb6c Merge remote-tracking branch 'origin/7-1-sec' into 7-1-stable
  • b31fcef Backport some more Ruby 3.4 compatibily fixes
  • a248fe4 Fix another Ruby 3.4 Hash#inspect failure
  • 5023fdf alias_attribute: handle user defined source methods
  • See full diff in compare view

Updates activerecord from 7.1.4.1 to 7.1.5

Release notes

Sourced from activerecord's releases.

7.1.5

Active Support

  • No changes.

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 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 an issue where .left_outer_joins used with multiple associations that have the same child association but different parents does not join all parents.

    Previously, using .left_outer_joins with the same child association would only join one of the parents.

    Now it will correctly join both parents.

    Fixes #41498.

    Garrett Blehm

  • Ensure ActiveRecord::Encryption.config is always ready before access.

... (truncated)

Commits
  • 8984f4c Revert "Merge pull request #53484 from zzak/query_cache-config-disable"
  • 30f7974 Revert "Merge pull request #53494 from zzak/re-53492"
  • 625ec92 Preparing for 7.1.5 release
  • d78c6e4 Merge pull request #53494 from zzak/re-53492
  • e60b786 Merge pull request #53484 from zzak/query_cache-config-disable
  • 3ddbd08 Merge remote-tracking branch 'origin/7-1-sec' into 7-1-stable
  • e52d670 Preparing for 7.1.4.2 release
  • 7021f21 [ci skip] Fix CHANGELOG lint errors
  • f6b283c Merge pull request #53360 from Shopify/ar-marshalling-7.1-unsaved-records
  • d3ceb6c Merge remote-tracking branch 'origin/7-1-sec' into 7-1-stable
  • Additional commits viewable in compare view

Updates activestorage from 7.1.4.1 to 7.1.5

Release notes

Sourced from activestorage's releases.

7.1.5

Active Support

  • No changes.

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 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 an issue where .left_outer_joins used with multiple associations that have the same child association but different parents does not join all parents.

    Previously, using .left_outer_joins with the same child association would only join one of the parents.

    Now it will correctly join both parents.

    Fixes #41498.

    Garrett Blehm

  • Ensure ActiveRecord::Encryption.config is always ready before access.

... (truncated)

Commits

Updates activesupport from 7.1.4.1 to 7.1.5

Release notes

Sourced from activesupport's releases.

7.1.5

Active Support

  • No changes.

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 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 an issue where .left_outer_joins used with multiple associations that have the same child association but different parents does not join all parents.

    Previously, using .left_outer_joins with the same child association would only join one of the parents.

    Now it will correctly join both parents.

    Fixes #41498.

    Garrett Blehm

  • Ensure ActiveRecord::Encryption.config is always ready before access.

... (truncated)

Commits
  • 625ec92 Preparing for 7.1.5 release
  • 252723d Avoid redefining IpAddr#as_json if it already exist
  • 3ddbd08 Merge remote-tracking branch 'origin/7-1-sec' into 7-1-stable
  • e52d670 Preparing for 7.1.4.2 release
  • d3ceb6c Merge remote-tracking branch 'origin/7-1-sec' into 7-1-stable
  • ed1cdb4 Small Ruby 3.4 fixes in the test suite
  • b31fcef Backport some more Ruby 3.4 compatibily fixes
  • 6473475 Ruby 3.4: add extracted standard gems to activesupport.gemspec
  • cce9ecb Merge pull request #53202 from byroot/ruby-3.4-hash-inspect
  • 96c224a Merge pull request #52868 from soulcutter/broadcast-logger-delegation
  • Additional commits viewable in compare view

Updates aws-partitions from 1.992.0 to 1.1001.0

Changelog

Sourced from aws-partitions's changelog.

1.1001.0 (2024-11-01)

  • Feature - Updated the partitions source data the determines the AWS service regions and endpoints.

1.1000.0 (2024-10-31)

  • Feature - Updated the partitions source data the determines the AWS service regions and endpoints.

1.999.0 (2024-10-30)

  • Feature - Added support for enumerating regions for Aws::GeoRoutes.

  • Feature - Added support for enumerating regions for Aws::GeoPlaces.

  • Feature - Added support for enumerating regions for Aws::GeoMaps.

1.998.0 (2024-10-29)

  • Feature - Updated the partitions source data the determines the AWS service regions and endpoints.

1.997.0 (2024-10-28)

  • Feature - Updated the partitions source data the determines the AWS service regions and endpoints.

1.996.0 (2024-10-25)

  • Feature - Updated the partitions source data the determines the AWS service regions and endpoints.

1.995.0 (2024-10-24)

  • Feature - Updated the partitions source data the determines the AWS service regions and endpoints.

1.994.0 (2024-10-23)

  • Feature - Updated the partitions source data the determines the AWS service regions and endpoints.

1.993.0 (2024-10-22)

  • Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
Commits

Updates date from 3.3.4 to 3.4.0

Release notes

Sourced from date's releases.

v3.4.0

What's Changed

New Contributors

Full Changelog: ruby/date@v3.3.4...v3.4.0

Commits
  • 94f8e51 Bump up v3.4.0
  • 0fef438 Enabled trusted publisher for rubygems.org
  • fb02417 Fix spelling
  • c2d9cc2 Update license files same as ruby/ruby
  • 106fa1a Ignore tmp directory
  • 47704d9 Resize arrays in rb_ary_freeze and use it for freezing arrays
  • ef5a0da Update zonetab.h at 2024-06-26
  • cfbd6a6 Use locale insensitive casecmp
  • 5974ac9 Use strncasecmp
  • 5d67437 Use gperf 3.1 to generate ANSI-C code
  • Additional commits viewable in compare view

Updates execjs from 2.9.1 to 2.10.0

Commits
  • 06feba5 Release 2.10.0
  • 86cb852 Merge pull request #143 from noesya/master
  • 7594b6b autodetect runtime for tests
  • 3ecf768 prevent runtime autodetect on require
  • ea4731d Merge pull request #135 from reesericci/patch-1
  • 3ab72a6 refactor and add test case
  • 45043f1 Merge pull request #141 from mattmenefee/update-coffeescript-link
  • 4dd71a2 Update link to CoffeeScript source in README.md
  • e630a1f Merge pull request #140 from m-nakamura145/update-actions-checkout
  • 46f7342 Bump actions/checkout
  • Additional commits viewable in compare view

Updates loofah from 2.22.0 to 2.23.1

Release notes

Sourced from loofah's releases.

2.23.1 / 2024-10-25

Added

Full Changelog: flavorjones/loofah@v2.23.0...v2.23.1

2.23.0 / 2024-10-24

Added

New Contributors

Full Changelog: flavorjones/loofah@v2.22.0...v2.23.0

Changelog

Sourced from loofah's changelog.

2.23.1 / 2024-10-25

Added

2.23.0 / 2024-10-24

Added

Commits
  • 3c09a93 version bump to v2.23.1
  • cc8a9f5 Merge pull request #288 from lazyatom/add-min-height-and-max-height-to-safelist
  • 6c70219 Allow CSS properties: min-height, max-height
  • 5ac17a8 version bump to v2.23.0
  • 07f6205 Merge pull request #287 from lazyatom/allow-css-min-width
  • 9f9b0b6 Allow CSS property: min-width
  • 31b90f2 Merge pull request #286 from flavorjones/flavorjones-fix-rubocop
  • 5ffc7bf style(rubocop): Gemspec/AddRuntimeDependency
  • 9bf0727 dep(dev): pin rubocop
  • beb82b8 Merge pull request #281 from m-nakamura145/update-checkout-action
  • Additional commits viewable in compare view

Updates nio4r from 2.7.3 to 2.7.4

Commits

Updates rackup from 2.1.0 to 2.2.0

Changelog

Sourced from rackup's changelog.

v2.2.0

  • Remove old rack shims.
  • Remove webrick dependency.
Commits

Updates railties from 7.1.4.1 to 7.1.5

Release notes

Sourced from railties's releases.

7.1.5

Active Support

  • No changes.

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 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 an issue where .left_outer_joins used with multiple associations that have the same child association but different parents does not join all parents.

    Previously, using .left_outer_joins with the same child association would only join one of the parents.

    Now it will correctly join both parents.

    Fixes #41498.

    Garrett Blehm

  • Ensure ActiveRecord::Encryption.config is always ready before access.

... (truncated)

Commits
  • 625ec92 Preparing for 7.1.5 release
  • 3ddbd08 Merge remote-tracking branch 'origin/7-1-sec' into 7-1-stable
  • e52d670 Preparing for 7.1.4.2 release
  • d3ceb6c Merge remote-tracking branch 'origin/7-1-sec' into 7-1-stable
  • b31fcef Backport some more Ruby 3.4 compatibily fixes
  • cce9ecb Merge pull request #53202 from byroot/ruby-3.4-hash-inspect
  • 471eb56 [7.1] Fix URI::DEFAULT_PARSER warnings
  • 429040a Merge pull request #51873 from yawboakye/railtie-use-class-from-gem

Bumps the bundler-all group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [chartkick](https://github.com/ankane/chartkick) | `5.1.1` | `5.1.2` |
| [factory_bot_rails](https://github.com/thoughtbot/factory_bot_rails) | `6.4.3` | `6.4.4` |
| [pg](https://github.com/ged/ruby-pg) | `1.5.7` | `1.5.9` |
| [actioncable](https://github.com/rails/rails) | `7.1.4.1` | `7.1.5` |
| [aws-partitions](https://github.com/aws/aws-sdk-ruby) | `1.992.0` | `1.1001.0` |
| [date](https://github.com/ruby/date) | `3.3.4` | `3.4.0` |
| [execjs](https://github.com/rails/execjs) | `2.9.1` | `2.10.0` |
| [rexml](https://github.com/ruby/rexml) | `3.3.8` | `3.3.9` |



Updates `chartkick` from 5.1.1 to 5.1.2
- [Changelog](https://github.com/ankane/chartkick/blob/master/CHANGELOG.md)
- [Commits](ankane/chartkick@v5.1.1...v5.1.2)

Updates `factory_bot_rails` from 6.4.3 to 6.4.4
- [Release notes](https://github.com/thoughtbot/factory_bot_rails/releases)
- [Changelog](https://github.com/thoughtbot/factory_bot_rails/blob/main/NEWS.md)
- [Commits](thoughtbot/factory_bot_rails@v6.4.3...v6.4.4)

Updates `pg` from 1.5.7 to 1.5.9
- [Changelog](https://github.com/ged/ruby-pg/blob/master/History.md)
- [Commits](ged/ruby-pg@v1.5.7...v1.5.9)

Updates `actioncable` from 7.1.4.1 to 7.1.5
- [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.1.4.1...v7.1.5)

Updates `actionmailbox` from 7.1.4.1 to 7.1.5
- [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.1.4.1...v7.1.5)

Updates `actionmailer` from 7.1.4.1 to 7.1.5
- [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.1.4.1...v7.1.5)

Updates `actionpack` from 7.1.4.1 to 7.1.5
- [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.1.4.1...v7.1.5)

Updates `actiontext` from 7.1.4.1 to 7.1.5
- [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.1.4.1...v7.1.5)

Updates `actionview` from 7.1.4.1 to 7.1.5
- [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.1.4.1...v7.1.5)

Updates `activejob` from 7.1.4.1 to 7.1.5
- [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.1.4.1...v7.1.5)

Updates `activemodel` from 7.1.4.1 to 7.1.5
- [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.1.4.1...v7.1.5)

Updates `activerecord` from 7.1.4.1 to 7.1.5
- [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.1.4.1...v7.1.5)

Updates `activestorage` from 7.1.4.1 to 7.1.5
- [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.1.4.1...v7.1.5)

Updates `activesupport` from 7.1.4.1 to 7.1.5
- [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.1.4.1...v7.1.5)

Updates `aws-partitions` from 1.992.0 to 1.1001.0
- [Release notes](https://github.com/aws/aws-sdk-ruby/releases)
- [Changelog](https://github.com/aws/aws-sdk-ruby/blob/version-3/gems/aws-partitions/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-ruby/commits)

Updates `date` from 3.3.4 to 3.4.0
- [Release notes](https://github.com/ruby/date/releases)
- [Commits](ruby/date@v3.3.4...v3.4.0)

Updates `execjs` from 2.9.1 to 2.10.0
- [Release notes](https://github.com/rails/execjs/releases)
- [Commits](rails/execjs@v2.9.1...v2.10.0)

Updates `loofah` from 2.22.0 to 2.23.1
- [Release notes](https://github.com/flavorjones/loofah/releases)
- [Changelog](https://github.com/flavorjones/loofah/blob/main/CHANGELOG.md)
- [Commits](flavorjones/loofah@v2.22.0...v2.23.1)

Updates `nio4r` from 2.7.3 to 2.7.4
- [Release notes](https://github.com/socketry/nio4r/releases)
- [Changelog](https://github.com/socketry/nio4r/blob/main/changes.md)
- [Commits](socketry/nio4r@v2.7.3...v2.7.4)

Updates `rackup` from 2.1.0 to 2.2.0
- [Release notes](https://github.com/rack/rackup/releases)
- [Changelog](https://github.com/rack/rackup/blob/main/releases.md)
- [Commits](rack/rackup@v2.1.0...v2.2.0)

Updates `railties` from 7.1.4.1 to 7.1.5
- [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.1.4.1...v7.1.5)

Updates `rexml` from 3.3.8 to 3.3.9
- [Release notes](https://github.com/ruby/rexml/releases)
- [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md)
- [Commits](ruby/rexml@v3.3.8...v3.3.9)

---
updated-dependencies:
- dependency-name: chartkick
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: factory_bot_rails
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: pg
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: actioncable
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: actionmailbox
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: actionmailer
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: actionpack
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: actiontext
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: actionview
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: activejob
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: activemodel
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: activerecord
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: activestorage
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: activesupport
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: aws-partitions
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: date
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: execjs
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: loofah
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: nio4r
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: rackup
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: railties
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: rexml
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Nov 4, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 11, 2024

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

@dependabot dependabot bot closed this Nov 11, 2024
@dependabot dependabot bot deleted the dependabot/bundler/bundler-all-61d33f00c3 branch November 11, 2024 17:22
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.

0 participants