Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the dev-dependencies group with 3 updates in the / directory: sorbet-static, mocha and minitest.

Updates sorbet-static from 0.6.12627 to 0.6.12638

Release notes

Sourced from sorbet-static's releases.

sorbet 0.6.12637.20251010131712-006c8eaa4

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12636.20251010112326-1c20a2cad

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12635.20251010104612-f45b23408

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12634.20251010104521-5e1979d40

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12633.20251009103431-774042467

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12632.20251008110159-445206eb8

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12631.20251008103647-588bfab4d

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12630.20251007155449-57cd2cf49

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

Updates minitest from 5.25.5 to 5.26.0

Changelog

Sourced from minitest's changelog.

=== 5.26.0 / 2025-10-07

The Seattle.rb Nerd Party, Slightly Tipsy Edition!

  • 2 minor enhancements:

    • Added extra documentation to Minitest::TestTask options.
    • Make parallelize_me! a no-op when n_threads=1.
  • 9 bug fixes:

    • Bypass parallel_executor entirely when n_threads=1.
    • Don't require rubygems in Rakefile... it is 2025.
    • Ensure that minitest exits non-zero on Interrupt. (tavianator)
    • Fix Minitest.run sequence rdoc to include loop vars and read consistently.
    • Fix call to parallel_executor.shutdown when it isn't defined.
    • Removed some 1.8/1.9-based code from the assertions and expectations.
    • Still fighting with rdoc? Yup. Still fighting with rdoc...
    • Switched assert_equal's diff from Tempfile.open to Tempfile.create.
    • Use Regexp.escape for BASE_RE in case pwd has special chars. (astra_1993)
Commits
  • f78aa72 prepped for release
  • 5faf12f - Use Regexp.escape for BASE_RE in case pwd has special chars. (astra_1993)
  • 839c5f0 - Bypass parallel_executor entirely when n_threads=1.
  • 7c90742 - Switched assert_equal's diff from Tempfile.open to Tempfile.create.
  • b3dcd38 clarify an assert_equal + newline + backslash n test output to be more readable
  • 14c87ef Improve let tests to no longer be order dependent.
  • 6c995cf - Ensure that minitest exits non-zero on Interrupt. (tavianator)
  • 42ce806 - Removed some 1.8/1.9-based code from the assertions and expectations.
  • a17393e - Still fighting with rdoc? Yup. Still fighting with rdoc...
  • 68b3d0c - Don't require rubygems in Rakefile... it is 2025.
  • 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

Bumps the dev-dependencies group with 3 updates in the / directory: [sorbet-static](https://github.com/sorbet/sorbet), [mocha](https://github.com/freerange/mocha) and [minitest](https://github.com/minitest/minitest).


Updates `sorbet-static` from 0.6.12627 to 0.6.12638
- [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)

Updates `minitest` from 5.25.5 to 5.26.0
- [Changelog](https://github.com/minitest/minitest/blob/master/History.rdoc)
- [Commits](minitest/minitest@v5.25.5...v5.26.0)

---
updated-dependencies:
- dependency-name: sorbet-static
  dependency-version: 0.6.12638
  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
- dependency-name: minitest
  dependency-version: 5.26.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update ruby code labels Oct 13, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 20, 2025

Dependabot can't resolve your Ruby dependency files. Because of this, Dependabot cannot update this pull request.

1 similar comment
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 20, 2025

Dependabot can't resolve your Ruby dependency files. Because of this, Dependabot cannot update this pull request.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 27, 2025

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

@dependabot dependabot bot closed this Oct 27, 2025
@dependabot dependabot bot deleted the dependabot/bundler/dev-dependencies-9f816132bf branch October 27, 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