Skip to content

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

Merged
farski merged 1 commit into
mainfrom
dependabot/bundler/all-bundler-12712f97aa
Jun 10, 2026
Merged

Bump the all-bundler group across 3 directories with 6 updates#236
farski merged 1 commit into
mainfrom
dependabot/bundler/all-bundler-12712f97aa

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the all-bundler group with 1 update in the / directory: aws-sdk-states.
Bumps the all-bundler group with 6 updates in the /src/containers/ftp directory:

Package From To
aws-sdk-states 1.108.0 1.109.0
aws-sdk-cloudwatch 1.138.0 1.139.0
aws-sdk-ec2 1.620.0 1.621.0
aws-sdk-ecs 1.234.0 1.235.0
aws-sdk-s3 1.224.0 1.225.0
rubocop 1.86.2 1.87.0

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

Updates aws-sdk-states from 1.108.0 to 1.109.0

Changelog

Sourced from aws-sdk-states's changelog.

1.109.0 (2026-06-02)

  • Feature - Adding new BDD representation of endpoint ruleset
Commits

Updates aws-sdk-states from 1.108.0 to 1.109.0

Changelog

Sourced from aws-sdk-states's changelog.

1.109.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-ec2 from 1.620.0 to 1.621.0

Changelog

Sourced from aws-sdk-ec2's changelog.

1.621.0 (2026-06-02)

  • Feature - Amazon EC2 now supports self-service cancellation of future-dated Capacity Reservations. A cancellation charge applies based on remaining commitment. Customers can generate a cancellation quote to review charges before confirming.
Commits

Updates aws-sdk-ecs from 1.234.0 to 1.235.0

Changelog

Sourced from aws-sdk-ecs's changelog.

1.235.0 (2026-06-01)

  • 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 rubocop from 1.86.2 to 1.87.0

Release notes

Sourced from rubocop's releases.

RuboCop v1.87.0

New features

  • #15167: Add --enable-all-cops and --disable-all-cops command line options that override AllCops/EnabledByDefault and AllCops/DisabledByDefault in configuration files. (@​koic)
  • #15185: Make Layout/EmptyLineAfterGuardClause accept the new # simplecov:disable and # simplecov:enable directive comments. (@​koic)
  • #15173: Add optional Rubydex integration via AllCops/UseProjectIndex to enable cross-file detection in Lint/ConstantReassignment (experimental). (@​koic)

Bug fixes

  • #15168: Fix false positives in Lint/ParenthesesAsGroupedExpression when the first argument is a call-like expression with its own parentheses, such as yield(...). (@​koic)
  • #15188: Fix false positives in Style/YodaCondition when one side is an array or hash literal containing non-literal elements. (@​koic)
  • #15182: Fix incorrect autocorrect for Style/Alias causing a syntax error when the return value of alias_method is used, such as an argument to public, private, protected, or module_function, or the right-hand side of an assignment. (@​koic)
  • #15174: Fix incorrect autocorrect for Style/ClassAndModuleChildren causing a syntax error when the namespace contains a method call (e.g., class self.class::Foo; end). (@​koic)
  • #15180: Fix incorrect autocorrect for Style/FileWrite causing a syntax error when the written heredoc is chained with another method call. (@​koic)
  • #15186: Fix incorrect autocorrect for Style/HashConversion causing a syntax error when Hash[...] is passed an anonymous splat (*). (@​koic)
  • #15192: Fix incorrect autocorrect for Style/StructInheritance causing a syntax error when the inherited Struct.new is called without parentheses. (@​koic)
  • #15170: Fix an infinite loop for Layout/RedundantLineBreak when a single-line block is chained with a safe navigation method call. (@​koic)
  • #15175: Fix Layout/IndentationWidth to indent block bodies relative to the method selector for trailing-dot multi-line method chains when EnforcedStyleAlignWith is relative_to_receiver. (@​ddbrendan)
  • #15135: Fix incorrect autocorrect for Style/RedundantParentheses that swallowed chained method calls into a trailing inline comment on the line above the closing parenthesis. (@​hammadxcm)
  • #15184: Fix various typos and grammar mistakes in documentation and cop descriptions. (@​bbatsov)

Changes

  • #15171: Cache FilePatterns#match? results per path so cops sharing the same Include/Exclude configuration do not each repeat File.fnmatch? work on every file. (@​Darhazer)
Changelog

Sourced from rubocop's changelog.

1.87.0 (2026-05-30)

New features

  • #15167: Add --enable-all-cops and --disable-all-cops command line options that override AllCops/EnabledByDefault and AllCops/DisabledByDefault in configuration files. ([@​koic][])
  • #15185: Make Layout/EmptyLineAfterGuardClause accept the new # simplecov:disable and # simplecov:enable directive comments. ([@​koic][])
  • #15173: Add optional Rubydex integration via AllCops/UseProjectIndex to enable cross-file detection in Lint/ConstantReassignment (experimental). ([@​koic][])

Bug fixes

  • #15168: Fix false positives in Lint/ParenthesesAsGroupedExpression when the first argument is a call-like expression with its own parentheses, such as yield(...). ([@​koic][])
  • #15188: Fix false positives in Style/YodaCondition when one side is an array or hash literal containing non-literal elements. ([@​koic][])
  • #15182: Fix incorrect autocorrect for Style/Alias causing a syntax error when the return value of alias_method is used, such as an argument to public, private, protected, or module_function, or the right-hand side of an assignment. ([@​koic][])
  • #15174: Fix incorrect autocorrect for Style/ClassAndModuleChildren causing a syntax error when the namespace contains a method call (e.g., class self.class::Foo; end). ([@​koic][])
  • #15180: Fix incorrect autocorrect for Style/FileWrite causing a syntax error when the written heredoc is chained with another method call. ([@​koic][])
  • #15186: Fix incorrect autocorrect for Style/HashConversion causing a syntax error when Hash[...] is passed an anonymous splat (*). ([@​koic][])
  • #15192: Fix incorrect autocorrect for Style/StructInheritance causing a syntax error when the inherited Struct.new is called without parentheses. ([@​koic][])
  • #15170: Fix an infinite loop for Layout/RedundantLineBreak when a single-line block is chained with a safe navigation method call. ([@​koic][])
  • #15175: Fix Layout/IndentationWidth to indent block bodies relative to the method selector for trailing-dot multi-line method chains when EnforcedStyleAlignWith is relative_to_receiver. ([@​ddbrendan][])
  • #15135: Fix incorrect autocorrect for Style/RedundantParentheses that swallowed chained method calls into a trailing inline comment on the line above the closing parenthesis. ([@​hammadxcm][])
  • #15184: Fix various typos and grammar mistakes in documentation and cop descriptions. ([@​bbatsov][])

Changes

  • #15171: Cache FilePatterns#match? results per path so cops sharing the same Include/Exclude configuration do not each repeat File.fnmatch? work on every file. ([@​Darhazer][])
Commits
  • e5b788d Cut 1.87
  • 65aece8 Update Changelog
  • 810c790 Fix incorrect autocorrect for Style/StructInheritance cop
  • 1ec0554 [Fix #15185] Make Layout/EmptyLineAfterGuardClause accept new SimpleCov dir...
  • 11cd569 Merge pull request #15190 from koic/fix_false_positives_in_style_yoda_condition
  • ceff136 [Fix #15188] Fix false positives for Style/YodaCondition
  • 4a12596 Fix incorrect autocorrect for Style/HashConversion cop
  • 4801e9d Merge pull request #15184 from rubocop/fix-typos-and-grammar-in-docs
  • bfe7dc5 Fix various typos and grammar mistakes in documentation
  • 6988aa4 Merge pull request #15182 from koic/fix_incorrect_autocorrect_for_style_alias...
  • Additional commits viewable in compare view

Updates aws-sdk-states from 1.108.0 to 1.109.0

Changelog

Sourced from aws-sdk-states's changelog.

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

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: [aws-sdk-states](https://github.com/aws/aws-sdk-ruby).
Bumps the all-bundler group with 6 updates in the /src/containers/ftp directory:

| Package | From | To |
| --- | --- | --- |
| [aws-sdk-states](https://github.com/aws/aws-sdk-ruby) | `1.108.0` | `1.109.0` |
| [aws-sdk-cloudwatch](https://github.com/aws/aws-sdk-ruby) | `1.138.0` | `1.139.0` |
| [aws-sdk-ec2](https://github.com/aws/aws-sdk-ruby) | `1.620.0` | `1.621.0` |
| [aws-sdk-ecs](https://github.com/aws/aws-sdk-ruby) | `1.234.0` | `1.235.0` |
| [aws-sdk-s3](https://github.com/aws/aws-sdk-ruby) | `1.224.0` | `1.225.0` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.86.2` | `1.87.0` |

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


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

Updates `aws-sdk-states` from 1.108.0 to 1.109.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-states/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-ec2` from 1.620.0 to 1.621.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.234.0 to 1.235.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.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 `rubocop` from 1.86.2 to 1.87.0
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.86.2...v1.87.0)

Updates `aws-sdk-states` from 1.108.0 to 1.109.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-states/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)

---
updated-dependencies:
- dependency-name: aws-sdk-states
  dependency-version: 1.109.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-bundler
- dependency-name: aws-sdk-states
  dependency-version: 1.109.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-bundler
- dependency-name: aws-sdk-cloudwatch
  dependency-version: 1.139.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-bundler
- dependency-name: aws-sdk-ec2
  dependency-version: 1.621.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-bundler
- dependency-name: aws-sdk-ecs
  dependency-version: 1.235.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-bundler
- dependency-name: aws-sdk-s3
  dependency-version: 1.225.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-bundler
- dependency-name: rubocop
  dependency-version: 1.87.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-bundler
- dependency-name: aws-sdk-states
  dependency-version: 1.109.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-bundler
- dependency-name: aws-sdk-cloudwatch
  dependency-version: 1.139.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-bundler
- dependency-name: aws-sdk-s3
  dependency-version: 1.225.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 Jun 4, 2026
@farski farski merged commit a59f03a into main Jun 10, 2026
4 checks passed
@dependabot dependabot Bot deleted the dependabot/bundler/all-bundler-12712f97aa branch June 10, 2026 14:08
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