Skip to content

Bump the bundler group with 10 updates#70

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bundler/bundler-e59cb57f6d
Open

Bump the bundler group with 10 updates#70
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bundler/bundler-e59cb57f6d

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github May 29, 2026

Bumps the bundler group with 10 updates:

Package From To
packwerk 3.2.3 3.3.0
railties 8.1.2 8.1.3
zeitwerk 2.7.5 2.8.2
minitest 6.0.2 6.0.6
mocha 3.0.2 3.1.0
rake 13.3.1 13.4.2
rubocop 1.85.1 1.86.2
rubocop-gusto 10.6.0 10.9.3
sorbet 0.6.13258 0.6.13261
sorbet-static 0.6.13258 0.6.13261

Updates packwerk from 3.2.3 to 3.3.0

Release notes

Sourced from packwerk's releases.

3.3.0

What's Changed

New Contributors

Full Changelog: Shopify/packwerk@v3.2.3...v3.3.0

Commits
  • 66af39f Prepare for 3.3.0
  • dbe4349 Merge pull request #455 from Shopify/at/rbs-comment-signatures
  • c0f9886 Always use Set[Symbol] for custom associations in AssociationInspector and Ru...
  • 7fd729b Extract local variable to avoid confusing indentation
  • fe066cb Remove dependency to sorbet-runtime
  • 68dfaee Translate T::Struct to bare Ruby class
  • fb5374f Translate T.type_alias to RBS comments
  • ddcc951 Translate T.bind as RBS comments
  • c530c29 Translate T.unsafe to RBS comments
  • 426ce88 Translate T::Generics to RBS comments
  • Additional commits viewable in compare view

Updates railties from 8.1.2 to 8.1.3

Release notes

Sourced from railties's releases.

8.1.3

Active Support

  • Fix JSONGemCoderEncoder to correctly serialize custom object hash keys.

    When hash keys are custom objects whose as_json returns a Hash, the encoder now calls to_s on the original key object instead of on the as_json result.

    Before: hash = {CustomKey.new(123) => "value"} hash.to_json # => {"{:id=>123}":"value"}

    After: hash.to_json # => {"custom_123":"value"}

    Dan Sharp

  • Fix inflections to better handle overlapping acronyms.

    ActiveSupport::Inflector.inflections(:en) do |inflect|
      inflect.acronym "USD"
      inflect.acronym "USDC"
    end
    "USDC".underscore # => "usdc"

    Said Kaldybaev

  • Silence Dalli 4.0+ warning when using ActiveSupport::Cache::MemCacheStore.

    zzak

Active Model

  • Fix Ruby 4.0 delegator warning when calling inspect on attributes.

    Hammad Khan

  • Fix NoMethodError when deserialising Type::Integer objects marshalled under Rails 8.0.

    The performance optimisation that replaced @range with @max/@min broke Marshal compatibility. Objects serialised under 8.0 (with @range) and deserialised under 8.1 (expecting @max/@min) would crash with undefined method '<=' for nil because Marshal.load restores instance variables without calling initialize.

... (truncated)

Changelog

Sourced from railties's changelog.

Rails 8.1.3 (March 24, 2026)

  • Add libvips to generated ci.yml

    Conditionally adds libvips to ci.yml.

    Steve Polito

Rails 8.1.2.1 (March 23, 2026)

  • No changes.
Commits
  • fa8f081 Preparing for 8.1.3 release
  • 63cef3d Merge branch '8-1-sec' into 8-1-stable
  • 1db4b89 Preparing for 8.1.2.1 release
  • 635841a Merge pull request #56911 from toy/postgresql-9.5-required
  • b8f4e47 Merge pull request #53417 from vinibispo/fix/skip_storage-changes-gitignore
  • 6b0ebde Merge pull request #56693 from r7kamura/configuration-duplicated-if
  • 54aa1c5 Merge pull request #56523 from stevepolitodesign/sp-cl-libvips
  • See full diff in compare view

Updates zeitwerk from 2.7.5 to 2.8.2

Changelog

Sourced from zeitwerk's changelog.

2.8.2 (23 May 2026)

  • on_load and on_unload accept constant paths with leading colons. For example:

    loader.on_load('::User') { ... }
  • on_load and on_unload validate that their input is a constant path. For example:

    loader.on_load(':User') { ... }

    raises NameError.

2.8.1 (19 May 2026)

  • Replace anonymous block parameters with regular named ones.

    Ruby 3.3.0 has a bug: it does not parse anonymous block parameters, which were introduced in Ruby 3.1.

    While this is a Ruby bug and people could upgrade to 3.3.1, I prefer users just do not hit this. At the end of the day, it is cosmetic.

2.8.0 (18 May 2026)

  • Adds support for namespace files, nsfiles for short.

    If a loader has an nsfile configured (nil by default):

    loader.nsfile = 'ns.rb' # must be set before setup

    explicit namespaces can be defined by such special file inside their directories:

    my_component/ns.rb     # MyComponent
    my_component/widget.rb # MyComponent::Widget
    

    This may be handy for self-contained units for which a my_component.rb file in the parent directory would feel unnatural.

    If an nsfile is set, you can still define explicit namespaces as always. Both styles can coexist in the project. However, it is an error condition to try to define the same namespace using both conventions.

... (truncated)

Commits
  • 76f0790 Ready for 2.8.2
  • 14cff5e Refactor cpath validation for TruffleRuby
  • 8c26393 on_load and on_unload validate their input is a constant path
  • ea55f02 Add a constant path validator
  • 80e925b Let on_load/on_unload use a sentinel for 0 args
  • 2a25bce Add RuboCop to CI
  • 198fe83 Linting
  • 27b9a58 Merge pull request #335 from Shopify/on_load_qualifier
  • 14e4143 Ready for 2.8.1
  • 94d607d Remove anonymous blocks
  • Additional commits viewable in compare view

Updates minitest from 6.0.2 to 6.0.6

Changelog

Sourced from minitest's changelog.

=== 6.0.6 / 2026-04-30

  • 2 bug fixes:

    • Fix using assert_equal/same/nil w/ BasicObject by comparing w/ nil == exp. (mtasaka)
    • Removed private Assertions#_where as it is no longer used.

=== 6.0.5 / 2026-04-20

  • 2 bug fixes:

    • Avoid circular requires in lib/minitest/server_plugin.rb.
    • Raise TypeError if assert_raises is passed anything but modules/classes.

=== 6.0.4 / 2026-04-14

  • 1 bug fix:

    • Fixed refute_predicate to call assert_respond_to w/ include_all:true like assert_predicate does. (jparker)

=== 6.0.3 / 2026-03-31

  • 1 bug fix:

    • assert_same(nil, value) no longer allowed. Use assert_nil to be explicit. (paddor)
Commits
  • f6180b0 prepped for release
  • 23bc7f2 - Removed private Assertions#_where as it is no longer used.
  • c471347 - Fix using assert_equal/same/nil w/ BasicObject by comparing w/ nil == exp...
  • 89c3e62 Branching minitest to version 6.0.5
  • 6790f86 - Raise TypeError if assert_raises is passed anything but modules/classes.
  • 235fa5b - Avoid circular requires in lib/minitest/server_plugin.rb.
  • 5f0482e prepped for release
  • b12f87f - Fixed refute_predicate to call assert_respond_to w/ include_all:true like a...
  • 649b075 prepped for release
  • a2d0904 - assert_same(nil, value) no longer allowed. Use assert_nil to be explicit. (...
  • See full diff in compare view

Updates mocha from 3.0.2 to 3.1.0

Changelog

Sourced from mocha's changelog.

3.1.0

External changes

  • Format warnings consistently and include source location (#794)

Internal changes

  • Fix Style/OneClassPerFile violations (#796)
  • Remove mise.toml which was added accidentally (6c5f84db)
  • Add .ruby-version to .gitignore (8516ccc1)
Commits
  • 3d08fea [skip ci] Update documentation for v3.1.0
  • 55b7113 Bump version to 3.1.0 & prepare for release
  • 84ff8a2 Merge pull request #794 from freerange/format-warnings-consistently-and-inclu...
  • c569071 Make Expectation#definition_location consistent
  • 8e2c12a Exclude source code from deprecation warning
  • 69f93fa Extract BacktraceFilter#exclude?
  • 0251ec1 Rename block variable from location -> line
  • 88e22e4 Move source location to end of warning message
  • 1713bfc Display source location for all warnings
  • e5a8e7b Distinguish deprecation warnings in tests
  • Additional commits viewable in compare view

Updates rake from 13.3.1 to 13.4.2

Commits
  • 503b8ec v13.4.2
  • 46038e7 Merge pull request #723 from ruby/fix/testopts-preserve-existing-value
  • 604a3d9 Isolate TESTOPTS env in TestRakeTestTask setup/teardown
  • 5886caa Preserve ENV["TESTOPTS"] when verbose is enabled
  • 92193ac v13.4.1
  • b74be0b Merge pull request #721 from ruby/fix/add-options-to-gemspec
  • 829f66d Add lib/rake/options.rb to gemspec
  • 2d55bc4 v13.4.0
  • 1415070 Exclude dependabot updates from release note
  • b3dc948 Merge pull request #713 from pvdb/simplify_standard_system_dir
  • Additional commits viewable in compare view

Updates rubocop from 1.85.1 to 1.86.2

Release notes

Sourced from rubocop's releases.

RuboCop v1.86.2

New features

Bug fixes

  • #15156: Fix an error for Style/HashLookupMethod when chaining fetch (or []) calls on the same expression. (@​koic)
  • #15161: Fix an error for Style/ReduceToHash when nested each_with_object/inject/reduce calls would build hashes. (@​koic)
  • #15144: Fix an error in Style/SoleNestedConditional when autocorrecting nested conditionals containing comments. (@​koic)
  • #15040: Exclude constants from Style/ModuleMemberExistenceCheck. (@​t-daisuke)
  • #15155: Fix false negatives in Style/RedundantSelf when an explicit self receiver in one scope matches the LHS of an ||=, &&=, or op_asgn in another scope. (@​koic)
  • #15107: Fix false positives in Lint/RequireRelativeSelfPath when a non-.rb file uses require_relative with its own basename. (@​koic)
  • #15137: Fix incorrect "does not support IndentationWidth parameter" warning for Layout/ClosingParenthesisIndentation and Layout/CommentIndentation. (@​koic)
  • #15148: Fix false positives in Lint/RedundantSafeNavigation when safe navigation appears in rescue or ensure bodies. (@​koic)
  • #15147: Fix false positives in Lint/RedundantSafeNavigation when safe navigation appears in the body of unless. (@​koic)
  • #15163: Fix false positives in Style/Copyright when Notice pattern starts with \A#, uses \s metacharacters, or has multiple spaces after #. (@​koic)
  • #10179: Fix false positives in Style/DocumentDynamicEvalDefinition when the heredoc contains an escaped interpolation (\#{...}). (@​eyupcanakman)
  • #15154: Fix bug where specifying --out disables parallelization. (@​deivid-rodriguez)
  • #15106: Fix TargetFinder to work correctly inside hidden parent directories. (@​alpaca-tc)
  • #15102: Fix FrozenError in DisabledConfigFormatter for frozen array config parameters. (@​koic)
  • #15141: Fix incorrect autocorrect for Gemspec/RequireMFA causing an infinite loop when rubygems_mfa_required metadata uses a symbol key. (@​koic)
  • #15142: Fix infinite loop for --disable-uncorrectable and offense near heredoc. (@​jonas054)
  • #15054: Fix false positive for Layout/MultilineMethodCallIndentation when a dot-aligned method chain is inside a hash pair value. (@​nicolas-finary)
  • #15136: Fix false positive for Lint/MissingCopEnableDirective when # rubocop:disable is wrapped in a # rubocop:push / # rubocop:pop block. (@​koic)
  • #15115: Fix an incorrect autocorrect in Style/RegexpLiteral when the regexp contains unbalanced braces that conflict with the preferred %r delimiters. (@​koic)
  • #15130: Fix incorrect autocorrect in Style/Copyright when AutocorrectNotice lacks a # prefix or Notice pattern starts with ^#. (@​koic)
  • #14821: Fix Style/IfInsideElse autocorrect moving comments into the wrong branch when a comment precedes the nested if in an else. (@​hammadxcm)
  • #14583: Fix template extractor applying only the last fragment's autocorrection. (@​zeronosu77108)
  • #14971: Fix false positive for Style/WhileUntilModifier when the body is a conditional. (@​fujitanisora)

RuboCop v1.86.1

Bug fixes

  • #11051: Fix Style/AccessModifierDeclarations inline autocorrect dropping comments between the access modifier and the following method definition. ([@​dduugg][])
  • #14665: Cache plugin integration in CopHelper to avoid repeated loading. ([@​55728][])
  • #15091: Fix Lint/DuplicateMethods false positives for anonymous classes in constant assignments and method return values. ([@​eugeneius][])
  • #15055: Fix Lint/DuplicateMethods false positives with anonymous classes inside blocks (e.g. RSpec let, describe). ([@​ShkumbinDelija][])

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.86.2 (2026-05-14)

New features

Bug fixes

  • #15156: Fix an error for Style/HashLookupMethod when chaining fetch (or []) calls on the same expression. ([@​koic][])
  • #15161: Fix an error for Style/ReduceToHash when nested each_with_object/inject/reduce calls would build hashes. ([@​koic][])
  • #15144: Fix an error in Style/SoleNestedConditional when autocorrecting nested conditionals containing comments. ([@​koic][])
  • #15040: Exclude constants from Style/ModuleMemberExistenceCheck. ([@​t-daisuke][])
  • #15155: Fix false negatives in Style/RedundantSelf when an explicit self receiver in one scope matches the LHS of an ||=, &&=, or op_asgn in another scope. ([@​koic][])
  • #15107: Fix false positives in Lint/RequireRelativeSelfPath when a non-.rb file uses require_relative with its own basename. ([@​koic][])
  • #15137: Fix incorrect "does not support IndentationWidth parameter" warning for Layout/ClosingParenthesisIndentation and Layout/CommentIndentation. ([@​koic][])
  • #15148: Fix false positives in Lint/RedundantSafeNavigation when safe navigation appears in rescue or ensure bodies. ([@​koic][])
  • #15147: Fix false positives in Lint/RedundantSafeNavigation when safe navigation appears in the body of unless. ([@​koic][])
  • #15163: Fix false positives in Style/Copyright when Notice pattern starts with \A#, uses \s metacharacters, or has multiple spaces after #. ([@​koic][])
  • #10179: Fix false positives in Style/DocumentDynamicEvalDefinition when the heredoc contains an escaped interpolation (\#{...}). ([@​eyupcanakman][])
  • #15154: Fix bug where specifying --out disables parallelization. ([@​deivid-rodriguez][])
  • #15106: Fix TargetFinder to work correctly inside hidden parent directories. ([@​alpaca-tc][])
  • #15102: Fix FrozenError in DisabledConfigFormatter for frozen array config parameters. ([@​koic][])
  • #15141: Fix incorrect autocorrect for Gemspec/RequireMFA causing an infinite loop when rubygems_mfa_required metadata uses a symbol key. ([@​koic][])
  • #15142: Fix infinite loop for --disable-uncorrectable and offense near heredoc. ([@​jonas054][])
  • #15054: Fix false positive for Layout/MultilineMethodCallIndentation when a dot-aligned method chain is inside a hash pair value. ([@​nicolas-finary][])
  • #15136: Fix false positive for Lint/MissingCopEnableDirective when # rubocop:disable is wrapped in a # rubocop:push / # rubocop:pop block. ([@​koic][])
  • #15115: Fix an incorrect autocorrect in Style/RegexpLiteral when the regexp contains unbalanced braces that conflict with the preferred %r delimiters. ([@​koic][])
  • #15130: Fix incorrect autocorrect in Style/Copyright when AutocorrectNotice lacks a # prefix or Notice pattern starts with ^#. ([@​koic][])
  • #14821: Fix Style/IfInsideElse autocorrect moving comments into the wrong branch when a comment precedes the nested if in an else. ([@​hammadxcm][])
  • #14583: Fix template extractor applying only the last fragment's autocorrection. ([@​zeronosu77108][])
  • #14971: Fix false positive for Style/WhileUntilModifier when the body is a conditional. ([@​fujitanisora][])

1.86.1 (2026-04-09)

Bug fixes

  • #11051: Fix Style/AccessModifierDeclarations inline autocorrect dropping comments between the access modifier and the following method definition. ([@​dduugg][])
  • #14665: Cache plugin integration in CopHelper to avoid repeated loading. ([@​55728][])
  • #15091: Fix Lint/DuplicateMethods false positives for anonymous classes in constant assignments and method return values. ([@​eugeneius][])
  • #15055: Fix Lint/DuplicateMethods false positives with anonymous classes inside blocks (e.g. RSpec let, describe). ([@​ShkumbinDelija][])
  • #15035: Exclude included_modules from Style/ModuleMemberExistenceCheck. ([@​koic][])
  • #15087: Fix false positive for Style/RedundantLineContinuation when using interpolated string literals. ([@​koic][])
  • #14361: Fix false positive in file_to_include? when a relative Include pattern matches a parent directory name in the absolute file path. ([@​jonas054][])
  • #15090: Fix false positives for Layout/EmptyLineAfterGuardClause when consecutive guard clauses use and return. ([@​eugeneius][])
  • #15070: Fix false positive for Lint/RedundantSafeNavigation when chained safe navigation is used in a conditional expression with InferNonNilReceiver enabled. ([@​koic][])
  • #15074: Fix false positives in Style/RedundantParentheses when using parentheses around an endless range in assignment. ([@​koic][])
  • #15048: Fix issue where the url_for is missing for Cops without instance methods. ([@​Fryguy][])
  • #15051: Fix Style/RedundantParentheses handling of beginless ranges. ([@​oggy][])
  • #14980: Fix Lint/Syntax zero-length diagnostic range for syntax errors at EOF. ([@​55728][])
  • #15084: Handle heredocs with methods calls correctly when fixing guard clauses. ([@​G-Rath][])

... (truncated)

Commits
  • e513d33 Cut 1.86.2
  • 5fea1b5 Update Changelog
  • 2a3dfcd Don't use Registry#to_h
  • 836b275 Simplify registry internals
  • 90348d5 Fix false positives in Style/Copyright
  • 7419163 Fix extension suggestion documentation link
  • e467335 Merge pull request #15161 from koic/fix_an_error_for_style_reduce_to_hash.md
  • bd48b6b Merge pull request #15160 from lovro-bikic/autoload-mixins
  • b9cda61 Autoload mixins instead of requiring them
  • 55a8278 Fix an error for Style/ReduceToHash cop
  • Additional commits viewable in compare view

Updates rubocop-gusto from 10.6.0 to 10.9.3

Release notes

Sourced from rubocop-gusto's releases.

v10.9.3

10.9.3 (2026-05-27)

Bug Fixes

  • stop overriding AllCops scope in shared configs (#117) (6e1f5db)

v10.9.2

10.9.2 (2026-05-22)

Bug Fixes

  • upload gem from pkg/ to GitHub release (#114) (de0530e)

v10.9.1

10.9.1 (2026-05-22)

Bug Fixes

v10.9.0

10.9.0 (2026-05-22)

Features

  • make rubocop-rspec move/scatter cops Sorbet-sig-aware (#107) (b3f1449)

v10.8.1

10.8.1 (2026-03-30)

Bug Fixes

  • Change runner configuration to use custom group (#95) (87af85d)
  • correct release-please-action pinned SHA (#89) (87db13a)
  • pin GitHub Actions to commit SHAs to prevent supply-chain attacks (#85) (bc85834)
  • remove extra empty line at block body end in execute_migration_spec (87af85d)
  • use GitHub App token in release-please to trigger CI on PRs (#98) (a2d3171)
Changelog

Sourced from rubocop-gusto's changelog.

10.9.3 (2026-05-27)

Bug Fixes

  • stop overriding AllCops scope in shared configs (#117) (6e1f5db)

10.9.2 (2026-05-22)

Bug Fixes

  • upload gem from pkg/ to GitHub release (#114) (de0530e)

10.9.1 (2026-05-22)

Bug Fixes

10.9.0 (2026-05-22)

Features

  • make rubocop-rspec move/scatter cops Sorbet-sig-aware (#107) (b3f1449)

10.8.1 (2026-03-30)

Bug Fixes

  • Change runner configuration to use custom group (#95) (87af85d)
  • correct release-please-action pinned SHA (#89) (87db13a)
  • pin GitHub Actions to commit SHAs to prevent supply-chain attacks (#85) (bc85834)
  • remove extra empty line at block body end in execute_migration_spec (87af85d)
  • use GitHub App token in release-please to trigger CI on PRs (#98) (a2d3171)

10.7.0

  • Improve Rack/LowercaseHeaderKeys for Rack 3 migration
  • Change Style/StringLiterals EnforcedStyle from always to always_true
Commits

Updates sorbet from 0.6.13258 to 0.6.13261

Release notes

Sourced from sorbet's releases.

sorbet 0.6.13260.20260528183631-c567212c0

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13259.20260528134202-44367fec6

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13258.20260528114137-6098f4268

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.13258', :group => :development
gem 'sorbet-runtime', '0.6.13258'
Commits

Updates sorbet-static from 0.6.13258 to 0.6.13261

Release notes

Sourced from sorbet-static's releases.

sorbet 0.6.13260.20260528183631-c567212c0

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13259.20260528134202-44367fec6

To use Sorbet add this line to your Gemfile:

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

sorbet 0.6.13258.20260528114137-6098f4268

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.13258', :group => :development
gem 'sorbet-runtime', '0.6.13258'
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 10 updates:

| Package | From | To |
| --- | --- | --- |
| [packwerk](https://github.com/Shopify/packwerk) | `3.2.3` | `3.3.0` |
| [railties](https://github.com/rails/rails) | `8.1.2` | `8.1.3` |
| [zeitwerk](https://github.com/fxn/zeitwerk) | `2.7.5` | `2.8.2` |
| [minitest](https://github.com/minitest/minitest) | `6.0.2` | `6.0.6` |
| [mocha](https://github.com/freerange/mocha) | `3.0.2` | `3.1.0` |
| [rake](https://github.com/ruby/rake) | `13.3.1` | `13.4.2` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.85.1` | `1.86.2` |
| [rubocop-gusto](https://github.com/gusto/rubocop-gusto) | `10.6.0` | `10.9.3` |
| [sorbet](https://github.com/sorbet/sorbet) | `0.6.13258` | `0.6.13261` |
| [sorbet-static](https://github.com/sorbet/sorbet) | `0.6.13258` | `0.6.13261` |


Updates `packwerk` from 3.2.3 to 3.3.0
- [Release notes](https://github.com/Shopify/packwerk/releases)
- [Commits](Shopify/packwerk@v3.2.3...v3.3.0)

Updates `railties` from 8.1.2 to 8.1.3
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v8.1.3/railties/CHANGELOG.md)
- [Commits](rails/rails@v8.1.2...v8.1.3)

Updates `zeitwerk` from 2.7.5 to 2.8.2
- [Changelog](https://github.com/fxn/zeitwerk/blob/main/CHANGELOG.md)
- [Commits](fxn/zeitwerk@v2.7.5...v2.8.2)

Updates `minitest` from 6.0.2 to 6.0.6
- [Changelog](https://github.com/minitest/minitest/blob/master/History.rdoc)
- [Commits](minitest/minitest@v6.0.2...v6.0.6)

Updates `mocha` from 3.0.2 to 3.1.0
- [Changelog](https://github.com/freerange/mocha/blob/main/RELEASE.md)
- [Commits](freerange/mocha@v3.0.2...v3.1.0)

Updates `rake` from 13.3.1 to 13.4.2
- [Release notes](https://github.com/ruby/rake/releases)
- [Changelog](https://github.com/ruby/rake/blob/master/History.rdoc)
- [Commits](ruby/rake@v13.3.1...v13.4.2)

Updates `rubocop` from 1.85.1 to 1.86.2
- [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.2)

Updates `rubocop-gusto` from 10.6.0 to 10.9.3
- [Release notes](https://github.com/gusto/rubocop-gusto/releases)
- [Changelog](https://github.com/Gusto/rubocop-gusto/blob/main/CHANGELOG.md)
- [Commits](Gusto/rubocop-gusto@v10.6.0...v10.9.3)

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

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

---
updated-dependencies:
- dependency-name: packwerk
  dependency-version: 3.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bundler
- dependency-name: railties
  dependency-version: 8.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: zeitwerk
  dependency-version: 2.8.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bundler
- dependency-name: minitest
  dependency-version: 6.0.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: mocha
  dependency-version: 3.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bundler
- dependency-name: rake
  dependency-version: 13.4.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bundler
- dependency-name: rubocop
  dependency-version: 1.86.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bundler
- dependency-name: rubocop-gusto
  dependency-version: 10.9.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bundler
- dependency-name: sorbet
  dependency-version: 0.6.13261
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: sorbet-static
  dependency-version: 0.6.13261
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bundler
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label May 29, 2026
@dependabot dependabot Bot requested a review from a team as a code owner May 29, 2026 17:59
@dependabot dependabot Bot added ruby Pull requests that update ruby code dependencies Pull requests that update a dependency file labels May 29, 2026
@github-project-automation github-project-automation Bot moved this to Triage in Modularity May 29, 2026
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

Status: Triage

Development

Successfully merging this pull request may close these issues.

0 participants