Skip to content

build(deps): bump the per-dependency group across 1 directory with 3 updates#607

Merged
anakrish merged 1 commit intomainfrom
dependabot/bundler/bindings/ruby/per-dependency-1a6234188c
Feb 27, 2026
Merged

build(deps): bump the per-dependency group across 1 directory with 3 updates#607
anakrish merged 1 commit intomainfrom
dependabot/bundler/bindings/ruby/per-dependency-1a6234188c

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 26, 2026

Bumps the per-dependency group with 3 updates in the /bindings/ruby directory: minitest, rubocop and rubocop-minitest.

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 rubocop from 1.84.1 to 1.84.2

Release notes

Sourced from rubocop's releases.

RuboCop v1.84.2

Bug fixes

  • #14854: Fix a clobbering error in Style/BlockDelimiters when autocorrecting nested multi-line blocks with adjacent curly braces. (@​koic)
  • #14837: Fix an error for Style/IfUnlessModifier when the first value uses a normal if and the others use modifier if. (@​koic)
  • #14858: Fix an infinite loop error in Layout/FirstArgumentIndentation when first arguments are over-indented in nested method calls. (@​koic)
  • #14843: Fix an error in Layout/MultilineMethodCallIndentation when a multiline method call follows a hash access. (@​koic)
  • #14859: Fix an error in Layout/MultilineMethodCallIndentation when a multiline method call includes a keyword argument whose value is a method call with a block. (@​koic)
  • #14839: Fix a false positive for Layout/EmptyLinesAfterModuleInclusion when include is nested inside an array. (@​eugeneius)
  • #7436: Fix Style/FormatStringToken to not autocorrect strings outside of format method context in aggressive mode. (@​ydakuka)
  • #14841: Fix false negatives in Style/HashAsLastArrayItem when an array contains only a single hash element. (@​koic)
  • #14865: Fix false negatives in Style/MethodDefParentheses when using splat or forwarding arguments without parentheses. (@​koic)
  • #14833: Fix false positive for Layout/MultilineMethodCallIndentation when a multi-dot method chain is inside a hash pair value. (@​ydakuka)
  • #14847: Fix false positive for Layout/MultilineMethodCallIndentation when a method is chained after a single-line block. (@​ydakuka)
  • #14867: Fix Offense#highlighted_area for PseudoSourceRange locations. (@​rafaelfranca)
  • #14861: Fix an error in Style/IfUnlessModifier when the first value uses a normal if and the others use ternary operator. (@​koic)
  • #14816: Use toplevel cache configs for remote configuration files. (@​nekketsuuu)
Changelog

Sourced from rubocop's changelog.

1.84.2 (2026-02-12)

Bug fixes

  • #14854: Fix a clobbering error in Style/BlockDelimiters when autocorrecting nested multi-line blocks with adjacent curly braces. ([@​koic][])
  • #14837: Fix an error for Style/IfUnlessModifier when the first value uses a normal if and the others use modifier if. ([@​koic][])
  • #14858: Fix an infinite loop error in Layout/FirstArgumentIndentation when first arguments are over-indented in nested method calls. ([@​koic][])
  • #14843: Fix an error in Layout/MultilineMethodCallIndentation when a multiline method call follows a hash access. ([@​koic][])
  • #14859: Fix an error in Layout/MultilineMethodCallIndentation when a multiline method call includes a keyword argument whose value is a method call with a block. ([@​koic][])
  • #14839: Fix a false positive for Layout/EmptyLinesAfterModuleInclusion when include is nested inside an array. ([@​eugeneius][])
  • #7436: Fix Style/FormatStringToken to not autocorrect strings outside of format method context in aggressive mode. ([@​ydakuka][])
  • #14841: Fix false negatives in Style/HashAsLastArrayItem when an array contains only a single hash element. ([@​koic][])
  • #14865: Fix false negatives in Style/MethodDefParentheses when using splat or forwarding arguments without parentheses. ([@​koic][])
  • #14833: Fix false positive for Layout/MultilineMethodCallIndentation when a multi-dot method chain is inside a hash pair value. ([@​ydakuka][])
  • #14847: Fix false positive for Layout/MultilineMethodCallIndentation when a method is chained after a single-line block. ([@​ydakuka][])
  • #14867: Fix Offense#highlighted_area for PseudoSourceRange locations. ([@​rafaelfranca][])
  • #14861: Fix an error in Style/IfUnlessModifier when the first value uses a normal if and the others use ternary operator. ([@​koic][])
  • #14816: Use toplevel cache configs for remote configuration files. ([@​nekketsuuu][])
Commits
  • b210a6e Cut 1.84.2
  • b2e355b Update Changelog
  • c7a3c5e [Fix rubocop#7436] Fix Style/FormatStringToken to not autocorrect strings o...
  • 87b0ca4 [Fix rubocop#14847] Fix false positive for `Layout/MultilineMethodCallIndenta...
  • 429b640 [Fix rubocop#14833] Fix false positive for `Layout/MultilineMethodCallIndenta...
  • d1bf379 [Fix #14841] Fix false negatives in Style/HashAsLastArrayItem
  • a1157d2 [Fix #14816] Use toplevel cache configs for remote configuration files
  • 7849c22 Update changelog/fix_offense_highlighted_area_for_pseudo_source_range_locatio...
  • 1f8e439 Fix Offense#highlighted_area for PseudoSourceRange locations
  • 99422a0 [Fix #14858] Fix an error in Layout/FirstArgumentIndentation
  • Additional commits viewable in compare view

Updates rubocop-minitest from 0.38.2 to 0.39.1

Release notes

Sourced from rubocop-minitest's releases.

RuboCop Minitest v0.39.1

Bug fixes

  • #347: Fix false positives in Minitest/AssertIncludes and Minitest/RefuteIncludes cops. (@​koic)

RuboCop Minitest v0.39.0

Changes

  • #344: Disable Minitest/AssertEmptyLiteral by default. (@​koic)
  • #315: Make Minitest/AssertIncludes and Minitest/RefuteIncludes aware of key?, has_key?, and member? alias methods. (@​koic)
Changelog

Sourced from rubocop-minitest's changelog.

0.39.1 (2026-02-24)

Bug fixes

  • #347: Fix false positives in Minitest/AssertIncludes and Minitest/RefuteIncludes cops for key? and has_key? used with assert or refute. ([@​koic][])

0.39.0 (2026-02-24)

Changes

  • #344: Disable Minitest/AssertEmptyLiteral by default. ([@​koic][])
  • #315: Make Minitest/AssertIncludes and Minitest/RefuteIncludes aware of key?, has_key?, and member? alias methods. ([@​koic][])
Commits
  • 17b5474 Cut 0.39.1
  • d7a0f1e Update Changelog
  • 93a5474 Merge pull request #347 from koic/fix_false_positive_for_assert_includes_and_...
  • b8d8789 Fix false positives in Minitest/AssertIncludes and `Minitest/RefuteIncludes...
  • 9b577b6 Switch back docs version to master
  • 0f1a4f6 Cut 0.39.0
  • 1c01cf9 Update Changelog
  • bf38672 Merge pull request #346 from koic/disable_minitest_assert_empty_literal_by_de...
  • 7793f07 [Fix #344] Disable Minitest/AssertEmptyLiteral by default
  • c8f3fc5 Suppress RuboCop offenses
  • 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

…updates

Bumps the per-dependency group with 3 updates in the /bindings/ruby directory: [minitest](https://github.com/minitest/minitest), [rubocop](https://github.com/rubocop/rubocop) and [rubocop-minitest](https://github.com/rubocop/rubocop-minitest).


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 `rubocop` from 1.84.1 to 1.84.2
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.84.1...v1.84.2)

Updates `rubocop-minitest` from 0.38.2 to 0.39.1
- [Release notes](https://github.com/rubocop/rubocop-minitest/releases)
- [Changelog](https://github.com/rubocop/rubocop-minitest/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-minitest@v0.38.2...v0.39.1)

---
updated-dependencies:
- dependency-name: minitest
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: per-dependency
- dependency-name: rubocop
  dependency-version: 1.84.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: per-dependency
- dependency-name: rubocop-minitest
  dependency-version: 0.39.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: per-dependency
...

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 Feb 26, 2026
@anakrish anakrish merged commit 04bf417 into main Feb 27, 2026
43 checks passed
@dependabot dependabot bot deleted the dependabot/bundler/bindings/ruby/per-dependency-1a6234188c branch February 27, 2026 22:51
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