Skip to content

Bump the dev-dependencies group across 1 directory with 7 updates #12621

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 13, 2025

Bumps the dev-dependencies group with 7 updates in the /updater directory:

Package From To
debug 1.9.2 1.11.0
rspec 3.13.0 3.13.1
rubocop 1.67.0 1.78.0
rubocop-performance 1.22.1 1.25.0
rubocop-sorbet 0.8.7 0.10.5
turbo_tests 2.2.4 2.2.5
webmock 3.24.0 3.25.1

Updates debug from 1.9.2 to 1.11.0

Release notes

Sourced from debug's releases.

v1.11.0

What's Changed

New Contributors

Full Changelog: ruby/debug@v1.10.0...v1.11.0

v1.10.0

What's Changed

New Contributors

... (truncated)

Commits

Updates rspec from 3.13.0 to 3.13.1

Commits

Updates rubocop from 1.67.0 to 1.78.0

Release notes

Sourced from rubocop's releases.

RuboCop v1.78.0

New features

Bug fixes

  • #14343: Fix autocorrect code for Style/HashConversion to avoid syntax error. (@​koic)
  • #14346: Avoid requiring parentheses for Style/SingleLineMethods. (@​koic)
  • #14339: Fix bug where specifying --format disables parallelization. (@​r7kamura)
  • #14300: Fix false positives for Lint/DuplicateMethods cop when self-alias trick is used. (@​viralpraxis)
  • #14329: Fix false positives for Lint/LiteralAsCondition when a literal is used inside || in case condition. (@​koic)
  • #14326: Fix additional autocorrection errors in Style/HashConversion for nested Hash[] calls. (@​dvandersluis)
  • #14031: Honor --config options on server mode. (@​steiley)
  • #14319: Fix the following incorrect autocorrect for Lint/RedundantTypeConversion when using parentheses with no arguments or any arguments. (@​koic)
  • #14336: Fix incorrect autocorrect for Style/ItBlockParameter when using a single numbered parameter after multiple numbered parameters in a method chain. (@​koic)
  • #11782: Move pending cops warning out of ConfigLoader. (@​nobuyo)

Changes

  • #14318: Add WaywardPredicates config to Naming/PredicateMethod to handle methods that look like predicates but aren't. (@​dvandersluis)

RuboCop v1.77.0

New features

Bug fixes

  • #14306: Fix an error for Style/HashConversion when using nested Hash[]. (@​koic)
  • #14298: Fix an error for Style/SoleNestedConditional when autocorrecting nested if/unless/if. ([@​ssagara00][])
  • #14313: Fix a false positive for Layout/SpaceBeforeBrackets when call desugared Hash#[] to lvar receiver with a space around the dot. (@​koic)
  • #14292: Fix false positives for Style/RedundantParentheses when assigning a parenthesized one-line in pattern matching. (@​koic)
  • #14296: Fix false positives for Style/RedundantSelf when receiver and lvalue have the same name in or-assignment. (@​koic)
  • #14303: Fix Lint/SelfAssignment to allow inline RBS comments. ([@​Morriar][])
  • #14307: Fix Style/MethodCallWithArgsParentheses false positive on forwarded keyword argument with additional arguments. (@​viralpraxis)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.78.0 (2025-07-08)

New features

Bug fixes

  • #14343: Fix autocorrect code for Style/HashConversion to avoid syntax error. ([@​koic][])
  • #14346: Avoid requiring parentheses for Style/SingleLineMethods. ([@​koic][])
  • #14339: Fix bug where specifying --format disables parallelization. ([@​r7kamura][])
  • #14300: Fix false positives for Lint/DuplicateMethods cop when self-alias trick is used. ([@​viralpraxis][])
  • #14329: Fix false positives for Lint/LiteralAsCondition when a literal is used inside || in case condition. ([@​koic][])
  • #14326: Fix additional autocorrection errors in Style/HashConversion for nested Hash[] calls. ([@​dvandersluis][])
  • #14031: Honor --config options on server mode. ([@​steiley][])
  • #14319: Fix the following incorrect autocorrect for Lint/RedundantTypeConversion when using parentheses with no arguments or any arguments. ([@​koic][])
  • #14336: Fix incorrect autocorrect for Style/ItBlockParameter when using a single numbered parameter after multiple numbered parameters in a method chain. ([@​koic][])
  • #11782: Move pending cops warning out of ConfigLoader. ([@​nobuyo][])

Changes

  • #14318: Add WaywardPredicates config to Naming/PredicateMethod to handle methods that look like predicates but aren't. ([@​dvandersluis][])

1.77.0 (2025-06-20)

New features

Bug fixes

  • #14306: Fix an error for Style/HashConversion when using nested Hash[]. ([@​koic][])
  • #14298: Fix an error for Style/SoleNestedConditional when autocorrecting nested if/unless/if. ([@​ssagara00][])
  • #14313: Fix a false positive for Layout/SpaceBeforeBrackets when call desugared Hash#[] to lvar receiver with a space around the dot. ([@​koic][])
  • #14292: Fix false positives for Style/RedundantParentheses when assigning a parenthesized one-line in pattern matching. ([@​koic][])
  • #14296: Fix false positives for Style/RedundantSelf when receiver and lvalue have the same name in or-assignment. ([@​koic][])
  • #14303: Fix Lint/SelfAssignment to allow inline RBS comments. ([@​Morriar][])
  • #14307: Fix Style/MethodCallWithArgsParentheses false positive on forwarded keyword argument with additional arguments. ([@​viralpraxis][])
  • #14301: Fix autocorrection syntax error for multiline expressions in Style/RedundantParentheses. ([@​lovro-bikic][])

Changes

  • #14295: Update Naming/PredicateMethod to consider negation (!/not) as boolean values. ([@​dvandersluis][])

... (truncated)

Commits
  • dd441f4 Cut 1.78
  • 0687f04 Update Changelog
  • 9322c7d Tweak docstring
  • 2508d94 Fix false positives for Lint/DuplicateMethods when the self-alias trick is used
  • 9582c40 [Fix #11782] Move pending cops warning out of ConfigLoader
  • 6c863b3 [Fix #14346] Avoid requiring parentheses for Style/SingleLineMethods
  • 0b08bb8 Merge pull request #14343 from koic/fix_autocorrect_for_style_hash_conversion
  • 0ef54b5 Fix autocorrect for Style/HashConversion to avoid syntax error
  • 01fdcbb Remove redundant method call in def_node_matcher
  • a80d92b [Doc] Remove redundant blank line
  • Additional commits viewable in compare view

Updates rubocop-performance from 1.22.1 to 1.25.0

Release notes

Sourced from rubocop-performance's releases.

RuboCop Performance v1.25.0

New features

  • #496: Support it block parameter in Performance cops. (@​koic)

Bug fixes

  • #494: Fix Performance/FixedSize false positive when count is called with a numblock. (@​dvandersluis)
  • #492: Fix false positives for Performance/StringIdentifierArgument when using interpolated string argument. (@​koic)

Changes

  • #482: Change Performance/CollectionLiteralInLoop to not register offenses for Array#include? that are optimized directly in Ruby. (@​earlopain)

RuboCop Performance 1.24.0

New features

  • #490: Pluginfy RuboCop Performance. (@​koic)
  • #462: Add new Performance/ZipWithoutBlock cop that checks patterns like .map { |id| [id] } or .map { [_1] } and can replace them with .zip. (@​corsonknowles)

Bug fixes

RuboCop Performance 1.23.1

Bug fixes

  • #478: Fix Performance/RedundantStringChars cop error in case of implicit receiver. (@​viralpraxis)
  • #480: Fix Performance/Squeeze cop error on frozen AST string node value. (@​viralpraxis)

RuboCop Performance 1.23.0

New features

Changelog

Sourced from rubocop-performance's changelog.

1.25.0 (2025-04-01)

New features

  • #496: Support it block parameter in Performance cops. ([@​koic][])

Bug fixes

  • #494: Fix Performance/FixedSize false positive when count is called with a numblock. ([@​dvandersluis][])
  • #492: Fix false positives for Performance/StringIdentifierArgument when using interpolated string argument. ([@​koic][])

Changes

  • #482: Change Performance/CollectionLiteralInLoop to not register offenses for Array#include? that are optimized directly in Ruby. ([@​earlopain][])

1.24.0 (2025-02-16)

New features

  • #490: Pluginfy RuboCop Performance. ([@​koic][])
  • #462: Add new Performance/ZipWithoutBlock cop that checks patterns like .map { |id| [id] } or .map { [_1] } and can replace them with .zip. ([@​corsonknowles][])

Bug fixes

  • #484: Fix Performance/CaseWhenSplat cop error on when node without body. ([@​viralpraxis][])

1.23.1 (2025-01-04)

Bug fixes

  • #478: Fix Performance/RedundantStringChars cop error in case of implicit receiver. ([@​viralpraxis][])
  • #480: Fix Performance/Squeeze cop error on frozen AST string node value. ([@​viralpraxis][])

1.23.0 (2024-11-14)

New features

Commits
  • 1a7fa7c Cut 1.25.0
  • 9bbcc52 Update Changelog
  • 9e5a10a Merge pull request #496 from koic/support_itblock_in_performance_cops
  • cee374c Support it block parameter in Performance cops
  • 300b997 Merge pull request #494 from dvandersluis/fixed-size-blocks
  • d339b99 Fix Performance/FixedSize false positive when count is called with a `num...
  • b6a39f4 Merge pull request #493 from koic/fix_false_positives_for_performance_string_...
  • 8c368f6 [Fix #492] Fix false positives for Performance/StringIdentifierArgument
  • d842831 Automate the process of GitHub release creation
  • eb68f96 Merge pull request #488 from Earlopain/collection-literal-ruby34
  • Additional commits viewable in compare view

Updates rubocop-sorbet from 0.8.7 to 0.10.5

Release notes

Sourced from rubocop-sorbet's releases.

v0.10.5

What's Changed

🛠 Other Changes

New Contributors

Full Changelog: Shopify/rubocop-sorbet@v0.10.4...v0.10.5

v0.10.4

What's Changed

✨ Enhancements

Full Changelog: Shopify/rubocop-sorbet@v0.10.3...v0.10.4

v0.10.3

What's Changed

✨ Enhancements

🐛 Bug Fixes

Full Changelog: Shopify/rubocop-sorbet@v0.10.2...v0.10.3

v0.10.2

What's Changed

🛠 Other Changes

Resolved errors while executing Sorbet/EmptyLineAfterSig cop introduced in the previous version

New Contributors

Full Changelog: Shopify/rubocop-sorbet@v0.10.1...v0.10.2

... (truncated)

Commits
  • 7f984f2 Release v0.10.5
  • d7cd9fd Fix 0.10.4 version
  • b096e02 Merge pull request #328 from Shopify/enforce-rbs
  • 2378f0f Validate that style property is supported
  • 1966c71 Render block parameters in autocompletion
  • 0a3ba1c Apply style suggestions
  • d34194f Bump version to v0.10.4
  • ac2f94d Merge pull request #340 from Shopify/at-inline-assertions-cops
  • 10b66f1 Merge pull request #342 from Shopify/dependabot/bundler/minor-and-patch-a5f92...
  • ff0bfe7 Bump rubocop from 1.76.0 to 1.76.1 in the minor-and-patch group
  • Additional commits viewable in compare view

Updates turbo_tests from 2.2.4 to 2.2.5

Release notes

Sourced from turbo_tests's releases.

v2.2.5

What's Changed

Full Changelog: serpapi/turbo_tests@v2.2.4...v2.2.5

Commits
  • 7d4064e Update GitHub Actions workflow to use latest checkout and upload-artifact act...
  • 79a6743 Bump version to v2.2.5
  • da3fc60 Merge pull request #67 from hsbt/removed-obsoleted-code
  • ef03ee0 Merge pull request #66 from hsbt/support-env-executable
  • 7f7d5aa Replace env variable PARALLEL_TESTS_EXECUTABLE with RSPEC_EXECUTABLE
  • 237b82b tmp/test-pipes is no longer needed
  • ea12c5b Use PARALLEL_TESTS_EXECUTABLE environmental variable if it's provided
  • See full diff in compare view

Updates webmock from 3.24.0 to 3.25.1

Changelog

Sourced from webmock's changelog.

3.25.1

  • Fix FrozenError in Typhoeus streaming response body

    Thanks to Patrick Jaberg

3.25.0

  • Resolve net-http adapter deprecation Ruby 3.4

    Thanks to Earlopain

Commits
  • f90fd50 Version 3.25.1
  • 371d01d Merge pull request #1078 from patrickjaberg/prj/2024.11.06/fix-frozen-typhoeu...
  • e5be1a6 Fix FrozenError in Typhoeus streaming response body
  • 5c99e1a Remove useless encoding magic comment
  • da93416 Update required_ruby_version to 2.6+
  • 8384080 Version 3.25.0
  • dff6488 Merge pull request #1096 from koic/workaround_for_jruby_ci_matrix_is_failing
  • 6aacb40 Suspend JRuby CI matrix
  • cb65c87 Merge pull request #1097 from koic/fix_build_error_in_ruby_3_5_ci_matrix
  • 1e7e9df Fix a build error for Ruby 3.5 CI matrix
  • 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

@dependabot dependabot bot added dependencies ruby Dependabot pull requests that update Ruby code labels Jul 13, 2025
@dependabot dependabot bot requested a review from a team as a code owner July 13, 2025 16:49
@dependabot dependabot bot force-pushed the dependabot/bundler/updater/dev-dependencies-f67418d34d branch 4 times, most recently from fe2aa29 to 1726eb2 Compare July 20, 2025 16:20
@dependabot dependabot bot force-pushed the dependabot/bundler/updater/dev-dependencies-f67418d34d branch 3 times, most recently from e37b1ae to 8d79b71 Compare July 24, 2025 08:39
Bumps the dev-dependencies group with 7 updates in the /updater directory:

| Package | From | To |
| --- | --- | --- |
| [debug](https://github.com/ruby/debug) | `1.9.2` | `1.11.0` |
| [rspec](https://github.com/rspec/rspec) | `3.13.0` | `3.13.1` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.67.0` | `1.78.0` |
| [rubocop-performance](https://github.com/rubocop/rubocop-performance) | `1.22.1` | `1.25.0` |
| [rubocop-sorbet](https://github.com/shopify/rubocop-sorbet) | `0.8.7` | `0.10.5` |
| [turbo_tests](https://github.com/serpapi/turbo_tests) | `2.2.4` | `2.2.5` |
| [webmock](https://github.com/bblimke/webmock) | `3.24.0` | `3.25.1` |



Updates `debug` from 1.9.2 to 1.11.0
- [Release notes](https://github.com/ruby/debug/releases)
- [Commits](ruby/debug@v1.9.2...v1.11.0)

Updates `rspec` from 3.13.0 to 3.13.1
- [Commits](rspec/rspec@rspec-metagem-v3.13.0...rspec-v3.13.1)

Updates `rubocop` from 1.67.0 to 1.78.0
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.67.0...v1.78.0)

Updates `rubocop-performance` from 1.22.1 to 1.25.0
- [Release notes](https://github.com/rubocop/rubocop-performance/releases)
- [Changelog](https://github.com/rubocop/rubocop-performance/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-performance@v1.22.1...v1.25.0)

Updates `rubocop-sorbet` from 0.8.7 to 0.10.5
- [Release notes](https://github.com/shopify/rubocop-sorbet/releases)
- [Commits](Shopify/rubocop-sorbet@v0.8.7...v0.10.5)

Updates `turbo_tests` from 2.2.4 to 2.2.5
- [Release notes](https://github.com/serpapi/turbo_tests/releases)
- [Commits](serpapi/turbo_tests@v2.2.4...v2.2.5)

Updates `webmock` from 3.24.0 to 3.25.1
- [Changelog](https://github.com/bblimke/webmock/blob/master/CHANGELOG.md)
- [Commits](bblimke/webmock@v3.24.0...v3.25.1)

---
updated-dependencies:
- dependency-name: debug
  dependency-version: 1.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: rspec
  dependency-version: 3.13.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: rubocop
  dependency-version: 1.78.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: rubocop-performance
  dependency-version: 1.25.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: rubocop-sorbet
  dependency-version: 0.10.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: turbo_tests
  dependency-version: 2.2.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: webmock
  dependency-version: 3.25.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/bundler/updater/dev-dependencies-f67418d34d branch from 8d79b71 to 0082ef0 Compare July 24, 2025 16:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies ruby Dependabot pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants