Skip to content

Bump the dev-dependencies group with 4 updates#522

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/bundler/dev-dependencies-150cc2d68a
Closed

Bump the dev-dependencies group with 4 updates#522
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/bundler/dev-dependencies-150cc2d68a

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 4, 2025

Bumps the dev-dependencies group with 4 updates: rubocop, sorbet-static-and-runtime, tapioca and mocha.

Updates rubocop from 1.79.0 to 1.79.1

Release notes

Sourced from rubocop's releases.

RuboCop v1.79.1

Bug fixes

  • #14390: Fix wrong autocorrect for Style/ArgumentsForwarding when the method arguments contain *, ** or &, and the method call contains self as the first argument. (@​earlopain)
  • #14399: Fix false positives for Layout/EmptyLinesAfterModuleInclusion when prepend is used with block methods. (@​koic)
  • #14396: Fix a false positive for Style/RedundantParentheses when parentheses are used around a one-line rescue expression inside a ternary operator. (@​koic)
  • #14383: Fix false positives for Lint/UselessAssignment when duplicate assignments in if branch inside a loop. (@​koic)
  • #14394: Fix false positive for Lint/UselessAssignment with retry in rescue branch. (@​earlopain)
  • #14386: Fix false positives for Style/RedundantParentheses when parentheses are used around a one-line rescue expression inside array or hash literals. (@​koic)
  • #14395: Fix LSP handling of URI-encoded paths with spaces. (@​hakanensari)

Changes

Changelog

Sourced from rubocop's changelog.

1.79.1 (2025-07-31)

Bug fixes

  • #14390: Fix wrong autocorrect for Style/ArgumentsForwarding when the method arguments contain *, ** or &, and the method call contains self as the first argument. ([@​earlopain][])
  • #14399: Fix false positives for Layout/EmptyLinesAfterModuleInclusion when prepend is used with block methods. ([@​koic][])
  • #14396: Fix a false positive for Style/RedundantParentheses when parentheses are used around a one-line rescue expression inside a ternary operator. ([@​koic][])
  • #14383: Fix false positives for Lint/UselessAssignment when duplicate assignments in if branch inside a loop. ([@​koic][])
  • #14394: Fix false positive for Lint/UselessAssignment with retry in rescue branch. ([@​earlopain][])
  • #14386: Fix false positives for Style/RedundantParentheses when parentheses are used around a one-line rescue expression inside array or hash literals. ([@​koic][])
  • #14395: Fix LSP handling of URI-encoded paths with spaces. ([@​hakanensari][])

Changes

Commits
  • 5ecd375 Cut 1.79.1
  • 0b19d92 Tweak a couple of changelog entries
  • 300bc86 Update Changelog
  • 8e6be28 Add support for or nodes to Lint/LiteralAsCondition
  • 6adbb27 Merge pull request #14405 from viralpraxis/fix-naming-method-name-cop-spec-de...
  • 9682294 Fix Naming/MethodName cop spec descriptions
  • fc0e660 Merge pull request #14403 from viralpraxis/enhance-naming-method-name-to-hand...
  • 19f9c0b Enhance Naming/MethodName cop to detect offenses within alias and `alias_...
  • 9d262b1 Merge pull request #14400 from koic/fix_false_positive_for_layout_empty_lines...
  • 13c5050 [Fix #14399] Fix false positives for Layout/EmptyLinesAfterModuleInclusion
  • Additional commits viewable in compare view

Updates sorbet-static-and-runtime from 0.5.12358 to 0.5.12371

Release notes

Sourced from sorbet-static-and-runtime's releases.

sorbet 0.5.12370.20250801152350-b58497fa8

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.12370', :group => :development
gem 'sorbet-runtime', '0.5.12370'

sorbet 0.5.12369.20250801111919-98b3cb5aa

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.12369', :group => :development
gem 'sorbet-runtime', '0.5.12369'

sorbet 0.5.12368.20250731153420-afdd2c0d0

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.12368', :group => :development
gem 'sorbet-runtime', '0.5.12368'

sorbet 0.5.12367.20250731144237-fee1619c8

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.12367', :group => :development
gem 'sorbet-runtime', '0.5.12367'

sorbet 0.5.12366.20250730162042-110d5fb38

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.12366', :group => :development
gem 'sorbet-runtime', '0.5.12366'

sorbet 0.5.12365.20250730130132-cf52d7cf8

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.12365', :group => :development
gem 'sorbet-runtime', '0.5.12365'

sorbet 0.5.12364.20250730124948-b8a044470

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.12364', :group => :development
gem 'sorbet-runtime', '0.5.12364'

sorbet 0.5.12363.20250730111452-87286f8fe

... (truncated)

Commits

Updates tapioca from 0.16.11 to 0.4.13

Commits
  • 13a71d8 Bum version to v0.4.13
  • e8b903e Merge pull request #205 from Shopify/more-rbi-compile-bug
  • 55127a1 Clean up + comment in SymbolGenerator#compile_alias
  • 8397301 Better temp file name in symbol_table_compiler_spec
  • 292c331 Bump version to v0.4.12
  • 234dbb0 PR Feedback
  • d6bf96b Fix bug in compile_alias when constant names are mismatched
  • e38fb51 Merge pull request #204 from Shopify/ruby-3.0-compat
  • 0ea0823 Fix Ruby 3.0 compat
  • bab9f39 Bump version to v0.4.11
  • Additional commits viewable in compare view

Updates mocha from 2.4.5 to 2.7.1

Changelog

Sourced from mocha's changelog.

2.7.1

External changes

  • Deprecate Configuration#stubbing_method_on_nil= (#694)
  • Indicate when parameter matcher logic is defined by block passed to Expectation#with (#698, b30e4434)
  • Improve documentation for Expectation#with, especially when it is passed a block (#698, #682, #606 & #681)

2.7.0

External changes

Internal changes

  • Workaround for JRuby jar-dependencies issue (#690)
  • Ruby v3.4 stacktrace uses single-quote vs backtick (#688 & #689) - thanks to Vít Ondruch

WARNING: This release fixes a very old bug

  • The bug relates to the use of Expectation#never in combination with other expectations on the same method.

  • Please ensure you fix the relevant deprecation warnings when running against v2.6.1 before upgrading to v2.7.0.

  • Previously, the following test would have passed, but now it will fail with an unexpected invocation error on the foo.bar line.

    foo = mock('foo') foo.stubs(:bar) foo.expects(:bar).never foo.bar

2.6.1

External changes

  • Fix logic for displaying deprecation warning for expectation with never cardinality (#686) - thanks to @​davidstosik for reporting

2.6.0

External changes

  • Expectation with never cardinality should display deprecation warning (#681) - thanks to @​ducmtran for reporting and testing

WARNING: This release results in some incorrect deprecation warnings:

  • The logic for displaying the deprecation warnings is fixed in v2.6.1 (#686).

Internal changes

  • Simplify backtrace related assertions (#680)
  • Remove unused ExpectationList#match_but_out_of_order (f2fa9919)

2.5.0

... (truncated)

Commits
  • cb0909e [skip ci] Update documentation for v2.7.1
  • d6ba8b9 Bump version to 2.7.1 & prepare for release
  • 4d4a027 Merge pull request #698 from freerange/expectation-with-improvements
  • b30e443 Indicate when matcher logic is defined by block
  • fed3387 Add custom matcher example to Expectatation#with docs
  • 17a4856 Improve docs for Expectation#with when passed block
  • 3ca865f Document argument precedence for Expectation#with
  • 558d521 Add docs for Expectation#with when passed block
  • 99f3f6b Document Expectation#with called multiple times
  • c3b4b8e Clarify docs for Expectation#with yieldparam
  • Additional commits viewable in compare view

You can trigger a rebase of this PR 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

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps the dev-dependencies group with 4 updates: [rubocop](https://github.com/rubocop/rubocop), [sorbet-static-and-runtime](https://github.com/sorbet/sorbet), [tapioca](https://github.com/Shopify/tapioca) and [mocha](https://github.com/freerange/mocha).


Updates `rubocop` from 1.79.0 to 1.79.1
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.79.0...v1.79.1)

Updates `sorbet-static-and-runtime` from 0.5.12358 to 0.5.12371
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

Updates `tapioca` from 0.16.11 to 0.4.13
- [Release notes](https://github.com/Shopify/tapioca/releases)
- [Commits](Shopify/tapioca@v0.16.11...v0.4.13)

Updates `mocha` from 2.4.5 to 2.7.1
- [Changelog](https://github.com/freerange/mocha/blob/main/RELEASE.md)
- [Commits](freerange/mocha@v2.4.5...v2.7.1)

---
updated-dependencies:
- dependency-name: rubocop
  dependency-version: 1.79.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: sorbet-static-and-runtime
  dependency-version: 0.5.12371
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: tapioca
  dependency-version: 0.4.13
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: mocha
  dependency-version: 2.7.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

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 Aug 4, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 13, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Oct 13, 2025
@dependabot dependabot bot deleted the dependabot/bundler/dev-dependencies-150cc2d68a branch October 13, 2025 11:02
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