Skip to content

build(deps): bump the bundler group across 2 directories with 10 updates - #21895

Merged
MikeMcQuaid merged 4 commits into
mainfrom
dependabot/bundler/Library/Homebrew/bundler-14ae5d499c
Apr 3, 2026
Merged

build(deps): bump the bundler group across 2 directories with 10 updates#21895
MikeMcQuaid merged 4 commits into
mainfrom
dependabot/bundler/Library/Homebrew/bundler-14ae5d499c

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 3, 2026

Copy link
Copy Markdown
Contributor

Bumps the bundler group with 2 updates in the /Library/Homebrew directory: rubocop and sorbet-static-and-runtime.
Bumps the bundler group with 4 updates in the /docs directory: sorbet-runtime, json, ffi and google-protobuf.

Updates rubocop from 1.85.1 to 1.86.0

Release notes

Sourced from rubocop's releases.

RuboCop v1.86.0

New features

Bug fixes

  • #15015: Fix Style/ConcatArrayLiterals autocorrect deleting code for percent literals with interpolation. (@​bbatsov)
  • #14897: Detect constant reassignment after class/module definition in Lint/ConstantReassignment. (@​ydakuka)
  • #11829: Fix false negatives for Lint/DuplicateMethods when duplicate methods are defined in anonymous classes and modules not assigned to a constant. (@​Darhazer)
  • #14988: Fix false negative in Style/RedundantParentheses when redundant parentheses around range literals in block body. (@​koic)
  • #14916: Fix false positive for Layout/MultilineMethodCallIndentation when method chain is inside a hash pair value passed to a multiline chained method call. (@​ydakuka)
  • #15010: Fix a false positive for Lint/DuplicateMethods when modules blocks are passed as method arguments. (@​5hun-s)
  • #15028: Fix a false positive for Lint/DuplicateMethods when the same method is defined in different anonymous module blocks passed to a no-receiver call (e.g. stub_const). (@​Darhazer)
  • #15021: Fix false positives in Layout/EmptyLineAfterGuardClause when using a guard clause followed by a multi-line guard clause with raise, fail, return, break, or next. (@​koic)
  • #15001: Fix false positives in Layout/RedundantLineBreak when setting InspectBlocks: true and using rescue or ensure in the block. (@​koic)
  • #14997: Fix false positives in Style/FileOpen when assigning File.open to an instance variable, class variable, global variable, or constant. (@​koic)
  • #15019: Fix false positives in Lint/DuplicateMethods when the same method is defined in anonymous module blocks passed to different receivers. (@​koic)
  • #14987: Complete ERB and Haml autocorrection in a single run. (@​alpaca-tc)
  • #15039: Fix incorrect autocorrect in Style/IfWithSemicolon when return with value is in the else branch. (@​koic)
  • #14930: Fix incorrect autocorrection for Style/IfUnlessModifier when multiple if/unless modifier forms are on the same line inside a collection. (@​ydakuka)
  • #14985: Fix incorrect autocorrection in Lint/SafeNavigationChain when chaining a method call after safe navigation in the if branch of a ternary. (@​koic)
  • #15009: Fix infinite loop in Layout/EndAlignment when end is followed by || or &&. (@​koic)
  • #14981: Fix spurious warning "does not support Safe/SafeAutoCorrect parameter" when those parameters are set for cops that don't have them in their default configuration. ([@​dduugg][])
  • #15043: Fix an error for Lint/UselessDefaultValueArgument when fetch without a receiver is inside a fetch block. (@​koic)
  • #15034: Fix incorrect autocorrection in Style/IfWithSemicolon when using single-line unless / ; / end. (@​koic)
  • #15015: Fix Style/NonNilCheck autocorrect for receivers containing spaces. (@​bbatsov)
  • #15015: Fix Style/RaiseArgs to allow anonymous keyword forwarding (raise Ex.new(**)). (@​bbatsov)
  • #14890: Fix a false positive for Lint/RedundantCopDisableDirective when a rubocop:disable comment is used to suppress Lint/EmptyWhen, Lint/EmptyConditionalBody, Lint/EmptyInPattern, or Style/SymbolProc. ([@​eugeneius][])
  • #15015: Fix false negative in Style/RedundantPercentQ for %q strings with interpolation-like syntax. (@​bbatsov)
  • #14984: Fix Style/AndOr adding unnecessary parentheses around return without arguments. ([@​eugeneius][])
  • #14945: Support files with multiple modifiers in Lint/UselessConstantScoping. ([@​h-lame][])
  • #15015: Fix Style/TrailingMethodEndStatement to detect singleton methods (def self.foo). (@​bbatsov)
  • #10822: Don't store results in cache if there are warnings. ([@​jonas054][])

Changes

  • #14718: Allow setting MaxFilesInCache to false to entirely disable cache pruning. ([@​byroot][])
  • #14989: Make Lint/RedundantSafeNavigation aware of safe navigation in conditional true branch. (@​koic)
  • #15041: Remove mcp gem from runtime dependencies. (@​koic)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.86.0 (2026-03-23)

New features

Bug fixes

  • #15015: Fix Style/ConcatArrayLiterals autocorrect deleting code for percent literals with interpolation. ([@​bbatsov][])
  • #14897: Detect constant reassignment after class/module definition in Lint/ConstantReassignment. ([@​ydakuka][])
  • #11829: Fix false negatives for Lint/DuplicateMethods when duplicate methods are defined in anonymous classes and modules not assigned to a constant. ([@​Darhazer][])
  • #14988: Fix false negative in Style/RedundantParentheses when redundant parentheses around range literals in block body. ([@​koic][])
  • #14916: Fix false positive for Layout/MultilineMethodCallIndentation when method chain is inside a hash pair value passed to a multiline chained method call. ([@​ydakuka][])
  • #15010: Fix a false positive for Lint/DuplicateMethods when modules blocks are passed as method arguments. ([@​5hun-s][])
  • #15028: Fix a false positive for Lint/DuplicateMethods when the same method is defined in different anonymous module blocks passed to a no-receiver call (e.g. stub_const). ([@​Darhazer][])
  • #15021: Fix false positives in Layout/EmptyLineAfterGuardClause when using a guard clause followed by a multi-line guard clause with raise, fail, return, break, or next. ([@​koic][])
  • #15001: Fix false positives in Layout/RedundantLineBreak when setting InspectBlocks: true and using rescue or ensure in the block. ([@​koic][])
  • #14997: Fix false positives in Style/FileOpen when assigning File.open to an instance variable, class variable, global variable, or constant. ([@​koic][])
  • #15019: Fix false positives in Lint/DuplicateMethods when the same method is defined in anonymous module blocks passed to different receivers. ([@​koic][])
  • #14987: Complete ERB and Haml autocorrection in a single run. ([@​alpaca-tc][])
  • #15039: Fix incorrect autocorrect in Style/IfWithSemicolon when return with value is in the else branch. ([@​koic][])
  • #14930: Fix incorrect autocorrection for Style/IfUnlessModifier when multiple if/unless modifier forms are on the same line inside a collection. ([@​ydakuka][])
  • #14985: Fix incorrect autocorrection in Lint/SafeNavigationChain when chaining a method call after safe navigation in the if branch of a ternary. ([@​koic][])
  • #15009: Fix infinite loop in Layout/EndAlignment when end is followed by || or &&. ([@​koic][])
  • #14981: Fix spurious warning "does not support Safe/SafeAutoCorrect parameter" when those parameters are set for cops that don't have them in their default configuration. ([@​dduugg][])
  • #15043: Fix an error for Lint/UselessDefaultValueArgument when fetch without a receiver is inside a fetch block. ([@​koic][])
  • #15034: Fix incorrect autocorrection in Style/IfWithSemicolon when using single-line unless / ; / end. ([@​koic][])
  • #15015: Fix Style/NonNilCheck autocorrect for receivers containing spaces. ([@​bbatsov][])
  • #15015: Fix Style/RaiseArgs to allow anonymous keyword forwarding (raise Ex.new(**)). ([@​bbatsov][])
  • #14890: Fix a false positive for Lint/RedundantCopDisableDirective when a rubocop:disable comment is used to suppress Lint/EmptyWhen, Lint/EmptyConditionalBody, Lint/EmptyInPattern, or Style/SymbolProc. ([@​eugeneius][])
  • #15015: Fix false negative in Style/RedundantPercentQ for %q strings with interpolation-like syntax. ([@​bbatsov][])
  • #14984: Fix Style/AndOr adding unnecessary parentheses around return without arguments. ([@​eugeneius][])
  • #14945: Support files with multiple modifiers in Lint/UselessConstantScoping. ([@​h-lame][])
  • #15015: Fix Style/TrailingMethodEndStatement to detect singleton methods (def self.foo). ([@​bbatsov][])
  • #10822: Don't store results in cache if there are warnings. ([@​jonas054][])

Changes

  • #14718: Allow setting MaxFilesInCache to false to entirely disable cache pruning. ([@​byroot][])
  • #14989: Make Lint/RedundantSafeNavigation aware of safe navigation in conditional true branch. ([@​koic][])
  • #15041: Remove mcp gem from runtime dependencies. ([@​koic][])
Commits
  • 2c1b30a Cut 1.86
  • d96701a Update Changelog
  • 9b019c7 [Fix rubocop#14916] Fix false positive for `Layout/MultilineMethodCallIndenta...
  • a49271d Fix incorrect autocorrection for Style/IfUnlessModifier when multiple if/...
  • 8d25311 Document MaxFilesInCache: false option for disabling cache pruning
  • 12c7d39 Detect constant reassignment after class/module definition in `Lint/ConstantR...
  • fbf175c Allow disabling cache cleanup
  • 3fcae5d [Fix #14961] Add AllowedParentClasses option to Style/EmptyClassDefinition
  • 4eba3e6 Memoize forwarded arg lookups in ArgumentsForwarding
  • fc300c7 [Fix #10822] Don't cache if there are warnings
  • Additional commits viewable in compare view

Updates sorbet-static-and-runtime from 0.6.13051 to 0.6.13066

Release notes

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

sorbet 0.6.13065.20260326134250-e27b77c64

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13064.20260325111024-5cd5a5633

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13063.20260325084812-bdb40e586

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13062.20260325102419-c5f3845a1

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13061.20260325102333-1755f8207

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13060.20260325102215-6c7b67d2b

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13059.20260324171908-18bdbbfcf

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13058.20260324164119-51d79244c

... (truncated)

Commits

Updates sorbet-runtime from 0.6.13051 to 0.6.13066

Release notes

Sourced from sorbet-runtime's releases.

sorbet 0.6.13081.20260402164400-04d285855

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13080.20260401175640-d43ac993d

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13079.20260401144245-219b72d36

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13078.20260401135453-606debbb5

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13077.20260401132818-4a0144cb2

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13076.20260401123324-90d0dbd31

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13075.20260401123307-4de56a369

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13074.20260401114123-559850f25

... (truncated)

Commits

Updates json from 2.19.2 to 2.19.3

Release notes

Sourced from json's releases.

v2.19.3

  • Fix handling of unescaped control characters preceeded by a backslash.

Full Changelog: ruby/json@v2.19.2...v2.19.3

Changelog

Sourced from json's changelog.

2026-03-25 (2.19.3)

  • Fix handling of unescaped control characters preceeded by a backslash.
Commits
  • 779d441 Release 2.19.3
  • 75e2f64 Fix handling of unescaped control characters preceeded by a backslash
  • See full diff in compare view

Updates parallel from 1.27.0 to 1.28.0

Commits
  • e141db9 v1.28.0
  • 679f6ec Merge pull request #360 from grosser/grosser/dump
  • 0da8239 dump undumpable exceptions without cause if that fixes the issue
  • 8d638d0 Merge pull request #358 from grosser/grosser/up
  • 998ce26 bundle and cleanup test duplication
  • See full diff in compare view

Updates parser from 3.3.10.2 to 3.3.11.1

Changelog

Sourced from parser's changelog.

v3.3.11.1 (2026-03-27)

API modifications:

  • Bump maintenance branches to 3.2.11 (#1089) (Koichi ITO)

v3.3.11.0 (2026-03-26)

API modifications:

  • Bump maintenance branches to 3.3.11 (#1088) (Koichi ITO)
Commits

Updates sorbet from 0.6.13051 to 0.6.13066

Release notes

Sourced from sorbet's releases.

sorbet 0.6.13065.20260326134250-e27b77c64

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13064.20260325111024-5cd5a5633

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13063.20260325084812-bdb40e586

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13062.20260325102419-c5f3845a1

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13061.20260325102333-1755f8207

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13060.20260325102215-6c7b67d2b

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13059.20260324171908-18bdbbfcf

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13058.20260324164119-51d79244c

... (truncated)

Commits

Updates sorbet-static from 0.6.13051 to 0.6.13066

Release notes

Sourced from sorbet-static's releases.

sorbet 0.6.13065.20260326134250-e27b77c64

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13064.20260325111024-5cd5a5633

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13063.20260325084812-bdb40e586

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13062.20260325102419-c5f3845a1

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13061.20260325102333-1755f8207

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13060.20260325102215-6c7b67d2b

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13059.20260324171908-18bdbbfcf

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13058.20260324164119-51d79244c

... (truncated)

Commits

Updates sorbet-runtime from 0.6.13059 to 0.6.13082

Release notes

Sourced from sorbet-runtime's releases.

sorbet 0.6.13081.20260402164400-04d285855

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13080.20260401175640-d43ac993d

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13079.20260401144245-219b72d36

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13078.20260401135453-606debbb5

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13077.20260401132818-4a0144cb2

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13076.20260401123324-90d0dbd31

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13075.20260401123307-4de56a369

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13074.20260401114123-559850f25

... (truncated)

Commits

Updates json from 2.19.2 to 2.19.3

Release notes

Sourced from json's releases.

v2.19.3

  • Fix handling of unescaped control characters preceeded by a backslash.

Full Changelog: ruby/json@v2.19.2...v2.19.3

Changelog

Sourced from json's changelog.

2026-03-25 (2.19.3)

  • Fix handling of unescaped control characters preceeded by a backslash.
Commits
  • 779d441 Release 2.19.3
  • 75e2f64 Fix handling of unescaped control characters preceeded by a backslash
  • See full diff in compare view

Updates ffi from 1.17.3 to 1.17.4

Changelog

Sourced from ffi's changelog.

1.17.4 / 2026-03-26

Fixed:

  • Fix union by-value ABI mismatch with float and double types on ARM64 and X86_64. See #1177 and #1178 for details.
  • Exclude libffi files, which are unnecessary. #1176
Commits
  • 949809c Bump VERSION to 1.17.4
  • 9271775 Merge pull request #1178 from cfis/fix-union-arm64-abi
  • 3743839 Skip failing specs on JRuby
  • 7078a4e Fix MSVC build.
  • 93a85ca Move union-by-value argument tests to the section excluded by Truffleruby
  • b0c95a9 Correctly handle unions with mixed floating point types.
  • 5348a51 Simplify the union type selection
  • dd15f68 Extend the union tests
  • 372045e Fix union by-value ABI mismatch on ARM64. See #1177 for details.
  • 60dbd77 Merge pull request #1180 from ffi/add-more-arm64
  • Additional commits viewable in compare view

Updates google-protobuf from 4.34.0 to 4.34.1

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 2 updates in the /Library/Homebrew directory: [rubocop](https://github.com/rubocop/rubocop) and [sorbet-static-and-runtime](https://github.com/sorbet/sorbet).
Bumps the bundler group with 4 updates in the /docs directory: [sorbet-runtime](https://github.com/sorbet/sorbet), [json](https://github.com/ruby/json), [ffi](https://github.com/ffi/ffi) and [google-protobuf](https://github.com/protocolbuffers/protobuf).


Updates `rubocop` from 1.85.1 to 1.86.0
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.85.1...v1.86.0)

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

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

Updates `json` from 2.19.2 to 2.19.3
- [Release notes](https://github.com/ruby/json/releases)
- [Changelog](https://github.com/ruby/json/blob/master/CHANGES.md)
- [Commits](ruby/json@v2.19.2...v2.19.3)

Updates `parallel` from 1.27.0 to 1.28.0
- [Commits](grosser/parallel@v1.27.0...v1.28.0)

Updates `parser` from 3.3.10.2 to 3.3.11.1
- [Changelog](https://github.com/whitequark/parser/blob/master/CHANGELOG.md)
- [Commits](whitequark/parser@v3.3.10.2...v3.3.11.1)

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

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

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

Updates `json` from 2.19.2 to 2.19.3
- [Release notes](https://github.com/ruby/json/releases)
- [Changelog](https://github.com/ruby/json/blob/master/CHANGES.md)
- [Commits](ruby/json@v2.19.2...v2.19.3)

Updates `ffi` from 1.17.3 to 1.17.4
- [Changelog](https://github.com/ffi/ffi/blob/master/CHANGELOG.md)
- [Commits](ffi/ffi@v1.17.3...v1.17.4)

Updates `google-protobuf` from 4.34.0 to 4.34.1
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Commits](https://github.com/protocolbuffers/protobuf/commits)

---
updated-dependencies:
- dependency-name: rubocop
  dependency-version: 1.86.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bundler
- dependency-name: sorbet-static-and-runtime
  dependency-version: 0.6.13066
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: sorbet-runtime
  dependency-version: 0.6.13066
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: json
  dependency-version: 2.19.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: parallel
  dependency-version: 1.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: bundler
- dependency-name: parser
  dependency-version: 3.3.11.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: sorbet
  dependency-version: 0.6.13066
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: sorbet-static
  dependency-version: 0.6.13066
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: sorbet-runtime
  dependency-version: 0.6.13082
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: json
  dependency-version: 2.19.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: ffi
  dependency-version: 1.17.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: google-protobuf
  dependency-version: 4.34.1
  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 Apr 3, 2026
@MikeMcQuaid
MikeMcQuaid enabled auto-merge April 3, 2026 09:15
@MikeMcQuaid
MikeMcQuaid added this pull request to the merge queue Apr 3, 2026
Merged via the queue into main with commit 7ceebbf Apr 3, 2026
42 checks passed
@MikeMcQuaid
MikeMcQuaid deleted the dependabot/bundler/Library/Homebrew/bundler-14ae5d499c branch April 3, 2026 10:04
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