Skip to content

build(deps): Bump the rubocop group across 1 directory with 8 updates #2521

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the rubocop group with 7 updates in the / directory:

Package From To
language_server-protocol 3.17.0.3 3.17.0.4
parser 3.3.3.0 3.3.7.1
rubocop-ast 1.31.3 1.38.1
rubocop-md 1.2.2 2.0.0
rubocop-minitest 0.35.0 0.37.1
rubocop-performance 1.21.1 1.24.0
rubocop-rails 2.25.0 2.30.2

Updates language_server-protocol from 3.17.0.3 to 3.17.0.4

Changelog

Sourced from language_server-protocol's changelog.

3.17.0.4

  • Add #close to Reader and Writer (#112)
Commits

Updates parser from 3.3.3.0 to 3.3.7.1

Changelog

Sourced from parser's changelog.

v3.3.7.1 (2025-02-05)

API modifications:

  • parser/current: add -dev prefix to 3.4 branch (#1067) (Ilya Bylich)
  • parser/current: bump 3.2 branch to 3.2.7 (#1066) (Ilya Bylich)

v3.3.7.0 (2025-01-16)

API modifications:

  • Bump maintenance branches to 3.3.7 (#1061) (Koichi ITO)
  • bump 3.4 branch, remove 3.0 from CI (EOL) (#1057) (Ilya Bylich)
  • assert that version-specific checks actually run against at least one version (#1050) (Earlopain)

Features implemented:

  • ruby34.y: reject return in singleton class (#1048) (Earlopain)

Bugs fixed:

  • Fix ruby-parse with a folder ending in .rb (#1047) (Earlopain)

v3.3.6.0 (2024-11-05)

API modifications:

  • Bump maintenance branches to 3.3.6 (#1045) (Koichi ITO)

v3.3.5.1 (2024-10-31)

API modifications:

  • Bump maintenance branches to 3.2.6 (#1044) (Koichi ITO)

v3.3.5.0 (2024-09-04)

API modifications:

  • Bump maintenance branches to 3.3.5 (#1039) (Koichi ITO)

v3.3.4.2 (2024-08-08)

Bugs fixed:

  • Fix errros in the ascii specs of RuboCop (#1037) (Koichi ITO)

v3.3.4.1 (2024-08-07)

API modifications:

  • Bump 3.2 branch to 3.2.5. (#1036) (Ilya Bylich)

... (truncated)

Commits

Updates rubocop-ast from 1.31.3 to 1.38.1

Changelog

Sourced from rubocop-ast's changelog.

1.38.1 (2025-02-25)

Bug fixes

  • #360: Fix an error when the Array core class contains a writer method before rubocop-ast loaded. ([@​earlopain][])

1.38.0 (2025-01-27)

New features

  • #346: Add Node#loc? to determine if a node has a given location. ([@​dvandersluis][])
  • #356: Added :any_block as an alias for :block and :numblock, use it with Node#any_block_type?. Also available in node patterns: {block numblock} can become any_block. ([@​earlopain][])

Bug fixes

Changes

  • #357: Support node groups in Node#each_descendant and similar traversal methods. ([@​earlopain][])

1.37.0 (2024-12-13)

New features

  • #341: Make RuboCop::AST::IfNode support then?. ([@​koic][])

Changes

  • #343: Add StrNode#single_quoted?, StrNode#double_quoted? and StrNode#percent_literal? to simplify checking for string delimiters. ([@​dvandersluis][])

1.36.2 (2024-11-27)

Bug fixes

1.36.1 (2024-11-13)

Bug fixes

  • #339: Do not emit a deprecation warning for EnsureNode#body to give RuboCop a chance to update its usage. EnsureNode#body will still be changed in the next major version of rubocop-ast. ([@​earlopain][])

1.36.0 (2024-11-13)

Changes

  • #337: Deprecate EnsureNode#body in favour of EnsureNode#branch. EnsureNode#body will be redefined in the next major version of rubocop-ast. ([@​dvandersluis][])

... (truncated)

Commits

Updates rubocop-md from 1.2.2 to 2.0.0

Release notes

Sourced from rubocop-md's releases.

2.0.0

Migrate to new RuboCop Plugin architecture.

Changelog

Sourced from rubocop-md's changelog.

2.0.0 (2025-02-17)

  • Migrate to new RuboCop Plugin architecture.

1.2.4 (2024-10-16)

  • Fix RuboCop warnings.

1.2.3 (2024-09-12)

  • Do no try linting .mdx files by default.
Commits
  • 3ac92e6 Bump 2.0.0
  • ba77b7b Merge pull request #41 from koic/pluginfy_with_lint_roller
  • 7811d48 Pluginfy rubocop-md
  • cea6619 Bump 1.2.4
  • f45bbe5 Merge pull request #39 from yahonda/fix_typo
  • a2584b7 Merge pull request #40 from koic/suppress_deprecation_warning
  • 04c3a82 Suppress RuboCop's deprecation warning
  • 8a0e8b7 Fix typo by replacing RoboCop with RuboCop
  • e0161f5 Bump 1.2.3
  • efe54bf style: ignore FileName for md
  • Additional commits viewable in compare view

Updates rubocop-minitest from 0.35.0 to 0.37.1

Release notes

Sourced from rubocop-minitest's releases.

RuboCop Minitest 0.37.0

New features

Changes

  • #328: Remove "minitest/autorun" and "minitest/pride" requirement from "rubocop/minitest/support". (@​bquorning)

RuboCop Minitest 0.36.0

Bug fixes

  • #317: Fix an error for Minitest/MultipleAssertions when using for-style loops. (@​earlopain)
  • #314: Fix an error for Minitest/SkipEnsure when only ensure has a body. (@​earlopain)

Changes

  • #314: (Breaking) Raise a useful error when using a Cop in AssertOffense if the Cop's class is not defined. (@​brandoncc)

RuboCop Minitest 0.35.1

New features

  • #307: Make AssertOffense support assert_no_corrections. (@​koic)

Bug fixes

  • #311: Suppress deprecation warning for Minitst/MultipleAssertions. (@​koic)
Changelog

Sourced from rubocop-minitest's changelog.

0.37.1 (2025-02-16)

Bug fixes

  • #330: Update add_dependency of RuboCop to 1.72 for plugin support. ([@​koic][])

0.37.0 (2025-02-16)

New features

Changes

  • #328: Remove "minitest/autorun" and "minitest/pride" requirement from "rubocop/minitest/support". ([@​bquorning][])

0.36.0 (2024-08-31)

Bug fixes

  • #317: Fix an error for Minitest/MultipleAssertions when using for-style loops. ([@​earlopain][])
  • #314: Fix an error for Minitest/SkipEnsure when only ensure has a body. ([@​earlopain][])

Changes

  • #314: (Breaking) Raise a useful error when using a Cop in AssertOffense if the Cop's class is not defined. ([@​brandoncc][])

0.35.1 (2024-07-11)

New features

  • #307: Make AssertOffense support assert_no_corrections. ([@​koic][])

Bug fixes

  • #311: Suppress deprecation warning for Minitst/MultipleAssertions. ([@​koic][])
Commits
  • 4aac4a6 Cut 0.37.1
  • 406dd98 Update Changelog
  • 9e6a6c7 Merge pull request #330 from koic/fix_require_rubocop_version_for_plugin
  • a306885 Update add_dependency of RuboCop to 1.72 for plugin support
  • e33a747 Fix a typo
  • cb66da8 Use RuboCop Performance 1.24 for development
  • a9177b1 Switch back docs version to master
  • 3ace1f4 Cut 0.37.0
  • e8a3720 Update Changelog
  • 26040f4 Merge pull request #329 from koic/pluginfy_with_lint_roller
  • Additional commits viewable in compare view

Updates rubocop-performance from 1.21.1 to 1.24.0

Release notes

Sourced from rubocop-performance's releases.

RuboCop Performance 1.24.0

New features

  • #490: Pluginfy RuboCop Performance. (@​koic)
  • #462: Add new Performance/ZipWithoutBlock cop that checks patterns like .map { |id| [id] } or .map { [_1] } and can replace them with .zip. (@​corsonknowles)

Bug fixes

RuboCop Performance 1.23.1

Bug fixes

  • #478: Fix Performance/RedundantStringChars cop error in case of implicit receiver. (@​viralpraxis)
  • #480: Fix Performance/Squeeze cop error on frozen AST string node value. (@​viralpraxis)

RuboCop Performance 1.23.0

New features

RuboCop Performance 1.22.1

Bug fixes

  • #468: Fix false positives for Performance/BigDecimalWithNumericArgument when using float argument for BigDecimal. (@​koic)

RuboCop Performance 1.22.0

Bug fixes

  • #454: Fix false positives for Performance/BigDecimalWithNumericArgument when using BigDecimal 3.1+. (@​koic)

Changes

Changelog

Sourced from rubocop-performance's changelog.

1.24.0 (2025-02-16)

New features

  • #490: Pluginfy RuboCop Performance. ([@​koic][])
  • #462: Add new Performance/ZipWithoutBlock cop that checks patterns like .map { |id| [id] } or .map { [_1] } and can replace them with .zip. ([@​corsonknowles][])

Bug fixes

  • #484: Fix Performance/CaseWhenSplat cop error on when node without body. ([@​viralpraxis][])

1.23.1 (2025-01-04)

Bug fixes

  • #478: Fix Performance/RedundantStringChars cop error in case of implicit receiver. ([@​viralpraxis][])
  • #480: Fix Performance/Squeeze cop error on frozen AST string node value. ([@​viralpraxis][])

1.23.0 (2024-11-14)

New features

1.22.1 (2024-09-17)

Bug fixes

  • #468: Fix false positives for Performance/BigDecimalWithNumericArgument when using float argument for BigDecimal. ([@​koic][])

1.22.0 (2024-09-16)

Bug fixes

  • #454: Fix false positives for Performance/BigDecimalWithNumericArgument when using BigDecimal 3.1+. ([@​koic][])

Changes

  • #385: Disable Performance/BlockGivenWithExplicitBlock by default. ([@​earlopain][])
  • #407: Make Performance/DoubleStartEndWith aware of safe navigation. ([@​earlopain][])
Commits
  • 24a3a4e Cut 1.24.0
  • 20c07a2 Update Changelog
  • f6e7da0 Merge pull request #490 from koic/pluginfy_with_lint_roller
  • b83339d Pluginfy RuboCop Performance
  • ab7ef16 Suppress redundant configuration logging for rubocop-performace
  • 2c00726 Avoid unnecessary send
  • 074bd2a Explicit default Performance/Sum cop config for the spec
  • 349ae04 Suppress RuboCop's offenses
  • 2d36cac Merge pull request #462 from corsonknowles/add_performance_use_zip_to_wrap_ar...
  • 063b56d Merge pull request #489 from dvandersluis/use-node-groups
  • Additional commits viewable in compare view

Updates rubocop-rails from 2.25.0 to 2.30.2

Release notes

Sourced from rubocop-rails's releases.

RuboCop Rails 2.30.2

Bug fixes

  • #1447: Fix false positive for Rails/LexicallyScopedActionFilter when action methods are delegated. (@​vlad-pisanov)
  • #1446: Fix false positives for Rails/Delegate when module_function is used. (@​ydakuka)
  • #1427: Fix an error for Rails/UniqBeforePluck when pluck and unique are on different lines. (@​earlopain)

RuboCop Rails 2.30.1

Bug fixes

  • #1442: Fix an incorrect behavior when using AllCops: TargetRailsVersion. (@​koic)
  • #1444: Fix an incorrect behavior when using AllCops: MigratedSchemaVersion. (@​koic)

RuboCop Rails 2.30.0

New features

Bug fixes

  • #1071: Fix Rails/FilePath cop to correctly handle File.join with variables and ignore leading and multiple slashes in string literal arguments for Rails.root.join and File.join. (@​ydakuka)
  • #912: Enhance Rails/Delegate by adding delegation detection for self.class, constants, class variables, global variables, and instance variables. (@​ydakuka)

RuboCop Rails 2.29.1

Bug fixes

  • #1423: Fix an error for Rails/StrongParametersExpect when using permit with no arguments. (@​koic)
  • #1417: Fix an incorrect autocorrect for Rails/StrongParametersExpect when using a leading dot multiline call to require with permit. (@​koic)
  • #1356: Enhance Rails/DuplicateAssociation to handle alias. (@​ydakuka)
  • #1389: Handle TypeError caused by passing array literals as arguments to File methods in Rails/FilePath cop. (@​ydakuka)
  • #1389: Handle TypeError caused by passing array literals as arguments to File methods in Rails/RootPathnameMethods cop. (@​ydakuka)
  • #1228: Enhance Rails/SaveBang to properly handle instance variables. (@​ydakuka)

RuboCop Rails 2.29.0

New features

... (truncated)

Changelog

Sourced from rubocop-rails's changelog.

2.30.2 (2025-02-24)

Bug fixes

  • #1447: Fix false positive for Rails/LexicallyScopedActionFilter when action methods are delegated. ([@​vlad-pisanov][])
  • #1446: Fix false positives for Rails/Delegate when module_function is used. ([@​ydakuka][])
  • #1427: Fix an error for Rails/UniqBeforePluck when pluck and unique are on different lines. ([@​earlopain][])

2.30.1 (2025-02-17)

Bug fixes

  • #1442: Fix an incorrect behavior when using AllCops: TargetRailsVersion. ([@​koic][])
  • #1444: Fix an incorrect behavior when using AllCops: MigratedSchemaVersion. ([@​koic][])

2.30.0 (2025-02-16)

New features

Bug fixes

  • #1071: Fix Rails/FilePath cop to correctly handle File.join with variables and ignore leading and multiple slashes in string literal arguments for Rails.root.join and File.join. ([@​ydakuka][])
  • #912: Enhance Rails/Delegate by adding delegation detection for self.class, constants, class variables, global variables, and instance variables. ([@​ydakuka][])

2.29.1 (2025-01-25)

Bug fixes

  • #1423: Fix an error for Rails/StrongParametersExpect when using permit with no arguments. ([@​koic][])
  • #1417: Fix an incorrect autocorrect for Rails/StrongParametersExpect when using a leading dot multiline call to require with permit. ([@​koic][])
  • #1356: Enhance Rails/DuplicateAssociation to handle alias. ([@​ydakuka][])
  • #1389: Handle TypeError caused by passing array literals as arguments to File methods in Rails/FilePath cop. ([@​ydakuka][])
  • #1389: Handle TypeError caused by passing array literals as arguments to File methods in Rails/RootPathnameMethods cop. ([@​ydakuka][])
  • #1228: Enhance Rails/SaveBang to properly handle instance variables. ([@​ydakuka][])

2.29.0 (2025-01-18)

New features

Bug fixes

  • #1409: Fix an error for Rails/ReversibleMigration when calling drop_table without any arguments. ([@​earlopain][])
  • #1397: Fix an incorrect autocorrect for Rails/TimeZone when Time.new has a string argument. ([@​mterada1228][])
  • #1406: Fix autocorrection for Rails/IndexBy and Rails/IndexWith when map { ... }.to_h is enclosed in another block. ([@​franzliedke][], [@​eugeneius][])
  • #1404: Update Rails/IndexBy and Rails/IndexWith to support numbered block parameters. ([@​eugeneius][])

... (truncated)

Commits
  • e023cdd Cut 2.30.2
  • 1ad2fe5 Update Changelog
  • 04529cf Merge pull request #1450 from vlad-pisanov/vp_fix_lexically_scoped_action_fil...
  • ec8e18e Merge pull request #1428 from Earlopain/uniq-pluck-multiple-lines
  • eca3732 Fix incorrect comment placement for add_dependency
  • 1980681 [Fix #1427] Fix an error for Rails/UniqBeforePluck with multi-line expression
  • 7b92670 [Fix #1447] Fix false positive for Rails/LexicallyScopedActionFilter when a...
  • 159045f Enable InternalAffairs/CopEnabled cop
  • 12b45a5 Merge pull request #1448 from ydakuka/1446/fix-incorrect-autocorrect-for-rail...
  • 204e667 [Fix rubocop#1446] Fix false positives for Rails/Delegate when `module_func...
  • Additional commits viewable in compare view

Updates unicode-display_width from 2.5.0 to 3.1.4

Changelog

Sourced from unicode-display_width's changelog.

3.1.4

  • Fix that skin tone modifiers were ignored when used in a non-ZWJ sequence context (= single emoji char + modifier) #29
  • Add more docs and specs about modifier handling

3.1.3

Better handling of non-UTF-8 strings, patch by @​Earlopain:

  • Data with BINARY encoding is interpreted as UTF-8, if possible
  • Use invalid: :replace and undef: :replace options when converting to UTF-8

3.1.2

  • Performance improvements

3.1.1

  • Performance improvements

3.1.0

Improve Emoji support:

  • Emoji modes: Differentiate between well-formed Emoji (:possible) and any ZWJ/modifier sequence (:all). The latter is more common and more efficient to implement.
  • Unify :rgi_{fqe,mqe,uqe} options to just :rgi to keep things simpler (corresponds to the former :rgi_uqe option). Most terminals that want to support the RGI set will probably want to catch Emoji sequences with missing VS16s.
  • Add new :all_no_vs16 and :rgi_at modes to be able to support some terminals that needs these quirks
  • Add alias emoji: :auto for emoji: true and emoji: :none for emoji: false
  • :auto mode: Only consider terminal cells when recommending Emoji support level (Emoji themselves might display differently)
  • :auto mode: Set default Emoji mode for unknown/unsupported terminals to :none
  • Rename :basic mode to :vs16

3.0.1

  • Add WezTerm and foot as good Emoji terminals

3.0.0

Rework Emoji support:

  • Emoji widths are now enabled by default
  • Only reduce Emoji width to 2 when RGI Emoji detected (configurable)

... (truncated)

Commits
  • a515fa2 Release v3.1.4
  • 4bcbf6a CI: Add jruby and Ruby 3.4 on Windows
  • dc64170 Fix and improve handling of Skin Tone Modifiers:
  • 893f9a9 Release v3.1.3
  • 2fbc7a7 CI: Deactivate jruby till jar-dependencies issue is sorted out
  • 5ed64f9 CI: Add Ruby 3.4
  • 620454c Add Encoding note to README and CHANGELOG
  • a23a070 Merge pull request #28 from Earlopain/invalid-encoding-stuff
  • bc47d28 Handle invalid encoded strings
  • b00c5bf Add link to terminal-emoji-width.rb
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the rubocop group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [language_server-protocol](https://github.com/mtsmfm/language_server-protocol-ruby) | `3.17.0.3` | `3.17.0.4` |
| [parser](https://github.com/whitequark/parser) | `3.3.3.0` | `3.3.7.1` |
| [rubocop-ast](https://github.com/rubocop/rubocop-ast) | `1.31.3` | `1.38.1` |
| [rubocop-md](https://github.com/rubocop/rubocop-md) | `1.2.2` | `2.0.0` |
| [rubocop-minitest](https://github.com/rubocop/rubocop-minitest) | `0.35.0` | `0.37.1` |
| [rubocop-performance](https://github.com/rubocop/rubocop-performance) | `1.21.1` | `1.24.0` |
| [rubocop-rails](https://github.com/rubocop/rubocop-rails) | `2.25.0` | `2.30.2` |



Updates `language_server-protocol` from 3.17.0.3 to 3.17.0.4
- [Changelog](https://github.com/mtsmfm/language_server-protocol-ruby/blob/main/CHANGELOG.md)
- [Commits](mtsmfm/language_server-protocol-ruby@v3.17.0.3...v3.17.0.4)

Updates `parser` from 3.3.3.0 to 3.3.7.1
- [Changelog](https://github.com/whitequark/parser/blob/master/CHANGELOG.md)
- [Commits](whitequark/parser@v3.3.3.0...v3.3.7.1)

Updates `rubocop-ast` from 1.31.3 to 1.38.1
- [Release notes](https://github.com/rubocop/rubocop-ast/releases)
- [Changelog](https://github.com/rubocop/rubocop-ast/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-ast@v1.31.3...v1.38.1)

Updates `rubocop-md` from 1.2.2 to 2.0.0
- [Release notes](https://github.com/rubocop/rubocop-md/releases)
- [Changelog](https://github.com/rubocop/rubocop-md/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-md@v1.2.2...v2.0.0)

Updates `rubocop-minitest` from 0.35.0 to 0.37.1
- [Release notes](https://github.com/rubocop/rubocop-minitest/releases)
- [Changelog](https://github.com/rubocop/rubocop-minitest/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-minitest@v0.35.0...v0.37.1)

Updates `rubocop-performance` from 1.21.1 to 1.24.0
- [Release notes](https://github.com/rubocop/rubocop-performance/releases)
- [Changelog](https://github.com/rubocop/rubocop-performance/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-performance@v1.21.1...v1.24.0)

Updates `rubocop-rails` from 2.25.0 to 2.30.2
- [Release notes](https://github.com/rubocop/rubocop-rails/releases)
- [Changelog](https://github.com/rubocop/rubocop-rails/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-rails@v2.25.0...v2.30.2)

Updates `unicode-display_width` from 2.5.0 to 3.1.4
- [Changelog](https://github.com/janlelis/unicode-display_width/blob/main/CHANGELOG.md)
- [Commits](janlelis/unicode-display_width@v2.5.0...v3.1.4)

---
updated-dependencies:
- dependency-name: language_server-protocol
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rubocop
- dependency-name: parser
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rubocop
- dependency-name: rubocop-ast
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rubocop
- dependency-name: rubocop-md
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: rubocop
- dependency-name: rubocop-minitest
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rubocop
- dependency-name: rubocop-performance
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rubocop
- dependency-name: rubocop-rails
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rubocop
- dependency-name: unicode-display_width
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: rubocop
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 6, 2025

Superseded by #2525.

@dependabot dependabot bot closed this Mar 6, 2025
@dependabot dependabot bot deleted the dependabot/bundler/rubocop-f59ab0495b branch March 6, 2025 12:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies ruby Pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants