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

[bundler] Bump the monthly group across 1 directory with 7 updates #62

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 25, 2024

Bumps the monthly group with 3 updates in the / directory: activerecord, minitest and sqlite3.

Updates activerecord from 7.1.3.4 to 7.2.1

Release notes

Sourced from activerecord's releases.

7.2.1

Active Support

  • No changes.

Active Model

  • No changes.

Active Record

  • Fix detection for enum columns with parallelized tests and PostgreSQL.

    Rafael Mendonça França

  • Allow to eager load nested nil associations.

    fatkodima

  • Fix swallowing ignore order warning when batching using BatchEnumerator.

    fatkodima

  • Fix memory bloat on the connection pool when using the Fiber IsolatedExecutionState.

    Jean Boussier

  • Restore inferred association class with the same modularized name.

    Justin Ko

  • Fix ActiveRecord::Base.inspect to properly explain how to load schema information.

    Jean Boussier

  • Check invalid enum options for the new syntax.

    The options using _ prefix in the old syntax are invalid in the new syntax.

    Rafael Mendonça França

  • Fix ActiveRecord::Encryption::EncryptedAttributeType#type to return actual cast type.

    Vasiliy Ermolovich

... (truncated)

Changelog

Sourced from activerecord's changelog.

Rails 7.2.1 (August 22, 2024)

  • Fix detection for enum columns with parallelized tests and PostgreSQL.

    Rafael Mendonça França

  • Allow to eager load nested nil associations.

    fatkodima

  • Fix swallowing ignore order warning when batching using BatchEnumerator.

    fatkodima

  • Fix memory bloat on the connection pool when using the Fiber IsolatedExecutionState.

    Jean Boussier

  • Restore inferred association class with the same modularized name.

    Justin Ko

  • Fix ActiveRecord::Base.inspect to properly explain how to load schema information.

    Jean Boussier

  • Check invalid enum options for the new syntax.

    The options using _ prefix in the old syntax are invalid in the new syntax.

    Rafael Mendonça França

  • Fix ActiveRecord::Encryption::EncryptedAttributeType#type to return actual cast type.

    Vasiliy Ermolovich

  • Fix create_table with :auto_increment option for MySQL adapter.

    fatkodima

Rails 7.2.0 (August 09, 2024)

  • Handle commas in Sqlite3 default function definitions.

    Stephen Margheim

  • Fixes validates_associated raising an exception when configured with a singular association and having index_nested_attribute_errors enabled.

... (truncated)

Commits
  • a11f0a6 Preparing for 7.2.1 release
  • 8b40780 Sync changelog
  • cd1b3db Revert "Merge pull request #49769 from jonathanhefner/active_record-enum-non-...
  • 1f3e35d Merge pull request #52634 from Shopify/uk-fix-method-added
  • 3802675 Merge pull request #52633 from neilvcarvalho/nc-ar-encryption-docs
  • 961ab4e Merge pull request #52632 from byroot/3.2-connection-lease-registry
  • 92e6d0d Merge pull request #52619 from fatkodima/eager-load-nil-associations
  • 190764a Merge pull request #52378 from fatkodima/fix-batches-error_on_ignore
  • e11657d Hold query caches in a WeakKeyMap
  • 0505b34 Don't hold on connection pools from the query cache
  • Additional commits viewable in compare view

Updates minitest from 5.24.1 to 5.25.1

Changelog

Sourced from minitest's changelog.

=== 5.25.1 / 2024-08-16

  • 2 bug fixes:

    • Fix incompatibility caused by minitest-hooks & rails invading minitest internals.
    • Revert change from =~ to match? to allow for nil if $TERM undefined.

=== 5.25.0 / 2024-08-13

  • 2 minor enhancements:

    • Fixed some inefficiencies filtering and matching (mostly backtraces).
    • Refactored siginfo handler to reduce runtime costs. Saved ~30%!
  • 5 bug fixes:

    • Added missing rdoc to get back to 100% coverage.
    • Cleaning up ancient code checking for defined?(Encoding) and the like.
    • Disambiguated some shadowed variables in minitest/compress.
    • Fixed an ironic bug if using string-literals AND Werror.
    • Improve description of test:slow task. (stomar)
Commits
  • 6d83843 prepped for release
  • 0ccdc80 - Fix incompatibility caused by minitest-hooks & rails invading minitest inte...
  • 9e7c58d - Revert change from =~ to match? to allow for nil if $TERM undefined.
  • 393e334 prepped for release
  • 8cd3b1c + Refactored siginfo handler to reduce runtime costs. Saved ~30%!
  • bd96499 normalized all actual/expected var names for assert_equal tests
  • 4fe69b1 Accept colon style Hash#inspect in test. (tompng)
  • 296269c - Improve description of test:slow task. (stomar)
  • 1156b6c - Cleaning up ancient code checking for defined?(Encoding) and the like.
  • 2bd62c5 Minor fix to make deprecation tests pass when using rake testW0
  • Additional commits viewable in compare view

Updates sqlite3 from 1.7.3 to 2.1.0

Release notes

Sourced from sqlite3's releases.

2.1.0 / 2024-09-24

Ruby

Fork safety improvements

Sqlite itself is not fork-safe. Specifically, writing in a child process to a database connection that was created in the parent process may corrupt the database file. To mitigate this risk, sqlite3-ruby has implemented the following changes:

  • All open writable database connections carried across a fork() will immediately be closed in the child process to mitigate the risk of corrupting the database file.
  • These connections will be incompletely closed ("discarded") which will result in a one-time memory leak in the child process.

If it's at all possible, we strongly recommend that you close writable database connections in the parent before forking. If absolutely necessary (and you know what you're doing), you may suppress the fork safety warnings by calling SQLite3::ForkSafety.suppress_warnings!.

See the README's "Fork Safety" section and adr/2024-09-fork-safety.md for more information. [#558, #565, #566] @​flavorjones

Improved

  • Use sqlite3_close_v2 to close databases in a deferred manner if there are unclosed prepared statements. Previously closing a database while statements were open resulted in a BusyException. See https://www.sqlite.org/c3ref/close.html for more context. #557 @​flavorjones
  • When setting a Database busy_handler, fire the write barrier to prevent potential crashes during the GC mark phase. #556 @​jhawthorn

Documentation

New Contributors

Full Changelog: sparklemotion/sqlite3-ruby@v2.0.4...v2.1.0


sha256 checksums:

6ed8c7edce2c4ec432152f548ffc80667bd774870d585bf5634d8e2e085fb70d  sqlite3-2.1.0-aarch64-linux-gnu.gem
b8330e67696ae9294b6e5da0d7ceb4e33e46462e1911b79fdf81eb20aa6f0dc7  sqlite3-2.1.0-aarch64-linux-musl.gem
577636e21e7373546f2f2e526316a53ed0ee0eeaa10960647e26479d1ebb49b9  sqlite3-2.1.0-arm64-darwin.gem
7bad1c60fd4e46c4c941bfc4d12c59254a9715b289655a606880e471e829c74c  sqlite3-2.1.0-arm-linux-gnu.gem
42ec543f593e0b3ddb5a944e15ede59dea3cc35acb27639e67bc6f819b1b5bcc  sqlite3-2.1.0-arm-linux-musl.gem
aea47c58078c274ca83195ce1686ee22c4641eb60ccab12918500e78c4babb4f  sqlite3-2.1.0.gem
0c7505899d8754c4cd73b02f0aec88028a0f282cdb426f3b2e5fa2c9dafd0dce  sqlite3-2.1.0-x64-mingw-ucrt.gem
e2be8fad85b6aee16f83baad378b3b3ab992c904e98592cccfd845ad56f4da1f  sqlite3-2.1.0-x86_64-darwin.gem
8993191e8304386d6a9bd76fe9ed161f323ddf857cc06f7f77a31e8b6ccb4d34  sqlite3-2.1.0-x86_64-linux-gnu.gem
cd6b7e6701b1110f033d3dbd156ac19bca011ed4e976c7897b402d578720b9c3  sqlite3-2.1.0-x86_64-linux-musl.gem
</tr></table> 

... (truncated)

Changelog

Sourced from sqlite3's changelog.

2.1.0 / 2024-09-24

Ruby

Fork safety improvements

Sqlite itself is not fork-safe. Specifically, writing in a child process to a database connection that was created in the parent process may corrupt the database file. To mitigate this risk, sqlite3-ruby has implemented the following changes:

  • All open writable database connections carried across a fork() will immediately be closed in the child process to mitigate the risk of corrupting the database file.
  • These connections will be incompletely closed ("discarded") which will result in a one-time memory leak in the child process.

If it's at all possible, we strongly recommend that you close writable database connections in the parent before forking. If absolutely necessary (and you know what you're doing), you may suppress the fork safety warnings by calling SQLite3::ForkSafety.suppress_warnings!.

See the README's "Fork Safety" section and adr/2024-09-fork-safety.md for more information. [#558, #565, #566] @​flavorjones

Improved

  • Use sqlite3_close_v2 to close databases in a deferred manner if there are unclosed prepared statements. Previously closing a database while statements were open resulted in a BusyException. See https://www.sqlite.org/c3ref/close.html for more context. #557 @​flavorjones
  • When setting a Database busy_handler, fire the write barrier to prevent potential crashes during the GC mark phase. #556 @​jhawthorn

Documentation

2.0.4 / 2024-08-13

Dependencies

2.0.3 / 2024-07-29

Improved

  • Database#quote avoids allocating strings where reusing frozen strings is preferable. #548 @​casperisfine

2.0.2 / 2024-05-23

Dependencies

... (truncated)

Commits
  • 9a18cb9 version bump to v2.1.0
  • 04d111c version bump to v2.1.0.rc3
  • 81fb037 Merge pull request #566 from sparklemotion/flavorjones-suppress-fork-warnings
  • c90b177 feat: SQLite3::ForkSafety.suppress_warnings!
  • 4b6d614 version bump to v2.1.0.rc2
  • 98d24ce Merge pull request #565 from sparklemotion/flavorjones-optimize-discarded-db-...
  • af548cf Optimize the statement check for a non-discarded database
  • e621d88 doc: update garbage collection description
  • 81ea485 version bump to v2.1.0.rc1
  • 5f4b0aa doc: add a note to CONTRIBUTING.md about the /adr dir
  • Additional commits viewable in compare view

Updates activemodel from 7.1.3.4 to 7.2.1

Release notes

Sourced from activemodel's releases.

7.2.1

Active Support

  • No changes.

Active Model

  • No changes.

Active Record

  • Fix detection for enum columns with parallelized tests and PostgreSQL.

    Rafael Mendonça França

  • Allow to eager load nested nil associations.

    fatkodima

  • Fix swallowing ignore order warning when batching using BatchEnumerator.

    fatkodima

  • Fix memory bloat on the connection pool when using the Fiber IsolatedExecutionState.

    Jean Boussier

  • Restore inferred association class with the same modularized name.

    Justin Ko

  • Fix ActiveRecord::Base.inspect to properly explain how to load schema information.

    Jean Boussier

  • Check invalid enum options for the new syntax.

    The options using _ prefix in the old syntax are invalid in the new syntax.

    Rafael Mendonça França

  • Fix ActiveRecord::Encryption::EncryptedAttributeType#type to return actual cast type.

    Vasiliy Ermolovich

... (truncated)

Changelog

Sourced from activemodel's changelog.

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
      include ActiveModel::Attributes
    attribute :my_attribute, :integer
    end
    MyModel.type_for_attribute(:my_attribute) # => #<ActiveModel::Type::Integer ...>

    Jonathan Hefner

Please check 7-1-stable for previous changes.

Commits
  • a11f0a6 Preparing for 7.2.1 release
  • fb6c430 Preparing for 7.2.0 release
  • 41d50f4 Preparing for 7.2.0.rc1 release
  • 79ea9f6 Merge pull request #52443 from Shopify/optimize-fast_string_to_time
  • 9b63450 Preparing for 7.2.0.beta3 release
  • 9d9ec1c Merge pull request #52145 from Shopify/alias-attribute-override-inherited-met...
  • e564f29 Merge pull request #52118 from Shopify/fix-code-generator-bloat
  • b752c38 Preparing for 7.2.0.beta2 release
  • 4d38eb8 update changelog
  • 9098f53 Preparing for 7.2.0.beta1 release
  • Additional commits viewable in compare view

Updates activesupport from 7.1.3.4 to 7.2.1

Release notes

Sourced from activesupport's releases.

7.2.1

Active Support

  • No changes.

Active Model

  • No changes.

Active Record

  • Fix detection for enum columns with parallelized tests and PostgreSQL.

    Rafael Mendonça França

  • Allow to eager load nested nil associations.

    fatkodima

  • Fix swallowing ignore order warning when batching using BatchEnumerator.

    fatkodima

  • Fix memory bloat on the connection pool when using the Fiber IsolatedExecutionState.

    Jean Boussier

  • Restore inferred association class with the same modularized name.

    Justin Ko

  • Fix ActiveRecord::Base.inspect to properly explain how to load schema information.

    Jean Boussier

  • Check invalid enum options for the new syntax.

    The options using _ prefix in the old syntax are invalid in the new syntax.

    Rafael Mendonça França

  • Fix ActiveRecord::Encryption::EncryptedAttributeType#type to return actual cast type.

    Vasiliy Ermolovich

... (truncated)

Changelog

Sourced from activesupport's changelog.

Rails 7.2.1 (August 22, 2024)

  • No changes.

Rails 7.2.0 (August 09, 2024)

  • Fix delegate_missing_to allow_nil: true when called with implict self

    class Person
      delegate_missing_to :address, allow_nil: true
    def address
    nil
    end
    def berliner?
    city == "Berlin"
    end
    end
    Person.new.city # => nil
    Person.new.berliner? # undefined local variable or method `city' for an instance of Person (NameError)

    Jean Boussier

  • Add logger as a dependency since it is a bundled gem candidate for Ruby 3.5

    Earlopain

  • Define Digest::UUID.nil_uuid, which returns the so-called nil UUID.

    Xavier Noria

  • Support duration type in ActiveSupport::XmlMini.

    heka1024

  • Remove deprecated ActiveSupport::Notifications::Event#children and ActiveSupport::Notifications::Event#parent_of?.

    Rafael Mendonça França

  • Remove deprecated support to call the following methods without passing a deprecator:

    • deprecate
    • deprecate_constant
    • ActiveSupport::Deprecation::DeprecatedObjectProxy.new
    • ActiveSupport::Deprecation::DeprecatedInstanceVariableProxy.new

... (truncated)

Commits
  • a11f0a6 Preparing for 7.2.1 release
  • da1ac65 Merge pull request #52672 from frenkel/patch-2
  • 4320ff4 Merge pull request #52631 from zenspider/zenspider/minitest-cleanup
  • 1f3e35d Merge pull request #52634 from Shopify/uk-fix-method-added
  • 0901db5 Merge pull request #52609 from rails/rm-minitest
  • fb6c430 Preparing for 7.2.0 release
  • 41d50f4 Preparing for 7.2.0.rc1 release
  • 9fb8863 Merge pull request #52473 from r7kamura/securerandom-base36
  • 0c3f838 Fix delegate_missing_to allow_nil: true when called with implict self
  • bf9c923 Polish the new deprecate_constant API docs
  • Additional commits viewable in compare view

Updates concurrent-ruby from 1.3.3 to 1.3.4

Release notes

Sourced from concurrent-ruby's releases.

v1.3.4

What's Changed

New Contributors

Full Changelog: ruby-concurrency/concurrent-ruby@v1.3.3...v1.3.4

Changelog

Sourced from concurrent-ruby's changelog.

Release v1.3.4 (10 August 2024)

  • (#1060) Fix bug with return value of Concurrent.available_processor_count when cpu.cfs_quota_us is -1.
  • (#1058) Add Concurrent.cpu_shares that is cgroups aware.
Commits
  • 044020f Avoid requiring files of the gem in Rakefile to avoid redefined method warnings
  • 09bfcd0 Avoid require in Gemfile & Rakefile to avoid redefined constant warnings
  • f131214 Avoid require in *.gemspec files to avoid redefined constant warnings
  • 13badd0 Update docs-source/signpost.md
  • 8fefd59 1.3.4
  • e671fec Check early that $CONCURRENT_JRUBY_HOME is set
  • 98d0f16 Fix the return value of Concurrent.available_processor_count when `cpu.cfs_...
  • cbee215 Fix the doc of Concurrent.available_processor_count
  • 6f7c91a Add Concurrent.cpu_shares that is cgroups aware.
  • cadc8de Update comment for JRuby variant of processor_count to reality
  • See full diff in compare view

Updates i18n from 1.14.5 to 1.14.6

Release notes

Sourced from i18n's releases.

v1.14.6

What's Changed

Ruby < 3.2 support will be dropped April 2025. Upgrade now to continue using i18n after that date.

New Contributors

Full Changelog: ruby-i18n/i18n@v1.14.5...v1.14.6

Commits
  • 3b65f65 Bump to 1.14.6
  • 6d0c2ce Add post install message for Ruby < 3.2 users
  • 1fbc930 Merge pull request #696 from KinWang-2013/fix/exists-method-nil-key
  • 18799df Merge pull request #697 from zachmargolis/margolis-optimize-plurals
  • aacb76a Merge pull request #699 from alexpls/master
  • d718ed4 Merge pull request #701 from stevegeek/fix_load_rb_with_pathname
  • ee22f10 Fix loading of .rb locale files when load_path is not a string, eg it is a Pa...
  • 229d57e Fixes strings being interpolated multiple times
  • eacc34f Merge pull request #698 from davetron5000/rdoc-fixes
  • 55dc807 fix issues with RDoc generation
  • Additional commits viewable in compare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
sqlite3 [>= 2.0.a, < 2.1]

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 monthly group with 3 updates in the / directory: [activerecord](https://github.com/rails/rails), [minitest](https://github.com/minitest/minitest) and [sqlite3](https://github.com/sparklemotion/sqlite3-ruby).


Updates `activerecord` from 7.1.3.4 to 7.2.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.1/activerecord/CHANGELOG.md)
- [Commits](rails/rails@v7.1.3.4...v7.2.1)

Updates `minitest` from 5.24.1 to 5.25.1
- [Changelog](https://github.com/minitest/minitest/blob/master/History.rdoc)
- [Commits](minitest/minitest@v5.24.1...v5.25.1)

Updates `sqlite3` from 1.7.3 to 2.1.0
- [Release notes](https://github.com/sparklemotion/sqlite3-ruby/releases)
- [Changelog](https://github.com/sparklemotion/sqlite3-ruby/blob/main/CHANGELOG.md)
- [Commits](sparklemotion/sqlite3-ruby@v1.7.3...v2.1.0)

Updates `activemodel` from 7.1.3.4 to 7.2.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.1/activemodel/CHANGELOG.md)
- [Commits](rails/rails@v7.1.3.4...v7.2.1)

Updates `activesupport` from 7.1.3.4 to 7.2.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.1/activesupport/CHANGELOG.md)
- [Commits](rails/rails@v7.1.3.4...v7.2.1)

Updates `concurrent-ruby` from 1.3.3 to 1.3.4
- [Release notes](https://github.com/ruby-concurrency/concurrent-ruby/releases)
- [Changelog](https://github.com/ruby-concurrency/concurrent-ruby/blob/master/CHANGELOG.md)
- [Commits](ruby-concurrency/concurrent-ruby@v1.3.3...v1.3.4)

Updates `i18n` from 1.14.5 to 1.14.6
- [Release notes](https://github.com/ruby-i18n/i18n/releases)
- [Changelog](https://github.com/ruby-i18n/i18n/blob/master/CHANGELOG.md)
- [Commits](ruby-i18n/i18n@v1.14.5...v1.14.6)

---
updated-dependencies:
- dependency-name: activerecord
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: monthly
- dependency-name: minitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: monthly
- dependency-name: sqlite3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: monthly
- dependency-name: activemodel
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: monthly
- dependency-name: activesupport
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: monthly
- dependency-name: concurrent-ruby
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: monthly
- dependency-name: i18n
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: monthly
...

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 Sep 25, 2024
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