Skip to content

build(deps): bump the most-gems group with 12 updates#1235

Open
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/bundler/most-gems-032e6ea49b
Open

build(deps): bump the most-gems group with 12 updates#1235
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/bundler/most-gems-032e6ea49b

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Jun 3, 2026

Bumps the most-gems group with 12 updates:

Package From To
aws-sdk-lambda 1.181.0 1.183.0
aws-sdk-sqs 1.115.0 1.116.0
aws-sdk-cloudwatch 1.138.0 1.139.0
aws-sdk-s3 1.224.0 1.225.0
aws-partitions 1.1253.0 1.1257.0
aws-sdk-core 3.249.0 3.251.0
aws-sdk-kms 1.128.0 1.129.0
console 1.35.1 1.36.0
elastic-transport 8.5.1 8.5.2
faraday-net_http 3.4.3 3.4.4
json 2.19.5 2.19.8
psych 5.3.1 5.4.0

Updates aws-sdk-lambda from 1.181.0 to 1.183.0

Changelog

Sourced from aws-sdk-lambda's changelog.

1.183.0 (2026-06-02)

  • Feature - Adds configuration for tag propagation to Lambda-managed resources.

1.182.0 (2026-06-01)

  • Feature - Adding new BDD representation of endpoint ruleset
Commits

Updates aws-sdk-sqs from 1.115.0 to 1.116.0

Changelog

Sourced from aws-sdk-sqs's changelog.

1.116.0 (2026-06-02)

  • Feature - Adding new BDD representation of endpoint ruleset
Commits

Updates aws-sdk-cloudwatch from 1.138.0 to 1.139.0

Changelog

Sourced from aws-sdk-cloudwatch's changelog.

1.139.0 (2026-06-02)

  • Feature - Adding new BDD representation of endpoint ruleset
Commits

Updates aws-sdk-s3 from 1.224.0 to 1.225.0

Changelog

Sourced from aws-sdk-s3's changelog.

1.225.0 (2026-06-02)

  • Feature - Adding new BDD representation of endpoint ruleset
Commits

Updates aws-partitions from 1.1253.0 to 1.1257.0

Changelog

Sourced from aws-partitions's changelog.

1.1257.0 (2026-06-03)

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

1.1256.0 (2026-06-02)

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

1.1255.0 (2026-05-29)

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

1.1254.0 (2026-05-28)

  • Feature - Added support for enumerating regions for Aws::Resiliencehubv2.
Commits

Updates aws-sdk-core from 3.249.0 to 3.251.0

Changelog

Sourced from aws-sdk-core's changelog.

3.251.0 (2026-06-02)

  • Feature - Adding new BDD representation of endpoint ruleset

3.250.0 (2026-05-28)

  • Feature - Adding new BDD representation of endpoint ruleset

  • Issue - Prevent unbounded recursion in CBOR decoder that could cause process termination on malformed responses.

Commits

Updates aws-sdk-kms from 1.128.0 to 1.129.0

Changelog

Sourced from aws-sdk-kms's changelog.

1.129.0 (2026-06-01)

  • Feature - Adding new BDD representation of endpoint ruleset
Commits

Updates console from 1.35.1 to 1.36.0

Release notes

Sourced from console's releases.

v1.36.0

  • Add a size_limit to Console::Format::Safe (default 16KiB) which rebuilds oversized records field-by-field, keeping as many top-level fields as fit within the limit.
  • Degraded fields are recorded in a truncated object that maps each field name to why it was truncated: true (dropped for size) or the error (the value could not be serialized directly and a safe representation was kept in its place).
  • Rename Console::Format::Safe's limit: to depth_limit: (with a deprecated limit: alias) to clarify its purpose alongside the new size_limit:.
Changelog

Sourced from console's changelog.

v1.36.0

  • Add a size_limit to Console::Format::Safe (default 16KiB) which rebuilds oversized records field-by-field, keeping as many top-level fields as fit within the limit.
  • Degraded fields are recorded in a truncated object that maps each field name to why it was truncated: true (dropped for size) or the error (the value could not be serialized directly and a safe representation was kept in its place).
  • Rename Console::Format::Safe's limit: to depth_limit: (with a deprecated limit: alias) to clarify its purpose alongside the new size_limit:.

v1.35.0

  • Fix handling of Errno::ENODEV errors when calculating the width of a terminal that was been re-opened to File::NULL.

v1.34.1

  • Add process_id to serialized output records for clarity (pid is still included for backwards compatibility).
    • Add object_id to serialized output records only when the subject is not a string or class/module.

v1.34.0

  • Allow Console::Compatible::Logger#add to accept **options.

v1.32.0

  • Add fiber_id to serialized output records to help identify which fiber logged the message.
  • Ractor support appears broken in older Ruby versions, so we now require Ruby 3.4 or later for Ractor compatibility, if you need Ractor support.

v1.31.0

Ractor compatibility.

The console library now works correctly with Ruby's Ractor concurrency model. Previously, attempting to use console logging within Ractors would fail with errors about non-shareable objects. This has been fixed by ensuring the default configuration is properly frozen.

# This now works without errors:
ractor = Ractor.new do
	require "console"
	Console.info("Hello from Ractor!")
	"Ractor completed successfully"
end
result = ractor.take
puts result # => 'Ractor completed successfully'

The fix is minimal and maintains full backward compatibility while enabling safe parallel logging across multiple Ractors.

Symbol log level compatibility.

Previously, returning symbols from custom log_level methods in configuration files would cause runtime errors like "comparison of Integer with :debug failed". This has been fixed to properly convert symbols to their corresponding integer values.

# config/console.rb - This now works correctly:
</tr></table> 

... (truncated)

Commits

Updates elastic-transport from 8.5.1 to 8.5.2

Release notes

Sourced from elastic-transport's releases.

v8.5.2

  • Minor refactor to curb implementation.
  • Updated yard development dependency to > 0.9.42.
  • Fix multi_json deprecation warnings. Some deprecations were introduced in multi_json 1.21.0. Pull Request: #112.
  • Reduced gem size. Pull Request: #114.
  • Addresses duplicate content-type header in Manticore. Pull Request: #115.
Commits
  • 2f4b0ce Bumps version to 8.5.2 and updates CHANGELOG
  • a86ebe7 [CI] Updates GitHub Actions
  • 0537f4f Fix multi_json deprecation warnings
  • 7eec945 Reduce gem size (#114)
  • 162be46 Refactors tests for content-type
  • f0fa496 Addresses duplicate content-type header in Manticore
  • ccdd640 Updates Gemfiles
  • 30a32cc [CI] Bumps actions/checkout to v6
  • 6d101ca Updates yard development dependency to > 0.9.42
  • See full diff in compare view

Updates faraday-net_http from 3.4.3 to 3.4.4

Release notes

Sourced from faraday-net_http's releases.

v3.4.4

What's Changed

New Contributors

Full Changelog: lostisland/faraday-net_http@v3.4.3...v3.4.4

Commits

Updates json from 2.19.5 to 2.19.8

Release notes

Sourced from json's releases.

v2.19.7

What's Changed

  • Fix some more edge cases with out of range floats.
  • Ensure the string provided to JSON.parse can't be mutated during parsing.
  • Add missing write barriers in State#dup.
  • Further validate generator depth config.

Full Changelog: ruby/json@v2.19.6...v2.19.7

v2.19.6

What's Changed

  • Cleanly handle overly large depth generator argument.
  • Add missing write barrier in ParserConfig.

Full Changelog: ruby/json@v2.19.5...v2.19.6

Changelog

Sourced from json's changelog.

2026-06-03 (2.19.8)

  • Fix 1-byte buffer overread on EOS errors.
  • Handle invalid types passed as max_nesting option.

2026-05-28 (2.19.7)

  • Fix some more edge cases with out of range floats.
  • Ensure the string provided to JSON.parse can't be mutated during parsing.
  • Add missing write barriers in State#dup.
  • Further validate generator depth config.

2026-05-28 (2.19.6)

  • Cleanly handle overly large depth generator argument.
  • Add missing write barrier in ParserConfig.
Commits
  • 5233dd9 Release 2.19.8
  • 3f44b26 Prevent buffer over-read when generating EOF error
  • be8d068 Handle invalid types passed as max_nesting option
  • 59501c0 Get rid of all_images gem
  • c7a7b2b Add a security note in README
  • ab6c8f2 Release 2.19.7
  • f033b9d Fix some more edge cases with out of range floats
  • 5ca8a67 parser.c: Ensure the user provided string can't be mutated
  • dba1d88 generator.c: trigger write barriers in cState_init_copy
  • e8800cb Further validate generator depth config
  • Additional commits viewable in compare view

Updates psych from 5.3.1 to 5.4.0

Commits
  • f7066d8 v5.4.0
  • 6201ae1 Round the io_reader clamp down to a character boundary
  • 99ecd94 Clamp io_reader copy to libyaml's buffer size
  • 7a73514 Merge pull request #794 from ruby/dependabot/github_actions/step-security/har...
  • cada6bb Bump step-security/harden-runner from 2.19.3 to 2.19.4
  • c06a2c5 Merge pull request #793 from ruby/dependabot/github_actions/step-security/har...
  • 4a7ca7e Bump step-security/harden-runner from 2.19.1 to 2.19.3
  • 790494a Merge pull request #792 from ruby/dependabot/github_actions/step-security/har...
  • 16d8518 Bump step-security/harden-runner from 2.19.0 to 2.19.1
  • 1366654 Bump step-security/harden-runner from 2.17.0 to 2.19.0
  • 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 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 most-gems group with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [aws-sdk-lambda](https://github.com/aws/aws-sdk-ruby) | `1.181.0` | `1.183.0` |
| [aws-sdk-sqs](https://github.com/aws/aws-sdk-ruby) | `1.115.0` | `1.116.0` |
| [aws-sdk-cloudwatch](https://github.com/aws/aws-sdk-ruby) | `1.138.0` | `1.139.0` |
| [aws-sdk-s3](https://github.com/aws/aws-sdk-ruby) | `1.224.0` | `1.225.0` |
| [aws-partitions](https://github.com/aws/aws-sdk-ruby) | `1.1253.0` | `1.1257.0` |
| [aws-sdk-core](https://github.com/aws/aws-sdk-ruby) | `3.249.0` | `3.251.0` |
| [aws-sdk-kms](https://github.com/aws/aws-sdk-ruby) | `1.128.0` | `1.129.0` |
| [console](https://github.com/socketry/console) | `1.35.1` | `1.36.0` |
| [elastic-transport](https://github.com/elastic/elastic-transport-ruby) | `8.5.1` | `8.5.2` |
| [faraday-net_http](https://github.com/lostisland/faraday-net_http) | `3.4.3` | `3.4.4` |
| [json](https://github.com/ruby/json) | `2.19.5` | `2.19.8` |
| [psych](https://github.com/ruby/psych) | `5.3.1` | `5.4.0` |


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

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

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

Updates `aws-sdk-s3` from 1.224.0 to 1.225.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 `aws-partitions` from 1.1253.0 to 1.1257.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.249.0 to 3.251.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-core/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-ruby/commits)

Updates `aws-sdk-kms` from 1.128.0 to 1.129.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 `console` from 1.35.1 to 1.36.0
- [Release notes](https://github.com/socketry/console/releases)
- [Changelog](https://github.com/socketry/console/blob/main/releases.md)
- [Commits](socketry/console@v1.35.1...v1.36.0)

Updates `elastic-transport` from 8.5.1 to 8.5.2
- [Release notes](https://github.com/elastic/elastic-transport-ruby/releases)
- [Changelog](https://github.com/elastic/elastic-transport-ruby/blob/main/CHANGELOG.md)
- [Commits](elastic/elastic-transport-ruby@v8.5.1...v8.5.2)

Updates `faraday-net_http` from 3.4.3 to 3.4.4
- [Release notes](https://github.com/lostisland/faraday-net_http/releases)
- [Commits](lostisland/faraday-net_http@v3.4.3...v3.4.4)

Updates `json` from 2.19.5 to 2.19.8
- [Release notes](https://github.com/ruby/json/releases)
- [Changelog](https://github.com/ruby/json/blob/master/CHANGES.md)
- [Commits](ruby/json@v2.19.5...v2.19.8)

Updates `psych` from 5.3.1 to 5.4.0
- [Release notes](https://github.com/ruby/psych/releases)
- [Commits](ruby/psych@v5.3.1...v5.4.0)

---
updated-dependencies:
- dependency-name: aws-sdk-lambda
  dependency-version: 1.183.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: most-gems
- dependency-name: aws-sdk-sqs
  dependency-version: 1.116.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: most-gems
- dependency-name: aws-sdk-cloudwatch
  dependency-version: 1.139.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: most-gems
- dependency-name: aws-sdk-s3
  dependency-version: 1.225.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: most-gems
- dependency-name: aws-partitions
  dependency-version: 1.1257.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: most-gems
- dependency-name: aws-sdk-core
  dependency-version: 3.251.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: most-gems
- dependency-name: aws-sdk-kms
  dependency-version: 1.129.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: most-gems
- dependency-name: console
  dependency-version: 1.36.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: most-gems
- dependency-name: elastic-transport
  dependency-version: 8.5.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: most-gems
- dependency-name: faraday-net_http
  dependency-version: 3.4.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: most-gems
- dependency-name: json
  dependency-version: 2.19.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: most-gems
- dependency-name: psych
  dependency-version: 5.4.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: most-gems
...

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 Jun 3, 2026
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jun 3, 2026
@dependabot dependabot Bot requested review from bsorbo, jwils and jwondrusch as code owners June 3, 2026 12:46
@dependabot dependabot Bot added the ruby Pull requests that update Ruby code label Jun 3, 2026
@dependabot dependabot Bot requested a review from myronmarston as a code owner June 3, 2026 12:46
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