Skip to content

Bump the all-bundler group across 3 directories with 6 updates#210

Merged
farski merged 1 commit intomainfrom
dependabot/bundler/all-bundler-06f0d85b43
Mar 16, 2026
Merged

Bump the all-bundler group across 3 directories with 6 updates#210
farski merged 1 commit intomainfrom
dependabot/bundler/all-bundler-06f0d85b43

Conversation

@dependabot
Copy link
Contributor

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

Bumps the all-bundler group with 1 update in the / directory: minitest.
Bumps the all-bundler group with 5 updates in the /src/containers/ftp directory:

Package From To
aws-sdk-cloudwatch 1.130.0 1.131.0
aws-sdk-ec2 1.603.0 1.607.0
aws-sdk-ecs 1.220.0 1.222.0
aws-sdk-s3 1.213.0 1.216.0
rubocop 1.84.2 1.85.1

Bumps the all-bundler group with 2 updates in the /src/containers/transcode directory: aws-sdk-cloudwatch and aws-sdk-s3.

Updates minitest from 6.0.1 to 6.0.2

Changelog

Sourced from minitest's changelog.

=== 6.0.2 / 2026-02-23

  • 7 bug fixes:

    • Added missing drb dependency from minitest-server. (y-yagi)
    • Cleaned up bisect's sub-commands to load files directly, not ruby+require.
    • Fixed bisect to use same cmd ($0) to run tests as original invocation.
    • load server_plugin if server is loaded. (y-yagi)
    • Manipulate local args instead of ARGV in Sprint.run.
    • Only show --bisect in usage if using minitest.
    • Remove -Itest:lib from bisect's rb_flags since bin/minitest adds them.
Commits
  • 339492c prepped for release
  • 73eb48e Fixed some doco coverage... still running into tons of pain with rdoc.
  • 58387c7 - Fixed bisect to use same cmd ($0) to run tests as original invocation.
  • 2a529a0 y-yagi is smart and I am dum
  • cf465a6 - Only show --bisect in usage if using minitest.
  • e5ad492 Push up server_plugin fix to minitest.rb guarded by env.
  • a7aeb10 Fixed up tests to be line independent.
  • 59ac1fa - MT6: load server_plugin if server is loaded. (y-yagi)
  • dba350e - Manipulate local args instead of ARGV in Sprint.run.
  • 8e008ed Added new rdoc rsync location.
  • Additional commits viewable in compare view

Updates aws-sdk-cloudwatch from 1.130.0 to 1.131.0

Changelog

Sourced from aws-sdk-cloudwatch's changelog.

1.131.0 (2026-02-24)

  • Feature - This release adds the APIs (PutAlarmMuteRule, ListAlarmMuteRules, GetAlarmMuteRule and DeleteAlarmMuteRule) to manage a new Cloudwatch resource, AlarmMuteRules. AlarmMuteRules allow customers to temporarily mute alarm notifications during expected downtime periods.
Commits

Updates aws-sdk-ec2 from 1.603.0 to 1.607.0

Changelog

Sourced from aws-sdk-ec2's changelog.

1.607.0 (2026-03-05)

  • Feature - Added metadata field to CapacityAllocation.

1.606.0 (2026-02-26)

  • Feature - Add c8id, m8id and hpc8a instance types.

1.605.0 (2026-02-25)

  • Feature - Add support for EC2 Capacity Blocks in Local Zones.

1.604.0 (2026-02-24)

  • Feature - Adds httpTokensEnforced property to ModifyInstanceMetadataDefaults API. Set per account or manage organization-wide using declarative policies to prevent IMDSv1-enabled instance launch and block attempts to enable IMDSv1 on existing IMDSv2-only instances.
Commits

Updates aws-sdk-ecs from 1.220.0 to 1.222.0

Changelog

Sourced from aws-sdk-ecs's changelog.

1.222.0 (2026-02-26)

  • Feature - Adding support for Capacity Reservations for ECS Managed Instances by introducing a new "capacityOptionType" value of "RESERVED" and new field "capacityReservations" for CreateCapacityProvider and UpdateCapacityProvider APIs.

1.221.0 (2026-02-20)

  • Feature - Migrated to Smithy. No functional changes
Commits

Updates aws-sdk-s3 from 1.213.0 to 1.216.0

Changelog

Sourced from aws-sdk-s3's changelog.

1.216.0 (2026-03-12)

  • Feature - Adds support for account regional namespaces for general purpose buckets. The account regional namespace is a reserved subdivision of the global bucket namespace where only your account can create general purpose buckets.

1.215.0 (2026-03-05)

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

  • Issue - Fix LoadError when requiring aws-sdk-s3 due to missing directory_progress file.

1.214.0 (2026-03-04)

  • Feature - Added #upload_directory and #download_directory to Aws::S3::TransferManager for bulk directory transfers.
Commits

Updates rubocop from 1.84.2 to 1.85.1

Release notes

Sourced from rubocop's releases.

RuboCop v1.85.1

Bug fixes

  • #14958: Fix false positives in Style/FileOpen when File.open is passed as an argument or returned from a method. (@​sferik)
  • #14973: Fix Style/ReduceToHash false positive when accumulator is read in key/value. (@​sferik)
  • #14964: Fix false positives in Style/RedundantParentheses when parenthesizing a range in a block body. (@​koic)

Changes

RuboCop v1.85.0

New features

Bug fixes

  • #14829: Allow classes without a superclass in Style/EmptyClassDefinition. (@​koic)
  • #14873: Fix an error in Style/NegatedWhile when the last expression of an until condition is negated. (@​koic)
  • #14827: Improve Style/EmptyClassDefinition message wording. ([@​bbatsov][])
  • #14800: Fix false obsolete configuration error for extracted cops when loaded as plugins. ([@​bbatsov][])
  • #14928: Fix a false positive for Lint/Void when nil is used in case branch. ([@​5hun-s][])
  • #14857: Fix false positives in Style/IfUnlessModifier when modifier forms are used inside string interpolations. (@​koic)
  • #8773: Fix false positives in Style/HashTransformKeys and Style/HashTransformValues. (@​sferik)
  • #6963: Fix false positives in Lint/Void for each blocks where the return value may be meaningful (e.g., Enumerator#each). (@​sferik)
  • #14931: Ignore directive comments inside comments. (@​koic)
  • #14834: Fix Layout/IndentationWidth false positive for chained method blocks when EnforcedStyleAlignWith is start_of_line. ([@​krororo][])
  • #14756: Fix Lint/Void to detect void expressions in case/when branches. ([@​bbatsov][])
  • #14874: Fix a Parser::ClobberingError in Lint/UselessAssignment when autocorrecting a useless assignment that wraps a block containing another useless assignment. (@​koic)
  • #14880: Fix a false negative in Layout/MultilineAssignmentLayout when using numblock or itblock with SupportedTypes: ['block']. ([@​bbatsov][])

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.85.1 (2026-03-03)

Bug fixes

  • #14958: Fix false positives in Style/FileOpen when File.open is passed as an argument or returned from a method. ([@​sferik][])
  • #14973: Fix Style/ReduceToHash false positive when accumulator is read in key/value. ([@​sferik][])
  • #14964: Fix false positives in Style/RedundantParentheses when parenthesizing a range in a block body. ([@​koic][])

Changes

1.85.0 (2026-02-26)

New features

Bug fixes

  • #14829: Allow classes without a superclass in Style/EmptyClassDefinition. ([@​koic][])
  • #14873: Fix an error in Style/NegatedWhile when the last expression of an until condition is negated. ([@​koic][])
  • #14827: Improve Style/EmptyClassDefinition message wording. ([@​bbatsov][])
  • #14800: Fix false obsolete configuration error for extracted cops when loaded as plugins. ([@​bbatsov][])
  • #14928: Fix a false positive for Lint/Void when nil is used in case branch. ([@​5hun-s][])
  • #14857: Fix false positives in Style/IfUnlessModifier when modifier forms are used inside string interpolations. ([@​koic][])
  • #8773: Fix false positives in Style/HashTransformKeys and Style/HashTransformValues. ([@​sferik][])
  • #6963: Fix false positives in Lint/Void for each blocks where the return value may be meaningful (e.g., Enumerator#each). ([@​sferik][])
  • #14931: Ignore directive comments inside comments. ([@​koic][])
  • #14834: Fix Layout/IndentationWidth false positive for chained method blocks when EnforcedStyleAlignWith is start_of_line. ([@​krororo][])
  • #14756: Fix Lint/Void to detect void expressions in case/when branches. ([@​bbatsov][])
  • #14874: Fix a Parser::ClobberingError in Lint/UselessAssignment when autocorrecting a useless assignment that wraps a block containing another useless assignment. ([@​koic][])
  • #14880: Fix a false negative in Layout/MultilineAssignmentLayout when using numblock or itblock with SupportedTypes: ['block']. ([@​bbatsov][])
  • #11462: Fix over-indentation when autocorrecting nested hashes with Layout/FirstHashElementIndentation. ([@​ydakuka][])
  • #14880: Recognize block on different line from left side of multi-line assignment in Layout/MultilineAssignmentLayout. ([@​sanfrecce-osaka][])

... (truncated)

Commits
  • fd07672 Cut 1.85.1
  • 5c41f90 Update Changelog
  • 5e8e492 Merge pull request #14975 from sferik/fix_14973
  • 90f3780 Fix Style/ReduceToHash false positive when accumulator is read in key/value
  • 90c7959 Merge pull request #14972 from lovro-bikic/relevant-options-digest-cache
  • 3c20e8d Cache relevant options digest
  • e305f79 Merge pull request #14969 from lovro-bikic/autoload-formatter-constants
  • 3f0a304 Autoload formatters; they're required only when actually used
  • eb973f4 Merge pull request #14966 from koic/fix_false_positives_in_style_redundant_pa...
  • 3338a40 [Fix #14964] Fix false positives in Style/RedundantParentheses
  • Additional commits viewable in compare view

Updates aws-sdk-cloudwatch from 1.130.0 to 1.131.0

Changelog

Sourced from aws-sdk-cloudwatch's changelog.

1.131.0 (2026-02-24)

  • Feature - This release adds the APIs (PutAlarmMuteRule, ListAlarmMuteRules, GetAlarmMuteRule and DeleteAlarmMuteRule) to manage a new Cloudwatch resource, AlarmMuteRules. AlarmMuteRules allow customers to temporarily mute alarm notifications during expected downtime periods.
Commits

Updates aws-sdk-s3 from 1.213.0 to 1.216.0

Changelog

Sourced from aws-sdk-s3's changelog.

1.216.0 (2026-03-12)

  • Feature - Adds support for account regional namespaces for general purpose buckets. The account regional namespace is a reserved subdivision of the global bucket namespace where only your account can create general purpose buckets.

1.215.0 (2026-03-05)

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

  • Issue - Fix LoadError when requiring aws-sdk-s3 due to missing directory_progress file.

1.214.0 (2026-03-04)

  • Feature - Added #upload_directory and #download_directory to Aws::S3::TransferManager for bulk directory transfers.
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

Bumps the all-bundler group with 1 update in the / directory: [minitest](https://github.com/minitest/minitest).
Bumps the all-bundler group with 5 updates in the /src/containers/ftp directory:

| Package | From | To |
| --- | --- | --- |
| [aws-sdk-cloudwatch](https://github.com/aws/aws-sdk-ruby) | `1.130.0` | `1.131.0` |
| [aws-sdk-ec2](https://github.com/aws/aws-sdk-ruby) | `1.603.0` | `1.607.0` |
| [aws-sdk-ecs](https://github.com/aws/aws-sdk-ruby) | `1.220.0` | `1.222.0` |
| [aws-sdk-s3](https://github.com/aws/aws-sdk-ruby) | `1.213.0` | `1.216.0` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.84.2` | `1.85.1` |

Bumps the all-bundler group with 2 updates in the /src/containers/transcode directory: [aws-sdk-cloudwatch](https://github.com/aws/aws-sdk-ruby) and [aws-sdk-s3](https://github.com/aws/aws-sdk-ruby).


Updates `minitest` from 6.0.1 to 6.0.2
- [Changelog](https://github.com/minitest/minitest/blob/master/History.rdoc)
- [Commits](minitest/minitest@v6.0.1...v6.0.2)

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

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

Updates `aws-sdk-s3` from 1.213.0 to 1.216.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 `rubocop` from 1.84.2 to 1.85.1
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.84.2...v1.85.1)

Updates `aws-sdk-cloudwatch` from 1.130.0 to 1.131.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.213.0 to 1.216.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)

---
updated-dependencies:
- dependency-name: minitest
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-bundler
- dependency-name: aws-sdk-cloudwatch
  dependency-version: 1.131.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-bundler
- dependency-name: aws-sdk-ec2
  dependency-version: 1.607.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-bundler
- dependency-name: aws-sdk-ecs
  dependency-version: 1.222.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-bundler
- dependency-name: aws-sdk-s3
  dependency-version: 1.216.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-bundler
- dependency-name: rubocop
  dependency-version: 1.85.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-bundler
- dependency-name: aws-sdk-cloudwatch
  dependency-version: 1.131.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-bundler
- dependency-name: aws-sdk-s3
  dependency-version: 1.216.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-bundler
...

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 Mar 16, 2026
@farski farski merged commit 683d718 into main Mar 16, 2026
4 checks passed
@dependabot dependabot bot deleted the dependabot/bundler/all-bundler-06f0d85b43 branch March 16, 2026 13:31
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.

1 participant