豆豆友情提示:这是一个非官方 GitHub 代理镜像,主要用于网络测试或访问加速。请勿在此进行登录、注册或处理任何敏感信息。进行这些操作请务必访问官方网站 github.com。 Raw 内容也通过此代理提供。
Skip to content

Bump the prod-dependencies group across 2 directories with 4 updates#14310

Merged
JamieMagee merged 2 commits intomainfrom
dependabot/bundler/prod-dependencies-f0964da3bb
Mar 1, 2026
Merged

Bump the prod-dependencies group across 2 directories with 4 updates#14310
JamieMagee merged 2 commits intomainfrom
dependabot/bundler/prod-dependencies-f0964da3bb

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 1, 2026

Bumps the prod-dependencies group with 4 updates in the / directory: zeitwerk, aws-sdk-ecr, sorbet-runtime and parseconfig.
Bumps the prod-dependencies group with 2 updates in the /updater directory: aws-sdk-ecr and sorbet-runtime.

Updates zeitwerk from 2.7.1 to 2.7.5

Changelog

Sourced from zeitwerk's changelog.

2.7.5 (19 Feb 2026)

  • If available, tree traversal is based on Dir.scan, which saves syscalls in common platforms. This method is a recent addition to Ruby contributed by @​byroot, so you need to be on Ruby master to leverage this for now.

  • Tree traversal is a tad more performant, regardless of the previous point. Gains are marginal when eager loading, because it is dominated by loading the code, but Zeitwerk::Loader#all_expected_cpaths was 14% faster in some benchmarks, for example.

  • README.md documents how to collect autoloaded constants using an on_load callback.

  • Internal maintenance.

2.7.4 (16 Dec 2025)

  • Loaders have to manage disjoint source trees. Therefore, when a root directory is configured Zeitwerk ensures it is not already managed by some other loader. The performance of this validation has been improved.

    Thanks to @​ngan for sharing some benchmarks that led to revise this logic.

2.7.3 (20 May 2025)

  • The helper Zeitwerk::Loader#cpath_expected_at did not work correctly if the inflector had logic that relied on the absolute path of the given file or directory. This has been fixed.

    This bug was found by Codex.

  • Perpetual internal work.

2.7.2 (18 February 2025)

  • Internal improvements and micro-optimizations.

  • Add stable TruffleRuby to CI.

Commits
  • adfeec4 Ready for 2.7.5
  • a22d742 Use the now yielded cwd in a few tests
  • 5df497f Adds unit tests for Zeitwerk::Loader::FileSystem
  • 0a7021a Let with_(files|setup) yield the cwd
  • 976b8f1 Update code comment
  • 8398da8 Let the log method take a block
  • 812d0ee Use Dir.scan if available
  • f845a27 Delete PoC file
  • 112cfdf directory -> dir for consistency
  • 064b76c Add a section about predicates to PROJECT_RULES.md
  • Additional commits viewable in compare view

Updates aws-sdk-ecr from 1.121.0 to 1.122.0

Changelog

Sourced from aws-sdk-ecr's changelog.

1.122.0 (2026-02-25)

  • Feature - Update repository name regex to comply with OCI Distribution Specification
Commits

Updates sorbet-runtime from 0.6.12956 to 0.6.12977

Release notes

Sourced from sorbet-runtime's releases.

sorbet 0.6.12976.20260227164819-54487b46f

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12976', :group => :development
gem 'sorbet-runtime', '0.6.12976'

sorbet 0.6.12975.20260227155624-aec5b3d6b

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12975', :group => :development
gem 'sorbet-runtime', '0.6.12975'

sorbet 0.6.12974.20260227143820-091187640

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12974', :group => :development
gem 'sorbet-runtime', '0.6.12974'

sorbet 0.6.12973.20260227141822-3603d7694

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12973', :group => :development
gem 'sorbet-runtime', '0.6.12973'

sorbet 0.6.12972.20260227133712-4fa494231

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12972', :group => :development
gem 'sorbet-runtime', '0.6.12972'

sorbet 0.6.12971.20260226153553-e125123d8

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12971', :group => :development
gem 'sorbet-runtime', '0.6.12971'

sorbet 0.6.12970.20260226135225-a0a767700

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12970', :group => :development
gem 'sorbet-runtime', '0.6.12970'

sorbet 0.6.12969.20260226133120-364e95de1

... (truncated)

Commits

Updates parseconfig from 1.0.8 to 1.1.2

Changelog

Sourced from parseconfig's changelog.

Wed Sep 29, 2021 - v1.1.2

  • Dev and test against recent versions of Ruby (2.6+, 3.0+)
  • Docker development support
  • Remove tests for deprecated 'get_value()' method
  • Use Rspec 'expect' in place of 'should'

Mon Sep 28, 2020 - v1.1.0

  • Add non-value option support. Resolves Issue #11

Mon Jan 25, 2016 - v1.0.8

  • Use backward compatible positional arguments (not named keyword arguments) Resolves Issue #31

Mon Jan 25, 2016 - v1.0.7

  • Support alternative comment types (default: ['#', ';']) (@​voobscout) Resolves Issue #30

Mon Oct 06, 2014 - v1.0.6

  • Fix where extraneous double quotes were getting wrapped around parameters that have non-word characters (issue #19)

Thu Dec 19, 2013 - v1.0.4

  • Add fix for config files with Byte Order Marker (BOM)
  • Add support for .eql? function.

Tue Jun 12, 2012 - v1.0.2

  • Re-enable get_value() as it seems some projects are still using it. That said, get_value() will be removed in the future at some point.

Tue Jun 12, 2012 - v1.0.0

  • Resolved Issue #3, Config files not closed properly.
  • Resolved Issue #7, Added basic rspec testing
  • Resolved Issue #5, Readded support for array like access
  • Removed deprecated function get_value()

Sat Feb 27, 2010 - v0.5.2

  • Re-releasing under MIT License.
  • Fixed issue with the add() method where if you added a group outside of the import_config() method, the group would not be properly added to self.groups[].
  • Added feature that if you attempt to add a group that already exists, the groups will be merged together. Any existing params in the original group will be overwritten by the new ones.
  • Fully deprecated override_value() and nil_value(). Anything using 'instance_variable*' has been removed as well as it wasn't working properly anyway.
  • If you attempt to add_to_group() to a group that doesn't exist, the group is added automatically.

... (truncated)

Commits

Updates aws-sdk-ecr from 1.121.0 to 1.122.0

Changelog

Sourced from aws-sdk-ecr's changelog.

1.122.0 (2026-02-25)

  • Feature - Update repository name regex to comply with OCI Distribution Specification
Commits

Updates sorbet-runtime from 0.6.12956 to 0.6.12977

Release notes

Sourced from sorbet-runtime's releases.

sorbet 0.6.12976.20260227164819-54487b46f

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12976', :group => :development
gem 'sorbet-runtime', '0.6.12976'

sorbet 0.6.12975.20260227155624-aec5b3d6b

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12975', :group => :development
gem 'sorbet-runtime', '0.6.12975'

sorbet 0.6.12974.20260227143820-091187640

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12974', :group => :development
gem 'sorbet-runtime', '0.6.12974'

sorbet 0.6.12973.20260227141822-3603d7694

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12973', :group => :development
gem 'sorbet-runtime', '0.6.12973'

sorbet 0.6.12972.20260227133712-4fa494231

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12972', :group => :development
gem 'sorbet-runtime', '0.6.12972'

sorbet 0.6.12971.20260226153553-e125123d8

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12971', :group => :development
gem 'sorbet-runtime', '0.6.12971'

sorbet 0.6.12970.20260226135225-a0a767700

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12970', :group => :development
gem 'sorbet-runtime', '0.6.12970'

sorbet 0.6.12969.20260226133120-364e95de1

... (truncated)

Commits

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 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

@dependabot dependabot bot added dependencies ruby Dependabot pull requests that update Ruby code labels Mar 1, 2026
@dependabot dependabot bot requested a review from a team as a code owner March 1, 2026 04:26
@dependabot dependabot bot added the ruby Dependabot pull requests that update Ruby code label Mar 1, 2026
Bumps the prod-dependencies group with 4 updates in the / directory: [zeitwerk](https://github.com/fxn/zeitwerk), [aws-sdk-ecr](https://github.com/aws/aws-sdk-ruby), [sorbet-runtime](https://github.com/sorbet/sorbet) and [parseconfig](https://github.com/datafolklabs/ruby-parseconfig).
Bumps the prod-dependencies group with 2 updates in the /updater directory: [aws-sdk-ecr](https://github.com/aws/aws-sdk-ruby) and [sorbet-runtime](https://github.com/sorbet/sorbet).


Updates `zeitwerk` from 2.7.1 to 2.7.5
- [Changelog](https://github.com/fxn/zeitwerk/blob/main/CHANGELOG.md)
- [Commits](fxn/zeitwerk@v2.7.1...v2.7.5)

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

Updates `sorbet-runtime` from 0.6.12956 to 0.6.12977
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

Updates `parseconfig` from 1.0.8 to 1.1.2
- [Changelog](https://github.com/datafolklabs/ruby-parseconfig/blob/master/Changelog)
- [Commits](https://github.com/datafolklabs/ruby-parseconfig/commits)

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

Updates `sorbet-runtime` from 0.6.12956 to 0.6.12977
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

---
updated-dependencies:
- dependency-name: zeitwerk
  dependency-version: 2.7.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: aws-sdk-ecr
  dependency-version: 1.122.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: sorbet-runtime
  dependency-version: 0.6.12977
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: parseconfig
  dependency-version: 1.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: aws-sdk-ecr
  dependency-version: 1.122.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: sorbet-runtime
  dependency-version: 0.6.12977
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/bundler/prod-dependencies-f0964da3bb branch from cc0acec to da7db83 Compare March 1, 2026 05:30
@JamieMagee JamieMagee merged commit fbedfd9 into main Mar 1, 2026
169 checks passed
@JamieMagee JamieMagee deleted the dependabot/bundler/prod-dependencies-f0964da3bb branch March 1, 2026 06:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies ruby Dependabot pull requests that update Ruby code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant