Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 26, 2025

Bumps the bundler group with 5 updates in the /Library/Homebrew directory:

Package From To
minitest 5.27.0 6.0.0
rubocop 1.81.7 1.82.0
sorbet-static-and-runtime 0.6.12845 0.6.12865
spoom 1.7.10 1.7.11
concurrent-ruby 1.3.5 1.3.6

Updates minitest from 5.27.0 to 6.0.0

Changelog

Sourced from minitest's changelog.

=== 6.0.0 / 2025-12-17

This is a major release. Read this.

Please give feedback here: minitest/minitest#1040

Oh god... here we go... (again)

  • 8 deaths in the family(!!):

    • Deleted MiniTest and MiniTest::Unit::TestCase compatibility namespaces.
    • Deleted all use of Marshal for serialization.
    • Deleted maglev? and rubinius? guard methods. LOL.
    • Deleted all minitest/spec expectations from Object. Use _/value/expect.
    • Dropped minitest/mock.rb. This has been extracted to the minitest-mock gem.
    • assert_equal(nil, value) no longer allowed. Use assert_nil to be explicit.
    • Removed assert_send. Use assert_predicate or assert_operator.
    • Removed Minitest::Test#class_name.
  • 7 major (oft incompatible) changes:

    • Big: Major refactored MT6's run path!
      • Minitest.__run -> Minitest.run_all_suites
      • Runnable.run -> Runnable.run_suite & Runnable.filter_runnable_methods
      • Runnable.run_one_method -> Runnable.run
      • Removed Minitest.run_one_method (might bring it back to raise?)
    • Removed deprecated ENV["N"] to specify number of parallel tests. Use MT_CPU.
    • Renamed +options[:filter]+ to +options[:include]+, added --include cmdline option.
      • --name is still handled, but that will be removed in the future.
    • Renamed Minitest::Runnable#test_order to #run_order.
    • If #message is passed a proc then that proc overrides all other output.
      • They are no longer chained!
      • And it does less for formatting of your output.
    • Removed reporter arg from with_info_handler as it has never(?) been used. (HACK?)
    • Plugin loading is now opt-in!
      • Require the plugin in your test_helper.
      • Or use Minitest.load :x
      • Or call Minitest.load_plugins for the old autoloading behavior.
  • 5 additions:

    • Added minitest-sprint's minitest cmdline, now with line support!
    • Added minitest-bisect. Run with minitest --bisect or -b.
    • Added minitest-server.
    • Added minitest/complete to help with shell's tab-completion of tests.
    • Vendored latest version of path_expander.
  • 5 other:

    • Bumped to ruby 3.2+.

... (truncated)

Commits
  • 2f3d88e prepped for release
  • 756f965 Add Hoe's :cov plugin and start to look at gaps
  • 94a790e - Removed MT5's post_install_message.
  • 8a50ebf - Bumped to ruby 3.2+
  • 1fceffd - Removed obsolete version guards around Minitest::Result in reporters.
  • c5adbd7 - Removed obsolete conditional for CompositeReporter#prerecord.
  • 27ef422 + Added minitest/complete to help with shell's tab-completion of tests.
  • 0c0c329 + Renamed options[:filter] to options[:include], added --include cmdline option.
  • d597d05 + If message is passed a proc then that proc overrides all other output.
  • 3c6300c + Assertions reuse themselves a lot more. Bumps assertion count in some places.
  • Additional commits viewable in compare view

Updates rubocop from 1.81.7 to 1.82.0

Release notes

Sourced from rubocop's releases.

RuboCop v1.82.0

New features

  • #14655: Add AllowRBSInlineAnnotation option to Layout/LineLength. (@​koic)
  • #14569: Add IncludedMacroPatterns configuration option to Style/MethodCallWithArgsParentheses for pattern-based macro method enforcement. (@​mmenanno)
  • #14670: Add new cop Style/ModuleMemberExistenceCheck. (@​lovro-bikic)
  • #14644: Support TargetRubyVersion 4.0 (experimental). (@​koic)

Bug fixes

  • #14649: Fix an error for Lint/LiteralAsCondition when there are literals in multiple branches. (@​viralpraxis)
  • #14678: Fix an error when running deprecated rake rubocop:auto_correct task. (@​koic)
  • #14650: Fix wrong autocorrect for Lint/RedundantSplatExpansion when splatting a single literal. (@​earlopain)
  • #14703: Fix false negatives for Layout/RescueEnsureAlignment when using self class definition. (@​koic)
  • #14706: Fix false negatives for Lint/NoReturnInBeginEndBlocks when assigning instance variable, class variable, global variable, or constant. (@​koic)
  • #14715: Fix false positives for Layout/EmptyLineAfterGuardClause when a guard clause follows a multiline heredoc in a parenthesized method call. (@​koic)
  • #14667: Fix false positives for Layout/EndAlignment when a conditional assignment is used on the same line and the end with a safe navigation method call is aligned. (@​koic)
  • #14688: Fix false positives for Layout/EndAlignment when a conditional assignment is used on the same line and the end with a numbered block or it block method call is aligned. (@​koic)
  • #14699: Fix false positives for Lint/RedundantSafeNavigation when the receiver is used outside the singleton method definition scope. (@​koic)
  • #14663: Fix false positives for Style/EndlessMethod when multiline or xstring heredoc is used in method body. (@​koic)
  • #10173: Fix false positives for Style/TrailingCommaInArguments when EnforcedStyleForMultiline is set to consistent_comma and a multiline braced hash argument appears after another argument. (@​koic)
  • #14680: Handle all OptionParser errors when running rubocop with input that causes an error. (@​dvandersluis)
  • #14658: Fix incorrect behavior when Layout/LineLength is disabled. (@​koic)
  • #14704: Fix incorrect Position character value in LSP. (@​tmtm)
  • #14619: Store remote configuration caches in cache root. ([@​Jack12816][])
  • #14476: Fix Style/ClassAndModuleChildren to skip compact style definitions inside another class or module when EnforcedStyle: nested. ([@​rscq][])
  • #14281: Update Layout/EndAlignment with EnforcedStyleAlignWith: variable to handle conditionals inside begin nodes properly. (@​dvandersluis)

Changes

  • #14662: Add autocorrection for Lint/UselessOr. ([@​r7kamura][])
  • #14668: Exclude Severity from configuration parameters. ([@​r7kamura][])
  • #14684: Make Style/CaseEquality allow regexp case equality where the receiver is a regexp literal. (@​koic)
  • #14645: Change Lint/CircularArgumentReference to detect offenses within long assignment chains. (@​viralpraxis)
  • #14642: Make Gemspec/RubyVersionGlobalsUsage aware of Ruby::VERSION. (@​koic)
  • #14695: Make Layout/EmptyLineAfterMagicComment aware of # rbs_inline magic comment. (@​koic)
  • #10147: Make Lint/ElseLayout allow a single-line else body in then single-line conditional. (@​koic)
  • #14661: Make Lint/RedundantRequireStatement aware of pathname when analyzing Ruby 4.0. (@​koic)
  • #14698: Make Lint/UnreachableCode aware of singleton method redefinition. (@​koic)
  • #14677: Make Style/RedundantArgument aware of to_i. (@​koic)
  • #14660: Rename IgnoreCopDirectives to AllowCopDirectives in Layout/LineLength. (@​koic)
  • #14492: Revert #14492, which added support for LSP positionEncoding 'utf-8' and 'utf-32' due to critical performance regression reports. (@​koic)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.82.0 (2025-12-17)

New features

  • #14655: Add AllowRBSInlineAnnotation option to Layout/LineLength. ([@​koic][])
  • #14569: Add IncludedMacroPatterns configuration option to Style/MethodCallWithArgsParentheses for pattern-based macro method enforcement. ([@​mmenanno][])
  • #14670: Add new cop Style/ModuleMemberExistenceCheck. ([@​lovro-bikic][])
  • #14644: Support TargetRubyVersion 4.0 (experimental). ([@​koic][])

Bug fixes

  • #14649: Fix an error for Lint/LiteralAsCondition when there are literals in multiple branches. ([@​viralpraxis][])
  • #14678: Fix an error when running deprecated rake rubocop:auto_correct task. ([@​koic][])
  • #14650: Fix wrong autocorrect for Lint/RedundantSplatExpansion when splatting a single literal. ([@​earlopain][])
  • #14703: Fix false negatives for Layout/RescueEnsureAlignment when using self class definition. ([@​koic][])
  • #14706: Fix false negatives for Lint/NoReturnInBeginEndBlocks when assigning instance variable, class variable, global variable, or constant. ([@​koic][])
  • #14715: Fix false positives for Layout/EmptyLineAfterGuardClause when a guard clause follows a multiline heredoc in a parenthesized method call. ([@​koic][])
  • #14667: Fix false positives for Layout/EndAlignment when a conditional assignment is used on the same line and the end with a safe navigation method call is aligned. ([@​koic][])
  • #14688: Fix false positives for Layout/EndAlignment when a conditional assignment is used on the same line and the end with a numbered block or it block method call is aligned. ([@​koic][])
  • #14699: Fix false positives for Lint/RedundantSafeNavigation when the receiver is used outside the singleton method definition scope. ([@​koic][])
  • #14663: Fix false positives for Style/EndlessMethod when multiline or xstring heredoc is used in method body. ([@​koic][])
  • #10173: Fix false positives for Style/TrailingCommaInArguments when EnforcedStyleForMultiline is set to consistent_comma and a multiline braced hash argument appears after another argument. ([@​koic][])
  • #14680: Handle all OptionParser errors when running rubocop with input that causes an error. ([@​dvandersluis][])
  • #14658: Fix incorrect behavior when Layout/LineLength is disabled. ([@​koic][])
  • #14704: Fix incorrect Position character value in LSP. ([@​tmtm][])
  • #14619: Store remote configuration caches in cache root. ([@​Jack12816][])
  • #14476: Fix Style/ClassAndModuleChildren to skip compact style definitions inside another class or module when EnforcedStyle: nested. ([@​rscq][])
  • #14281: Update Layout/EndAlignment with EnforcedStyleAlignWith: variable to handle conditionals inside begin nodes properly. ([@​dvandersluis][])

Changes

  • #14662: Add autocorrection for Lint/UselessOr. ([@​r7kamura][])
  • #14668: Exclude Severity from configuration parameters. ([@​r7kamura][])
  • #14684: Make Style/CaseEquality allow regexp case equality where the receiver is a regexp literal. ([@​koic][])
  • #14645: Change Lint/CircularArgumentReference to detect offenses within long assignment chains. ([@​viralpraxis][])
  • #14642: Make Gemspec/RubyVersionGlobalsUsage aware of Ruby::VERSION. ([@​koic][])
  • #14695: Make Layout/EmptyLineAfterMagicComment aware of # rbs_inline magic comment. ([@​koic][])
  • #10147: Make Lint/ElseLayout allow a single-line else body in then single-line conditional. ([@​koic][])
  • #14661: Make Lint/RedundantRequireStatement aware of pathname when analyzing Ruby 4.0. ([@​koic][])
  • #14698: Make Lint/UnreachableCode aware of singleton method redefinition. ([@​koic][])
  • #14677: Make Style/RedundantArgument aware of to_i. ([@​koic][])
  • #14660: Rename IgnoreCopDirectives to AllowCopDirectives in Layout/LineLength. ([@​koic][])
  • #14492: Revert #14492, which added support for LSP positionEncoding 'utf-8' and 'utf-32' due to critical performance regression reports. ([@​koic][])
Commits
  • 384aa2b Cut 1.82
  • f8a84fa Update Changelog
  • f8b40bc [Fix #13854 (Old issue)] add push/pop logic for handle local enable/disable
  • 70f76b1 Add new cop Style/ModuleMemberExistenceCheck
  • acbdbda Fix false positives for Layout/EmptyLineAfterGuardClause
  • 9cc142e Fix incorrect Position character value in LSP
  • 5e07aa1 Merge pull request #14712 from moznion/fix_escaped_single_quote
  • 8f5b029 [Fix #14711] Fix broken auto-correction in Style/RedundantRegexpArgument rule
  • bcfdf5f Add some specs for Style/RedundantCondition
  • 2c9071d Merge pull request #14707 from koic/fix_false_negatives_for_lint_no_return_in...
  • Additional commits viewable in compare view

Updates sorbet-static-and-runtime from 0.6.12845 to 0.6.12865

Release notes

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

sorbet 0.6.12864.20251218152956-2a29c135d

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12863.20251218143640-38e36486c

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12862.20251218143126-1f5597efd

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12861.20251218142320-5f7f693dc

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12860.20251218140617-73c1731fe

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12859.20251218133730-c40908143

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12858.20251218115047-54ab2b812

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12857.20251218070815-1e14eef36

... (truncated)

Commits

Updates spoom from 1.7.10 to 1.7.11

Release notes

Sourced from spoom's releases.

v1.7.11

What's Changed

🛠 Other Changes

New Contributors

Full Changelog: Shopify/spoom@v1.7.10...v1.7.11

Commits
  • 210e014 Bump version to v0.7.11
  • 0e548ed Merge pull request #824 from Shopify/trusted-publisher
  • aa14dc6 Merge pull request #829 from Shopify/dependabot/github_actions/ruby/setup-rub...
  • a568b87 Bump ruby/setup-ruby from 1.269.0 to 1.270.0
  • 791479c Add trusted publishing release workflow
  • 179aa67 Merge pull request #827 from Shopify/dependabot/github_actions/actions/checko...
  • bbf6b4c Bump actions/checkout from 6.0.0 to 6.0.1
  • c61535f Merge pull request #826 from Shopify/dependabot/github_actions/ruby/setup-rub...
  • c22bac0 Bump ruby/setup-ruby from 1.268.0 to 1.269.0
  • a33a8be Merge pull request #823 from Shopify/dependabot/bundler/minor-and-patch-a32f8...
  • Additional commits viewable in compare view

Updates concurrent-ruby from 1.3.5 to 1.3.6

Release notes

Sourced from concurrent-ruby's releases.

v1.3.6

What's Changed

New Contributors

Full Changelog: ruby-concurrency/concurrent-ruby@v1.3.5...v1.3.6

Changelog

Sourced from concurrent-ruby's changelog.

Release v1.3.6 (13 December 2025)

concurrent-ruby:

Commits
  • dba7766 Release 1.3.6
  • 49b7552 Exclude dependabot updates from release notes
  • 048f5d0 ThreadPoolExecutor kill will wait_for_termination in JRuby; ensure TimerS...
  • 4e340ed Flaky test fix: allow ThreadPool to shutdown before asserting completed_task_...
  • 4dc8de3 Allow TimerTask to be safely restarted after shutdown and avoid duplicate tas...
  • 47cf3a1 Mark RubySingleThreadExecutor as a SerialExecutorService
  • 572d44c Asynchronous pruning for RubyThreadPoolExecutor (#1082)
  • e25e34c Add Joshua Young to the list of maintainers (#1097)
  • 978eed6 Use typed data APIs
  • eacd77a Use stdatomic.h on recent macOS
  • Additional commits viewable in compare view

Updates sorbet-runtime from 0.6.12845 to 0.6.12865

Release notes

Sourced from sorbet-runtime's releases.

sorbet 0.6.12864.20251218152956-2a29c135d

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12863.20251218143640-38e36486c

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12862.20251218143126-1f5597efd

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12861.20251218142320-5f7f693dc

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12860.20251218140617-73c1731fe

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12859.20251218133730-c40908143

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12858.20251218115047-54ab2b812

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12857.20251218070815-1e14eef36

... (truncated)

Commits

Updates sorbet from 0.6.12845 to 0.6.12865

Release notes

Sourced from sorbet's releases.

sorbet 0.6.12864.20251218152956-2a29c135d

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12863.20251218143640-38e36486c

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12862.20251218143126-1f5597efd

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12861.20251218142320-5f7f693dc

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12860.20251218140617-73c1731fe

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12859.20251218133730-c40908143

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12858.20251218115047-54ab2b812

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12857.20251218070815-1e14eef36

... (truncated)

Commits

Updates sorbet-static from 0.6.12845 to 0.6.12865

Release notes

Sourced from sorbet-static's releases.

sorbet 0.6.12864.20251218152956-2a29c135d

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12863.20251218143640-38e36486c

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12862.20251218143126-1f5597efd

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12861.20251218142320-5f7f693dc

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12860.20251218140617-73c1731fe

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12859.20251218133730-c40908143

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12858.20251218115047-54ab2b812

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12857.20251218070815-1e14eef36

... (truncated)

Commits

Updates unicode-emoji from 4.1.0 to 4.2.0

Changelog

Sourced from unicode-emoji's changelog.

4.2.0

  • Allow Ruby 4.0
  • Remove Non-Emoji pictographs from spec, since they have been removed in Unicode 17
  • Update valid subdivisions to CLDR 48 (no changes)
Commits
  • beff6fe Release v4.2.0
  • 1980174 Update CLDR to v48
  • 82fea37 Fix: Emoji file not actually cached
  • 3a81e3b Remove Non-Emoji pictographs from spec, since they have been removed in Unico...
  • 857589e Fix Rakefile: Run both spec files
  • 6ba7e49 Add mutex_m and ostruct to Gemfile, since they are not a default gem anymore
  • 3510dcf Merge pull request #17 from taketo1113/relax-require-ruby
  • 3e80769 Relax required_ruby_version to support Ruby 4.0
  • dba9693 Add Unicode version and fix location of emoji test data #16
  • e31212a Add Ruby 3.4 to unix CI too
  • See full diff 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 bundler group with 5 updates in the /Library/Homebrew directory:

| Package | From | To |
| --- | --- | --- |
| [minitest](https://github.com/minitest/minitest) | `5.27.0` | `6.0.0` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.81.7` | `1.82.0` |
| [sorbet-static-and-runtime](https://github.com/sorbet/sorbet) | `0.6.12845` | `0.6.12865` |
| [spoom](https://github.com/Shopify/spoom) | `1.7.10` | `1.7.11` |
| [concurrent-ruby](https://github.com/ruby-concurrency/concurrent-ruby) | `1.3.5` | `1.3.6` |



Updates `minitest` from 5.27.0 to 6.0.0
- [Changelog](https://github.com/minitest/minitest/blob/master/History.rdoc)
- [Commits](minitest/minitest@v5.27.0...v6.0.0)

Updates `rubocop` from 1.81.7 to 1.82.0
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.81.7...v1.82.0)

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

Updates `spoom` from 1.7.10 to 1.7.11
- [Release notes](https://github.com/Shopify/spoom/releases)
- [Commits](Shopify/spoom@v1.7.10...v1.7.11)

Updates `concurrent-ruby` from 1.3.5 to 1.3.6
- [Release notes](https://github.com/ruby-concurrency/concurrent-ruby/releases)
- [Changelog](https://github.com/ruby-concurrency/concurrent-ruby/blob/master/CHANGELOG.md)
- [Commits](ruby-concurrency/concurrent-ruby@v1.3.5...v1.3.6)

Updates `sorbet-runtime` from 0.6.12845 to 0.6.12865
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

Updates `sorbet` from 0.6.12845 to 0.6.12865
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

Updates `sorbet-static` from 0.6.12845 to 0.6.12865
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

Updates `unicode-emoji` from 4.1.0 to 4.2.0
- [Changelog](https://github.com/janlelis/unicode-emoji/blob/main/CHANGELOG.md)
- [Commits](janlelis/unicode-emoji@v4.1.0...v4.2.0)

---
updated-dependencies:
- dependency-name: minitest
  dependency-version: 6.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: bundler
- dependency-name: rubocop
  dependency-version: 1.82.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bundler
- dependency-name: sorbet-static-and-runtime
  dependency-version: 0.6.12865
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: spoom
  dependency-version: 1.7.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: concurrent-ruby
  dependency-version: 1.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: sorbet-runtime
  dependency-version: 0.6.12865
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: sorbet
  dependency-version: 0.6.12865
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: sorbet-static
  dependency-version: 0.6.12865
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: unicode-emoji
  dependency-version: 4.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: bundler
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Bumping Gemfile dependencies ruby Pull requests that update Ruby code labels Dec 26, 2025
@p-linnane p-linnane enabled auto-merge December 26, 2025 17:51
@Bo98
Copy link
Member

Bo98 commented Dec 26, 2025

assert_equal(nil, value) no longer allowed. Use assert_nil to be explicit.

This likely needs a deprecation compatibility layer on our side: https://github.com/Homebrew/homebrew-core/blob/5347e4cdcacc38d2c6e94f27bbd31b9d33485ce6/Formula/c/cmusfm.rb#L77

Similar to what we did before: d955277

@p-linnane p-linnane disabled auto-merge December 26, 2025 17:55
Signed-off-by: Patrick Linnane <patrick@linnane.io>
@p-linnane p-linnane requested a review from Bo98 December 26, 2025 18:10
Copy link
Member

@Bo98 Bo98 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

Co-authored-by: Bo Anderson <mail@boanderson.me>
@p-linnane p-linnane enabled auto-merge December 26, 2025 19:13
@p-linnane p-linnane added this pull request to the merge queue Dec 26, 2025
Merged via the queue into main with commit 9de5f2a Dec 26, 2025
39 checks passed
@p-linnane p-linnane deleted the dependabot/bundler/Library/Homebrew/bundler-6b4ba7672e branch December 26, 2025 19:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Bumping Gemfile dependencies ruby Pull requests that update Ruby code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants