Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 1, 2025

Bumps the ruby-deps group with 19 updates:

Package From To
rake 13.2.1 13.3.0
aws-sdk-s3 1.184.0 1.188.0
mime-types 3.6.2 3.7.0
async 2.23.1 2.24.0
aws-partitions 1.1095.0 1.1109.0
aws-sdk-core 3.222.3 3.224.1
aws-sdk-kms 1.99.0 1.101.0
base64 0.2.0 0.3.0
benchmark 0.4.0 0.4.1
bigdecimal 3.1.9 3.2.1
drb 2.2.1 2.2.3
google-protobuf 4.30.2 4.31.1
io-event 1.10.0 1.10.1
json 2.11.3 2.12.2
mime-types-data 3.2025.0429 3.2025.0527
mini_portile2 2.8.8 2.8.9
rack 3.1.14 3.1.15
sass-embedded 1.87.0 1.89.1
zeitwerk 2.7.2 2.7.3

Updates rake from 13.2.1 to 13.3.0

Commits
  • 0fdacef Bump rake to 13.3.0
  • fcc1f86 Merge pull request #515 from rgarner/task-arguments-deconstruct-keys
  • 8e917d9 Merge pull request #609 from pvdb/fix_rubyrunner_require
  • 0378c45 Merge pull request #627 from komagata/fix-rdoc-links
  • cff7664 Pattern matching support for arguments
  • a4454e6 Merge pull request #608 from pvdb/use_dir_home
  • 0b727e9 Remove superfluous dependency requires (in tests)
  • 5367e5c Move dependency requires to RubyRunner file
  • 6ba4601 Merge pull request #634 from ruby/trusted-publisher
  • 6b3daf8 Enabled trusted publisher for rubygems.org
  • Additional commits viewable in compare view

Updates aws-sdk-s3 from 1.184.0 to 1.188.0

Changelog

Sourced from aws-sdk-s3's changelog.

1.188.0 (2025-05-29)

  • Feature - Adding checksum support for S3 PutBucketOwnershipControls API.

1.187.0 (2025-05-28)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

  • Issue - Signal data in http response listeners prior to writing, so that data can be inspected or verified before potential mutation.

1.186.1 (2025-05-15)

  • Issue - Abort multipart download if object is modified during download.

1.186.0 (2025-05-12)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

1.185.0 (2025-05-01)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.
Commits

Updates mime-types from 3.6.2 to 3.7.0

Changelog

Sourced from mime-types's changelog.

3.7.0 / 2025-05-07

  • Deprecated MIME::Type#priority_compare. In a future release, this will be will be renamed to MIME::Type#<=>. This method is used in tight loops, so there is no warning message for either MIME::Type#priority_compare or MIME::Type#<=>.

  • Improved the performance of sorting by eliminating the complex comparison flow from MIME::Type#priority_compare. The old version shows under 600 i/s, and the new version shows over 900 i/s. In sorting the full set of MIME data, there are three differences between the old and new versions; after comparison, these differences are considered acceptable.

  • Simplified the default compare implementation (MIME::Type#<=>) to use the new MIME::Type#priority_compare operation and simplify the fallback to String comparison. This may result in exceptions where there had been none, as explicit support for several special values (which should have caused errors in any case) have been removed.

  • When sorting the result of MIME::Types#type_for, provided a priority boost if one of the target extensions is the type's preferred extension. This means that for the case in #148[issue-148], when getting the type for foo.webm, the type video/webm will be returned before the type audio/webm, because .webm is the preferred extension for video/webm but not audio/webm (which has a preferred extension of .weba). Added tests to ensure MIME types are retrieved in a stable order (which is alphabetical).

Commits
  • afa0fd6 Update changelog with correct version
  • a134b29 Prep for release
  • a05d39b Improve comparison performance with pre-computed priority
  • 4a06000 Deprecate MIME::Types.new(Array)
  • ac2e0d4 Bump astral-sh/setup-uv from 6.0.0 to 6.0.1
  • 918c7f8 Bump github/codeql-action from 3.28.16 to 3.28.17
  • 09cce35 Bump ruby/setup-ruby from 1.235.0 to 1.237.0
  • fc2289c Bump reviewdog/action-typos from 1.17.2 to 1.17.3
  • dbff580 Bump astral-sh/setup-uv from 5.4.2 to 6.0.0
  • 10d3784 Bump ruby/setup-ruby from 1.233.0 to 1.235.0
  • Additional commits viewable in compare view

Updates async from 2.23.1 to 2.24.0

Changelog

Sourced from async's changelog.

v2.24.0

  • Ruby v3.1 support is dropped.
  • Async::Wrapper which was previously deprecated, is now removed.

Flexible Timeouts

When {ruby Async::Scheduler#with_timeout} is invoked with a block, it can receive a {ruby Async::Timeout} instance. This allows you to adjust or cancel the timeout while the block is executing. This is useful for long-running tasks that may need to adjust their timeout based on external factors.

Async do
	Async::Scheduler.with_timeout(5) do |timeout|
		# Do some work that may take a while...
	if some_condition
		timeout.cancel! # Cancel the timeout
	else
		# Add 10 seconds to the current timeout:
		timeout.adjust(10)
	# Reduce the timeout by 10 seconds:
	timeout.adjust(-10)
	
	# Set the timeout to 10 seconds from now:
	timeout.duration = 10
	
	# Increase the current duration:
	timeout.duration += 10
end

end

end

v2.23.0

  • Rename ASYNC_SCHEDULER_DEFAULT_WORKER_POOL to ASYNC_SCHEDULER_WORKER_POOL.

Fiber Stall Profiler

After several iterations of experimentation, we are officially introducing the fiber stall profiler, implemented using the optional fiber-profiler gem. This gem is not included by default, but can be added to your project:

$ bundle add fiber-profiler

After adding the gem, you can enable the fiber stall profiler by setting the FIBER_PROFILER_CAPTURE=true environment variable:

$ FIBER_PROFILER_CAPTURE=true bundle exec ruby -rasync -e 'Async{Fiber.blocking{sleep 0.1}}'
Fiber stalled for 0.105 seconds
</tr></table> 

... (truncated)

Commits
  • f30c2f8 Bump minor version.
  • 53c447e Add more flexible timeout. (#386)
  • a5b59e1 Remove Async::Wrapper.
  • f1484a1 Drop support for Ruby v3.1 and related compatibility shims.
  • 437515e Add Ruby v3.4 to the test matrix.
  • 8d63d7f Correct comment about when blocking_operation_wait() was released (#380)
  • See full diff in compare view

Updates aws-partitions from 1.1095.0 to 1.1109.0

Changelog

Sourced from aws-partitions's changelog.

1.1109.0 (2025-05-30)

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

1.1108.0 (2025-05-28)

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

1.1107.0 (2025-05-23)

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

1.1106.0 (2025-05-20)

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

1.1105.0 (2025-05-19)

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

1.1104.0 (2025-05-16)

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

1.1103.0 (2025-05-12)

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

1.1102.0 (2025-05-09)

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

1.1101.0 (2025-05-08)

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

1.1100.0 (2025-05-07)

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

... (truncated)

Commits

Updates aws-sdk-core from 3.222.3 to 3.224.1

Changelog

Sourced from aws-sdk-core's changelog.

3.224.1 (2025-05-28)

  • Issue - Signal data in http response listeners prior to writing, so that data can be inspected or verified before potential mutation.

3.224.0 (2025-05-12)

  • Feature - Updated Aws::STS::Client with the latest API changes.

  • Feature - Updated Aws::SSOOIDC::Client with the latest API changes.

  • Feature - Updated Aws::SSO::Client with the latest API changes.

  • Feature - Support ENV['AWS_DISABLE_HOST_PREFIX_INJECTION'] and disable_host_prefix_injection shared config to disable host prefix injection for all services.

3.223.0 (2025-05-01)

  • Feature - Updated Aws::STS::Client with the latest API changes.
Commits

Updates aws-sdk-kms from 1.99.0 to 1.101.0

Changelog

Sourced from aws-sdk-kms's changelog.

1.101.0 (2025-05-12)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

1.100.0 (2025-05-01)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.
Commits

Updates base64 from 0.2.0 to 0.3.0

Release notes

Sourced from base64's releases.

v0.3.0

What's Changed

New Contributors

Full Changelog: ruby/base64@v0.2.0...v0.3.0

Commits
  • c5d3c7f v0.3.0
  • 5f43831 [DOC] Tweaks for module Base64
  • bb66095 Enabled trusted publisher for rubygems.org
  • cd65c10 Add RBS signature and testing (#25)
  • e30df92 Update file list on gemspec
  • 9704a4c Update license files same as ruby/ruby
  • 7ec2861 Merge pull request #21 from ruby/old-version-on-macos
  • 7ae5efd Exclude older than 2.6 on macos-14
  • 9669a7d Merge pull request #18 from mark-young-atg/provide_changelog_link_on_rubygems
  • 7cab043 Provide a 'Changelog' link on rubygems.org/gems/base64
  • See full diff in compare view

Updates benchmark from 0.4.0 to 0.4.1

Release notes

Sourced from benchmark's releases.

v0.4.1

What's Changed

New Contributors

Full Changelog: ruby/benchmark@v0.4.0...v0.4.1

Commits
  • 6d878b4 v0.4.1
  • b9db5dd Merge pull request #12 from paarthmadan/correct-format-documentation
  • d387ff8 Merge pull request #33 from ruby/dependabot/github_actions/step-security/hard...
  • 17a729e Bump step-security/harden-runner from 2.11.1 to 2.12.0
  • a30b6d4 Merge pull request #32 from ruby/dependabot/github_actions/step-security/hard...
  • ab59593 Bump step-security/harden-runner from 2.11.0 to 2.11.1
  • f200b9e Merge pull request #31 from ruby/dependabot/github_actions/step-security/hard...
  • 08282b7 Bump step-security/harden-runner from 2.10.4 to 2.11.0
  • 1511574 Merge pull request #30 from ruby/dependabot/github_actions/step-security/hard...
  • ec8b39d Bump step-security/harden-runner from 2.10.3 to 2.10.4
  • Additional commits viewable in compare view

Updates bigdecimal from 3.1.9 to 3.2.1

Release notes

Sourced from bigdecimal's releases.

v3.2.1

What's Changed

Full Changelog: ruby/bigdecimal@v3.2.0...v3.2.1

v3.2.0

What's Changed

New Contributors

Full Changelog: ruby/bigdecimal@v3.1.9...v3.2.0

Changelog

Sourced from bigdecimal's changelog.

3.2.1

3.2.0

Commits
  • d6faddb Bump version to 3.2.1
  • 1cce03c CHANGES: Add v3.2.1 entries
  • 64933d4 Merge pull request #335 from tompng/div_with_preclimit_fix
  • 5edc779 Apply preclimit in BigDecimal_div2 when specified prec is 0
  • e0cb4a6 Enabled trusted publisher for rubygems.org (#333)
  • b5611d7 Bump version to 3.2.0
  • b295c49 Add dev:version:bump rake task
  • 5003f24 CHANGES: Add v3.2.0 entries
  • c216ed4 Fix division rounding (#330)
  • 1fa3eff Integrate BigDecimal_div and BigDecimal_div2 (#329)
  • Additional commits viewable in compare view

Updates drb from 2.2.1 to 2.2.3

Release notes

Sourced from drb's releases.

dRuby 2.2.3 - 2025-05-21

Improvement

  • Added support for "Changelog" link in RubyGems.org page.

    • GH-30
    • Patch by Mark Young
  • Dropped ObjectSpace._id2ref dependency because ObjectSpace._id2ref is deprecated. Drb::WeakIdConv is meaningless by this. So it's deprecated. Use the default ID converter instead.

Fixes

  • SSL: Fixed wrong certificate version.

Thanks

  • Mark Young
Changelog

Sourced from drb's changelog.

2.2.3 - 2025-05-21

Improvement

  • Added support for "Changelog" link in RubyGems.org page.

    • GH-30
    • Patch by Mark Young
  • Dropped ObjectSpace._id2ref dependency because ObjectSpace._id2ref is deprecated. Drb::WeakIdConv is meaningless by this. So it's deprecated. Use the default ID converter instead.

Fixes

  • SSL: Fixed wrong certificate version.

Thanks

  • Mark Young
Commits
  • a4f7444 Bump version
  • 3f24a11 Fix building and publishing package
  • 9ec64d4 Bump version
  • 6f74128 Add 2.2.2 entry
  • 6a94342 Use more specific changelog page
  • ca80a6c Add support for Trusted Publishing
  • 99a2835 Merge InvokeMethod18Mixin into InvokeMethod (#37)
  • e827fe7 Add safety comment about x509 cert versioning rule (#34)
  • b360d74 Avoid use of id2ref for weak mapping (#35)
  • 69c2ef5 Merge pull request #29 from jeremyevans/fix-openssl-cert-version
  • Additional commits viewable in compare view

Updates google-protobuf from 4.30.2 to 4.31.1

Commits
  • f275995 Updating version.json and repo version numbers to: 31.1-dev
  • 0cf5489 Fix silent failure of rb_test rules to run test (#21733)
  • 0d4ba58 Updating version.json and repo version numbers to: 31.0-dev
  • a0b1123 Updating version.json and repo version numbers to: 31.0-rc1
  • f06ae84 Auto-generate files after cl/748395156
  • 635292a Add file for use in staleness tests of the Ruby FFI bindings
  • bb0b942 Auto-generate files after cl/748073845
  • e618a96 Auto-generate files after cl/748053633
  • 4e91f80 Auto-generate files after cl/744833335
  • 59e1f0f Ruby | Add support for a protobuf debug build (#21060)
  • Additional commits viewable in compare view

Updates io-event from 1.10.0 to 1.10.1

Changelog

Sourced from io-event's changelog.

Releases

Commits

Updates json from 2.11.3 to 2.12.2

Release notes

Sourced from json's releases.

v2.12.2

  • Fix compiler optimization level.

Full Changelog: ruby/json@v2.12.1...v2.12.2

v2.12.1

What's Changed

  • Fix a potential crash in large negative floating point number generation.
  • Fix for JSON.pretty_generate to use passed state object's generate instead of state class as the required parameters aren't available.

Full Changelog: ruby/json@v2.12.0...v2.12.1

v2.12.0

What's Changed

  • Improve floating point generation to not use scientific notation as much.
  • Include line and column in parser errors. Both in the message and as exception attributes.
  • Handle non-string hash keys with broken to_s implementations.
  • JSON.generate now uses SSE2 (x86) or NEON (arm64) instructions when available to escape strings.

Full Changelog: ruby/json@v2.11.3...v2.12.0

Changelog

Sourced from json's changelog.

2025-05-23 (2.12.2)

  • Fix compiler optimization level.

2025-05-23 (2.12.1)

  • Fix a potential crash in large negative floating point number generation.
  • Fix for JSON.pretty_generate to use passed state object's generate instead of state class as the required parameters aren't available.

2025-05-12 (2.12.0)

  • Improve floating point generation to not use scientific notation as much.
  • Include line and column in parser errors. Both in the message and as exception attributes.
  • Handle non-string hash keys with broken to_s implementations.
  • JSON.generate now uses SSE2 (x86) or NEON (arm64) instructions when available to escape strings.
Commits
  • a29cb77 Release 2.12.2
  • 8603a57 Release 2.12.1
  • 30eacc2 Merge pull request #810 from byroot/fbuffer-bound-checks
  • 8109421 fbuffer.c: add debug mode with bound checks.
  • d695177 Merge pull request #808 from byroot/reported-segv
  • d73ae93 Fix: generate_json_float to reserve enough memory for large negative floats.
  • 60e80e1 Merge pull request #806 from GrantBirki/minor-fixes
  • 7c03ffc Remove some unnecessary top level constant lookups
  • c060943 remove redundant self.
  • f5c1b8c use . over :: for consistency
  • Additional commits viewable in compare view

Updates mime-types-data from 3.2025.0429 to 3.2025.0527

Changelog

Sourced from mime-types-data's changelog.

3.2025.0527 / 2025-05-27

  • Updated registry entries from the IANA [media registry][registry] and [provisional media registry][provisional], the [Apache httpd media registry][httpd], and the [Apache Tika media registry][tika] as of the release date.

3.2025.0520 / 2025-05-20

  • Updated registry entries from the IANA [media registry][registry] and [provisional media registry][provisional], the [Apache httpd media registry][httpd], and the [Apache Tika media registry][tika] as of the release date.

3.2025.0514 / 2025-05-14

  • Updated registry entries from the IANA [media registry][registry] and [provisional media registry][provisional], the [Apache httpd media registry][httpd], and the [Apache Tika media registry][tika] as of the release date.

3.2025.0507 / 2025-05-07

  • Added new data for pre-computed priority sorting. This new data requires Ruby mime-types 3.7.0 or later to manage data but is ignored by older versions of mime-types.

  • Added a parser for the [Apache Tika media registry][tika] to enrich the media definitions, mostly by adding new patterns for media type extensions. This parser:

    1. Parses the current tika-mimetypes.xml from the main branch of [Tika][tika] on GitHub.

    2. Skips over any mime-type record that has attributes. That is, any record which looks like media/subtype;format=foo or media/subtype;version=2 will be skipped. Support for attributes does not currently exist in the mime-types library.

    3. Extracts the glob entries for use in the extensions field. Globs that use * in the middle of a filename are excluded, because that's now how the Ruby MIME::Types field works (I could add a new glob field, but that will take a bit more work).

    4. Updates the extensions field for any existing MIME::Type or creates new unregistered (not defined in IANA) types for new ones.

  • Updated the history body to reflect the new data source for updates.

  • Some details were removed from older CHANGELOG entries relating to updated

... (truncated)

Commits
  • 08d7ea2 Update mime-types-data 3.2025.0527 / 2025-05-27
  • 4ddc200 chore(deps): Bump astral-sh/setup-uv from 6.0.1 to 6.1.0
  • 5a4a4f8 chore(deps): Bump ruby/setup-ruby from 1.242.0 to 1.244.0
  • 0a0c32c Update mime-types-data 3.2025.0520 / 2025-05-20
  • ab6e840 chore(deps): Bump github/codeql-action from 3.28.17 to 3.28.18
  • 4226075 chore(deps): Bump actions/dependency-review-action from 4.7.0 to 4.7.1
  • 791963e chore(deps): Bump ruby/setup-ruby from 1.238.0 to 1.242.0
  • b79eaeb Update mime-types-data 3.2025.0514 / 2025-05-14
  • 28d534d chore: Update to write PR body to a file
  • 619e8d6 chore: Fix mini_mime.db support for tika data
  • Additional commits viewable in compare view

Updates mini_portile2 from 2.8.8 to 2.8.9

Release notes

Sourced from mini_portile2's releases.

2.8.9 / 2025-05-12

Ruby support

New Contributors

Full Changelog: flavorjones/mini_portile@v2.8.8...v2.8.9

Changelog

Sourced from mini_portile2's changelog.

2.8.9 / 2025-05-12

Ruby support

Commits
  • ef35d0b version bump to v2.8.9
  • b2c56b0 Merge pull request #160 from Earlopain/cgi-ruby-3.5
  • 6c4c1a1 Only load what is required from cgi
  • f009084 Merge pull request #159 from flavorjones/flavorjones/ci-openbsd-202505
  • fba403e ci: update ruby in the openbsd jobs
  • 4ddf8ce Merge pull request #157 from flavorjones/flavorjones/fix-windows-cmake-tests
  • e866a6c ci: windows images no longer support older cmake versions
  • f92b7c2 Merge pull request #156 from kenhys/update-ci
  • 19b970c Add CI for Ruby 3.4
  • ae87130 Merge pull request #155 from flavorjones/flavorjones-ci-logger-fix
  • Additional commits viewable in compare view

Updates rack from 3.1.14 to 3.1.15

Changelog

Sourced from rack's changelog.

[3.1.15] - 2025-05-18

Commits

Updates sass-embedded from 1.87.0 to 1.89.1

Commits

Updates zeitwerk from 2.7.2 to 2.7.3

Changelog

Sourced from zeitwerk's changelog.

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.

Commits
  • 77c971c Ready for 2.7.3
  • 97cd2a3 cpath_expected_at: pass correct dir to the inflector
  • 67b1396 User Symbol#name here
  • 72b9aab Refactor thread-safety test
  • 52d90dd Simplify Zeitwerk::Cref#path
  • 68eb4ae Parameterize Zeitwerk::Cref::Map
  • efaa214 New signature convention for exceptions
  • 4cf0ddf Revises duck-typing signatures
  • 2120324 Use #: for RBS annotations
  • a1d4f54 Updates some signature annotations
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the ruby-deps group with 19 updates:

| Package | From | To |
| --- | --- | --- |
| [rake](https://github.com/ruby/rake) | `13.2.1` | `13.3.0` |
| [aws-sdk-s3](https://github.com/aws/aws-sdk-ruby) | `1.184.0` | `1.188.0` |
| [mime-types](https://github.com/mime-types/ruby-mime-types) | `3.6.2` | `3.7.0` |
| [async](https://github.com/socketry/async) | `2.23.1` | `2.24.0` |
| [aws-partitions](https://github.com/aws/aws-sdk-ruby) | `1.1095.0` | `1.1109.0` |
| [aws-sdk-core](https://github.com/aws/aws-sdk-ruby) | `3.222.3` | `3.224.1` |
| [aws-sdk-kms](https://github.com/aws/aws-sdk-ruby) | `1.99.0` | `1.101.0` |
| [base64](https://github.com/ruby/base64) | `0.2.0` | `0.3.0` |
| [benchmark](https://github.com/ruby/benchmark) | `0.4.0` | `0.4.1` |
| [bigdecimal](https://github.com/ruby/bigdecimal) | `3.1.9` | `3.2.1` |
| [drb](https://github.com/ruby/drb) | `2.2.1` | `2.2.3` |
| [google-protobuf](https://github.com/protocolbuffers/protobuf) | `4.30.2` | `4.31.1` |
| [io-event](https://github.com/socketry/io-event) | `1.10.0` | `1.10.1` |
| [json](https://github.com/ruby/json) | `2.11.3` | `2.12.2` |
| [mime-types-data](https://github.com/mime-types/mime-types-data) | `3.2025.0429` | `3.2025.0527` |
| [mini_portile2](https://github.com/flavorjones/mini_portile) | `2.8.8` | `2.8.9` |
| [rack](https://github.com/rack/rack) | `3.1.14` | `3.1.15` |
| [sass-embedded](https://github.com/sass-contrib/sass-embedded-host-ruby) | `1.87.0` | `1.89.1` |
| [zeitwerk](https://github.com/fxn/zeitwerk) | `2.7.2` | `2.7.3` |


Updates `rake` from 13.2.1 to 13.3.0
- [Release notes](https://github.com/ruby/rake/releases)
- [Changelog](https://github.com/ruby/rake/blob/master/History.rdoc)
- [Commits](ruby/rake@v13.2.1...v13.3.0)

Updates `aws-sdk-s3` from 1.184.0 to 1.188.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-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-ruby/commits)

Updates `mime-types` from 3.6.2 to 3.7.0
- [Changelog](https://github.com/mime-types/ruby-mime-types/blob/main/CHANGELOG.md)
- [Commits](mime-types/ruby-mime-types@v3.6.2...v3.7.0)

Updates `async` from 2.23.1 to 2.24.0
- [Release notes](https://github.com/socketry/async/releases)
- [Changelog](https://github.com/socketry/async/blob/main/releases.md)
- [Commits](socketry/async@v2.23.1...v2.24.0)

Updates `aws-partitions` from 1.1095.0 to 1.1109.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 `aws-sdk-core` from 3.222.3 to 3.224.1
- [Release notes](https://github.com/aws/aws-sdk-ruby/releases)
- [Changelog](https://github.com/aws/aws-sdk-ruby/blob/version-3/gems/aws-sdk-core/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-ruby/commits)

Updates `aws-sdk-kms` from 1.99.0 to 1.101.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-kms/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-ruby/commits)

Updates `base64` from 0.2.0 to 0.3.0
- [Release notes](https://github.com/ruby/base64/releases)
- [Commits](ruby/base64@v0.2.0...v0.3.0)

Updates `benchmark` from 0.4.0 to 0.4.1
- [Release notes](https://github.com/ruby/benchmark/releases)
- [Commits](ruby/benchmark@v0.4.0...v0.4.1)

Updates `bigdecimal` from 3.1.9 to 3.2.1
- [Release notes](https://github.com/ruby/bigdecimal/releases)
- [Changelog](https://github.com/ruby/bigdecimal/blob/master/CHANGES.md)
- [Commits](ruby/bigdecimal@v3.1.9...v3.2.1)

Updates `drb` from 2.2.1 to 2.2.3
- [Release notes](https://github.com/ruby/drb/releases)
- [Changelog](https://github.com/ruby/drb/blob/master/NEWS.md)
- [Commits](ruby/drb@v2.2.1...v2.2.3)

Updates `google-protobuf` from 4.30.2 to 4.31.1
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl)
- [Commits](protocolbuffers/protobuf@v4.30.2...v4.31.1)

Updates `io-event` from 1.10.0 to 1.10.1
- [Release notes](https://github.com/socketry/io-event/releases)
- [Changelog](https://github.com/socketry/io-event/blob/main/releases.md)
- [Commits](socketry/io-event@v1.10.0...v1.10.1)

Updates `json` from 2.11.3 to 2.12.2
- [Release notes](https://github.com/ruby/json/releases)
- [Changelog](https://github.com/ruby/json/blob/master/CHANGES.md)
- [Commits](ruby/json@v2.11.3...v2.12.2)

Updates `mime-types-data` from 3.2025.0429 to 3.2025.0527
- [Changelog](https://github.com/mime-types/mime-types-data/blob/main/CHANGELOG.md)
- [Commits](mime-types/mime-types-data@v3.2025.0429...v3.2025.0527)

Updates `mini_portile2` from 2.8.8 to 2.8.9
- [Release notes](https://github.com/flavorjones/mini_portile/releases)
- [Changelog](https://github.com/flavorjones/mini_portile/blob/main/CHANGELOG.md)
- [Commits](flavorjones/mini_portile@v2.8.8...v2.8.9)

Updates `rack` from 3.1.14 to 3.1.15
- [Release notes](https://github.com/rack/rack/releases)
- [Changelog](https://github.com/rack/rack/blob/main/CHANGELOG.md)
- [Commits](rack/rack@v3.1.14...v3.1.15)

Updates `sass-embedded` from 1.87.0 to 1.89.1
- [Commits](sass-contrib/sass-embedded-host-ruby@v1.87.0...v1.89.1)

Updates `zeitwerk` from 2.7.2 to 2.7.3
- [Changelog](https://github.com/fxn/zeitwerk/blob/main/CHANGELOG.md)
- [Commits](fxn/zeitwerk@v2.7.2...v2.7.3)

---
updated-dependencies:
- dependency-name: rake
  dependency-version: 13.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: aws-sdk-s3
  dependency-version: 1.188.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: mime-types
  dependency-version: 3.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: async
  dependency-version: 2.24.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: aws-partitions
  dependency-version: 1.1109.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: aws-sdk-core
  dependency-version: 3.224.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: aws-sdk-kms
  dependency-version: 1.101.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: base64
  dependency-version: 0.3.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: benchmark
  dependency-version: 0.4.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
- dependency-name: bigdecimal
  dependency-version: 3.2.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: drb
  dependency-version: 2.2.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
- dependency-name: google-protobuf
  dependency-version: 4.31.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: io-event
  dependency-version: 1.10.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
- dependency-name: json
  dependency-version: 2.12.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: mime-types-data
  dependency-version: 3.2025.0527
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
- dependency-name: mini_portile2
  dependency-version: 2.8.9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
- dependency-name: rack
  dependency-version: 3.1.15
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
- dependency-name: sass-embedded
  dependency-version: 1.89.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: zeitwerk
  dependency-version: 2.7.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
...

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 Jun 1, 2025
@chadlwilson chadlwilson merged commit 2ae2c86 into master Jun 1, 2025
1 check passed
@dependabot dependabot bot deleted the dependabot/bundler/ruby-deps-b88a9d66d3 branch June 1, 2025 06:29
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.

2 participants