Skip to content

build(deps): bump the bundler group across 1 directory with 8 updates#21528

Merged
MikeMcQuaid merged 3 commits intomainfrom
dependabot/bundler/Library/Homebrew/bundler-5dd4003c55
Feb 6, 2026
Merged

build(deps): bump the bundler group across 1 directory with 8 updates#21528
MikeMcQuaid merged 3 commits intomainfrom
dependabot/bundler/Library/Homebrew/bundler-5dd4003c55

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the bundler group with 4 updates in the /Library/Homebrew directory: rubocop, rubocop-md, sorbet-static-and-runtime and rspec-support.

Updates rubocop from 1.82.1 to 1.84.0

Release notes

Sourced from rubocop's releases.

RuboCop v1.84.0

New features

  • #14516: Add AllowImplicitArrayLiterals to Layout/FirstArrayElementLineBreak. (@​koic)
  • #14750: Add new Style/ReverseFind cop. (@​koic)
  • #12343: Add new Style/EmptyClassDefinition cop to enforce consistent style for empty class definitions. The cop can enforce either a two-line class definition or Class.new for classes with no body. (@​ydakuka)
  • #14769: Add new Style/HashLookupMethod cop to enforce Hash#[] vs Hash#fetch preference. (@​sferik)
  • #12051: Add new Style/NegativeArrayIndex cop to enforce using negative array indices instead of calculating array length minus a value. The cop handles both simple index patterns and range patterns, and recognizes preserving methods and their combinations. (@​ydakuka)
  • #14633: Make a new system to handle push and pop locally. (@​Magikdidi24)
  • #14722: Support TargetRubyVersion 4.1 (experimental). (@​koic)

Bug fixes

  • #14697: Allow non-method calls in Categories for Layout/ClassStructure. (@​fatkodima)
  • #14784: Fix an error for Style/GuardClause when using heredoc as an argument of raise in else branch and if branch is empty. (@​koic)
  • #14790: Fix an error for Style/HashLookupMethod cop when there's no receiver. (@​viralpraxis)
  • #14779: Fix autocorrect crash with ruby_extractor when using offset: 0 and different source buffers. (@​ydakuka)
  • #14762: Fix false negatives for Style/RedundantCondition when the branches contains constant assignment. (@​koic)
  • #14751: Fix --force-default-config not preventing project config loading when used with options that access configuration. (@​sakuro)
  • #14783: Fix incorrect autocorrect for Style/HashSyntax when shorthand syntax is used in condition of if/unless/while/until. (@​ydakuka)
  • #14747: Fix a regression inLayout/IndentationWidth by adding a new EnforcedStyleAlignWith style parameter. (@​MikeMcQuaid)
  • #14716: Fix an infinite loop error for Layout/LineLength when SplitStrings option is enabled and strings span multiple lines. (@​HariprasanthMSH)
  • #14763: Fix an infinite loop error for Layout/IndentationWidth and Layout/IndentationConsistency when using EnforcedStyle: indented_internal_methods with method chain blocks. (@​ydakuka)
  • #9373: Fix an infinite loop error for Layout/IndentationWidth when autocorrecting mixed tabs and spaces in blocks. Fix an infinite loop error for Layout/DefEndAlignment and Layout/IndentationStyle when autocorrecting mixed tabs and spaces. Autocorrection for tabs is disabled in AlignmentCorrector for indentation offenses, but enabled for align_end. (@​ydakuka)
  • #12295: Fix Layout/FirstArgumentIndentation to correct entire method calls and chains for nested calls. (@​ydakuka)
  • #12527: Fix Offense#highlighted_area to return a valid Parser::Source::Range. (@​ydakuka)
  • #14801: Preserve source tabs in Clang and Tap formatters when displaying offense highlight. (@​lovro-bikic)
  • #14761: Improved the remote configuration file name on the cache location. ([@​Jack12816][])
  • #14778: Fix a false positive for Security/JSONLoad when create_additions option is passed with other options in a hash. ([@​wktk][])
  • #14796: Handle logical and operator assignment nodes in variable branch handling. (@​lovro-bikic)

Changes

  • #14753: Add support for squish and squish! applied to heredoc to Layout/HeredocIndentation. (@​lovro-bikic)
  • #14798: Recognize Forwardable methods in Lint/DuplicateMethods. (@​lovro-bikic)
  • #14793: Make Lint/RedundantSplatExpansion aware of constant assignment. (@​koic)
  • #14770: Make Style/AccessModifierDeclarations aware of self class. (@​koic)
  • #14748: Add support for other Module member existence methods to Style/ModuleMemberExistenceCheck. (@​lovro-bikic)
  • #14795: Add AllowedMethods configuration to Style/ModuleMemberExistenceCheck. (@​lovro-bikic)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.84.0 (2026-01-27)

New features

  • #14516: Add AllowImplicitArrayLiterals to Layout/FirstArrayElementLineBreak. ([@​koic][])
  • #14750: Add new Style/ReverseFind cop. ([@​koic][])
  • #12343: Add new Style/EmptyClassDefinition cop to enforce consistent style for empty class definitions. The cop can enforce either a two-line class definition or Class.new for classes with no body. ([@​ydakuka][])
  • #14769: Add new Style/HashLookupMethod cop to enforce Hash#[] vs Hash#fetch preference. ([@​sferik][])
  • #12051: Add new Style/NegativeArrayIndex cop to enforce using negative array indices instead of calculating array length minus a value. The cop handles both simple index patterns and range patterns, and recognizes preserving methods and their combinations. ([@​ydakuka][])
  • #14633: Make a new system to handle push and pop locally. ([@​Magikdidi24][])
  • #14722: Support TargetRubyVersion 4.1 (experimental). ([@​koic][])

Bug fixes

  • #14697: Allow non-method calls in Categories for Layout/ClassStructure. ([@​fatkodima][])
  • #14784: Fix an error for Style/GuardClause when using heredoc as an argument of raise in else branch and if branch is empty. ([@​koic][])
  • #14790: Fix an error for Style/HashLookupMethod cop when there's no receiver. ([@​viralpraxis][])
  • #14779: Fix autocorrect crash with ruby_extractor when using offset: 0 and different source buffers. ([@​ydakuka][])
  • #14762: Fix false negatives for Style/RedundantCondition when the branches contains constant assignment. ([@​koic][])
  • #14751: Fix --force-default-config not preventing project config loading when used with options that access configuration. ([@​sakuro][])
  • #14783: Fix incorrect autocorrect for Style/HashSyntax when shorthand syntax is used in condition of if/unless/while/until. ([@​ydakuka][])
  • #14747: Fix a regression inLayout/IndentationWidth by adding a new EnforcedStyleAlignWith style parameter. ([@​MikeMcQuaid][])
  • #14716: Fix an infinite loop error for Layout/LineLength when SplitStrings option is enabled and strings span multiple lines. ([@​HariprasanthMSH][])
  • #14763: Fix an infinite loop error for Layout/IndentationWidth and Layout/IndentationConsistency when using EnforcedStyle: indented_internal_methods with method chain blocks. ([@​ydakuka][])
  • #9373: Fix an infinite loop error for Layout/IndentationWidth when autocorrecting mixed tabs and spaces in blocks. Fix an infinite loop error for Layout/DefEndAlignment and Layout/IndentationStyle when autocorrecting mixed tabs and spaces. Autocorrection for tabs is disabled in AlignmentCorrector for indentation offenses, but enabled for align_end. ([@​ydakuka][])
  • #12295: Fix Layout/FirstArgumentIndentation to correct entire method calls and chains for nested calls. ([@​ydakuka][])
  • #12527: Fix Offense#highlighted_area to return a valid Parser::Source::Range. ([@​ydakuka][])
  • #14801: Preserve source tabs in Clang and Tap formatters when displaying offense highlight. ([@​lovro-bikic][])
  • #14761: Improved the remote configuration file name on the cache location. ([@​Jack12816][])
  • #14778: Fix a false positive for Security/JSONLoad when create_additions option is passed with other options in a hash. ([@​wktk][])
  • #14796: Handle logical and operator assignment nodes in variable branch handling. ([@​lovro-bikic][])

Changes

  • #14753: Add support for squish and squish! applied to heredoc to Layout/HeredocIndentation. ([@​lovro-bikic][])
  • #14798: Recognize Forwardable methods in Lint/DuplicateMethods. ([@​lovro-bikic][])
  • #14793: Make Lint/RedundantSplatExpansion aware of constant assignment. ([@​koic][])
  • #14770: Make Style/AccessModifierDeclarations aware of self class. ([@​koic][])
  • #14748: Add support for other Module member existence methods to Style/ModuleMemberExistenceCheck. ([@​lovro-bikic][])
  • #14795: Add AllowedMethods configuration to Style/ModuleMemberExistenceCheck. ([@​lovro-bikic][])
Commits
  • 11df34a Cut 1.84
  • af56871 Fix broken example
  • 4481685 Allow references to be redirects
  • 5cb3b0f Update Changelog
  • 2dc96ce [Fix #10956] Preserve source tabs in Clang and Tap formatters when displaying...
  • 5334618 Merge pull request #14798 from lovro-bikic/fix-14691
  • 38fd70c Add AllowedMethods configuration to Style/ModuleMemberExistenceCheck
  • cf1bdcf Merge pull request #14799 from HariprasanthMS/bug_14716
  • 882519b [Fix #14716] Fix infinite loop for Layout/LineLength with SplitStrings
  • 7f972a8 Fix #14691 Recognize Forwardable methods in Lint/DuplicateMethods
  • Additional commits viewable in compare view

Updates rubocop-md from 2.0.3 to 2.0.4

Changelog

Sourced from rubocop-md's changelog.

2.0.4 (2026-01-28)

  • Enable caching when no offenses detected.
Commits
  • d96f4a3 Bump 2.0.4
  • a006b52 Merge pull request #47 from byroot/fix-caching
  • 03c1346 Allow caching when there is no offenses
  • da7add1 Bump 2.0.3
  • 88d1fe8 Merge pull request #46 from rubocop/dependabot/github_actions/actions/checkout-6
  • 18bac0e Bump actions/checkout from 5 to 6
  • See full diff in compare view

Updates sorbet-static-and-runtime from 0.6.12897 to 0.6.12908

Release notes

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

sorbet 0.6.12907.20260129181839-da2049040

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12906.20260129154015-dc94ae822

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12905.20260129153947-6ac71ad31

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12904.20260128091224-d2d07c169

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12903.20260127155821-ca6ed6953

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12902.20260127155048-0e3ed53df

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12901.20260127100658-77c966f23

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12900.20260126131844-e554cf64f

... (truncated)

Commits

Updates sorbet-runtime from 0.6.12897 to 0.6.12908

Release notes

Sourced from sorbet-runtime's releases.

sorbet 0.6.12907.20260129181839-da2049040

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12906.20260129154015-dc94ae822

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12905.20260129153947-6ac71ad31

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12904.20260128091224-d2d07c169

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12903.20260127155821-ca6ed6953

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12902.20260127155048-0e3ed53df

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12901.20260127100658-77c966f23

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12900.20260126131844-e554cf64f

... (truncated)

Commits

Updates json from 2.18.0 to 2.18.1

Release notes

Sourced from json's releases.

v2.18.1

What's Changed

  • Fix a potential crash in very specific circumstance if GC triggers during a call to to_json without first invoking a user defined #to_json method.

Full Changelog: ruby/json@v2.18.0...v2.18.1

Changelog

Sourced from json's changelog.

2026-02-03 (2.18.1)

  • Fix a potential crash in very specific circumstance if GC triggers during a call to to_json without first invoking a user defined #to_json method.
Commits
  • 6ec6e7b Release 2.18.1
  • fff25c9 fbuffer_append_str: assume string
  • 79b6e16 Ensure Generator::State is kept on the stack
  • 062fcdd Improve class JSON intro
  • 1b276c8 Extract json_fast_memcpy16 for readability
  • 643ee11 Use __builtin_memcpy, if available, to copy overlapping byte ranges in copy_r...
  • 15eb40d Remove trailing spaces [ci skip]
  • 73818b8 initialize search.chunk_end to silence a warning about it being potentially u...
  • 86a5cce use a conditional to select SIMD implementation rather than pointer
  • a51317c Directly write to the output buffer when converting UTF32 to UTF8.
  • Additional commits viewable in compare view

Updates rspec-support from 3.13.6 to 3.13.7

Changelog

Sourced from rspec-support's changelog.

3.13.7 / 2026-01-28

Full Changelog

Bug Fixes:

  • Stop fuzzy matching causing false positives from Range objects. (Eric Mueller, rspec/rspec#298)
Commits
  • 47ebfe1 Add missing dates to changelog
  • 5cff10c v3.13.7
  • 76a1b8c Changelog for #298
  • 27b6de2 Merge pull request #298 from nevinera/fix-range-comparison-with-have-attributes
  • bac489e Skip is not combinatory so we need to include the ruby check too
  • 5aa0256 Change more :if / :unless to :skip
  • See full diff in compare view

Updates sorbet from 0.6.12897 to 0.6.12908

Release notes

Sourced from sorbet's releases.

sorbet 0.6.12907.20260129181839-da2049040

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12906.20260129154015-dc94ae822

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12905.20260129153947-6ac71ad31

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12904.20260128091224-d2d07c169

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12903.20260127155821-ca6ed6953

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12902.20260127155048-0e3ed53df

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12901.20260127100658-77c966f23

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12900.20260126131844-e554cf64f

... (truncated)

Commits

Updates sorbet-static from 0.6.12897 to 0.6.12908

Release notes

Sourced from sorbet-static's releases.

sorbet 0.6.12907.20260129181839-da2049040

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12906.20260129154015-dc94ae822

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12905.20260129153947-6ac71ad31

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12904.20260128091224-d2d07c169

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12903.20260127155821-ca6ed6953

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12902.20260127155048-0e3ed53df

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12901.20260127100658-77c966f23

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.12900.20260126131844-e554cf64f

... (truncated)

Commits

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

Bumps the bundler group with 4 updates in the /Library/Homebrew directory: [rubocop](https://github.com/rubocop/rubocop), [rubocop-md](https://github.com/rubocop/rubocop-md), [sorbet-static-and-runtime](https://github.com/sorbet/sorbet) and [rspec-support](https://github.com/rspec/rspec).


Updates `rubocop` from 1.82.1 to 1.84.0
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.82.1...v1.84.0)

Updates `rubocop-md` from 2.0.3 to 2.0.4
- [Release notes](https://github.com/rubocop/rubocop-md/releases)
- [Changelog](https://github.com/rubocop/rubocop-md/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-md@v2.0.3...v2.0.4)

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

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

Updates `json` from 2.18.0 to 2.18.1
- [Release notes](https://github.com/ruby/json/releases)
- [Changelog](https://github.com/ruby/json/blob/master/CHANGES.md)
- [Commits](ruby/json@v2.18.0...v2.18.1)

Updates `rspec-support` from 3.13.6 to 3.13.7
- [Changelog](https://github.com/rspec/rspec/blob/rspec-support-v3.13.7/rspec-support/Changelog.md)
- [Commits](rspec/rspec@rspec-support-v3.13.6...rspec-support-v3.13.7)

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

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

---
updated-dependencies:
- dependency-name: rubocop
  dependency-version: 1.84.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bundler
- dependency-name: rubocop-md
  dependency-version: 2.0.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: sorbet-static-and-runtime
  dependency-version: 0.6.12908
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: sorbet-runtime
  dependency-version: 0.6.12908
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: json
  dependency-version: 2.18.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: rspec-support
  dependency-version: 3.13.7
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: sorbet
  dependency-version: 0.6.12908
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: sorbet-static
  dependency-version: 0.6.12908
  dependency-type: indirect
  update-type: version-update:semver-patch
  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 Feb 6, 2026
@MikeMcQuaid MikeMcQuaid enabled auto-merge February 6, 2026 08:27
@MikeMcQuaid MikeMcQuaid added this pull request to the merge queue Feb 6, 2026
Merged via the queue into main with commit 296f699 Feb 6, 2026
39 checks passed
@MikeMcQuaid MikeMcQuaid deleted the dependabot/bundler/Library/Homebrew/bundler-5dd4003c55 branch February 6, 2026 09:00
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.

2 participants