Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 20, 2025

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

Package From To
rubocop 1.78.0 1.80.2
rubocop-md 2.0.1 2.0.2
rubocop-performance 1.25.0 1.26.0
rubocop-rails 2.32.0 2.33.3
rubocop-rspec 3.6.0 3.7.0

Updates rubocop from 1.78.0 to 1.80.2

Release notes

Sourced from rubocop's releases.

RuboCop v1.80.2

Bug fixes

  • #14477: Fix a false positive for Style/SafeNavigation when using ternary expression with index access call with method chain. (@​koic)
  • #14486: Fix false positives for Style/RedundantParentheses with unary operators and yield, super, or defined?. (@​earlopain)
  • #14489: Fix false negatives for Style/RedundantParentheses with method calls taking argument without parentheses like return (x y) if z. (@​earlopain)
  • #14499: Fix wrong autocorrect for Style/StringConcatenation when a double-quoted string contains escaped quotes and interpolation. (@​earlopain)
  • #14502: Fix wrong autocorrect for Style/StringConcatenation when a single-quoted string contains interpolation like '#{foo}'. (@​earlopain)

Changes

  • #14493: Make Naming/PredicateMethod allow the initialize method. (@​koic)

RuboCop v1.80.1

Bug fixes

  • #14479: Don't invalidate cache when --display-time option is used on the CLI. (@​lovro-bikic)
  • #14473: Fix a false negative for Style/RedundantBegin using begin with multiple statements without rescue or ensure. (@​koic)
  • #14475: Fix cop errors during autocorrect for the build in LSP when analyzing as Ruby 3.4. (@​earlopain)

Changes

  • #14474: Fix false negative for Layout/EndAlignment when end is not on a separate line. (@​lovro-bikic)

RuboCop v1.80.0

Bug fixes

  • #14469: Fix an incorrect autocorrect for Style/BitwisePredicate when using & with LHS flags in conjunction with == for comparisons. (@​koic)
  • #14459: Fix wrong autocorrect for Style/For with save navigation in the collection. (@​earlopain)
  • #14435: Fix false negatives for regexp cops when Lint/DuplicateRegexpCharacterClassElement is enabled. (@​earlopain)
  • #14419: Fix false positives for Lint/UselessAssignment when duplicate assignments appear in nested if branches inside a loop and the variable is used outside while loop. (@​koic)
  • #14468: Fix false positives for Naming/MethodName when an operator method is defined using a string. (@​koic)
  • #14427: Fix false positives for Style/RedundantParentheses when do...end block is wrapped in parentheses as a method argument. (@​koic)
  • #14441: Better hash access handling in Style/SafeNavigation. ([@​issyl0][])
  • #14443: Fix false positive in Layout/EmptyLinesAfterModuleInclusion when include does not have exactly one argument. ([@​issyl0][])
  • #14424: Fix Style/SafeNavigation cop to preserve existing safe navigation in fixed code. ([@​martinemde][])
  • #14455: Follow module inclusion with nonzero args with an empty line. ([@​issyl0][])
  • #14445: Fix false positives for Lint/UselessAssignment with for loops when the variable is referenced in the collection. (@​earlopain)
  • #14447: Fix wrong autocorrect for Style/RedundantCondition with a parenthesised method call in the condition. (@​earlopain)

Changes

  • #14428: Enhance Lint/SelfAssignment to handle indexed assignment with multiple arguments. ([@​viralpraxis][])

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.80.2 (2025-09-03)

Bug fixes

  • #14477: Fix a false positive for Style/SafeNavigation when using ternary expression with index access call with method chain. ([@​koic][])
  • #14486: Fix false positives for Style/RedundantParentheses with unary operators and yield, super, or defined?. ([@​earlopain][])
  • #14489: Fix false negatives for Style/RedundantParentheses with method calls taking argument without parentheses like return (x y) if z. ([@​earlopain][])
  • #14499: Fix wrong autocorrect for Style/StringConcatenation when a double-quoted string contains escaped quotes and interpolation. ([@​earlopain][])
  • #14502: Fix wrong autocorrect for Style/StringConcatenation when a single-quoted string contains interpolation like '#{foo}'. ([@​earlopain][])

Changes

  • #14493: Make Naming/PredicateMethod allow the initialize method. ([@​koic][])

1.80.1 (2025-08-27)

Bug fixes

  • #14479: Don't invalidate cache when --display-time option is used on the CLI. ([@​lovro-bikic][])
  • #14473: Fix a false negative for Style/RedundantBegin using begin with multiple statements without rescue or ensure. ([@​koic][])
  • #14475: Fix cop errors during autocorrect for the build in LSP when analyzing as Ruby 3.4. ([@​earlopain][])

Changes

  • #14474: Fix false negative for Layout/EndAlignment when end is not on a separate line. ([@​lovro-bikic][])

1.80.0 (2025-08-22)

Bug fixes

  • #14469: Fix an incorrect autocorrect for Style/BitwisePredicate when using & with LHS flags in conjunction with == for comparisons. ([@​koic][])
  • #14459: Fix wrong autocorrect for Style/For with save navigation in the collection. ([@​earlopain][])
  • #14435: Fix false negatives for regexp cops when Lint/DuplicateRegexpCharacterClassElement is enabled. ([@​earlopain][])
  • #14419: Fix false positives for Lint/UselessAssignment when duplicate assignments appear in nested if branches inside a loop and the variable is used outside while loop. ([@​koic][])
  • #14468: Fix false positives for Naming/MethodName when an operator method is defined using a string. ([@​koic][])
  • #14427: Fix false positives for Style/RedundantParentheses when do...end block is wrapped in parentheses as a method argument. ([@​koic][])
  • #14441: Better hash access handling in Style/SafeNavigation. ([@​issyl0][])
  • #14443: Fix false positive in Layout/EmptyLinesAfterModuleInclusion when include does not have exactly one argument. ([@​issyl0][])
  • #14424: Fix Style/SafeNavigation cop to preserve existing safe navigation in fixed code. ([@​martinemde][])
  • #14455: Follow module inclusion with nonzero args with an empty line. ([@​issyl0][])
  • #14445: Fix false positives for Lint/UselessAssignment with for loops when the variable is referenced in the collection. ([@​earlopain][])
  • #14447: Fix wrong autocorrect for Style/RedundantCondition with a parenthesised method call in the condition. ([@​earlopain][])

Changes

  • #14428: Enhance Lint/SelfAssignment to handle indexed assignment with multiple arguments. ([@​viralpraxis][])
  • #14464: Exclude AutoCorrect and Include from configuration parameters. ([@​r7kamura][])
  • #14472: Make Style/RedundantBegin aware of case pattern matching. ([@​koic][])
  • #14448: Register array intersection size checks as offenses under Style/ArrayIntersect. ([@​lovro-bikic][])
  • #14431: Support LSP TextDocumentSyncKind.Incremental. ([@​tmtm][])

... (truncated)

Commits
  • e2afd61 Cut 1.80.2
  • 02d4593 Update Changelog
  • ca1b813 [Fix #14502] Fix wrong autocorrect for Style/StringConcatenation when a sin...
  • 06e1b4f Remove some boilerplate when testing the lsp addon
  • 9a82957 Merge pull request #14500 from Earlopain/string-concat-escaped
  • 2f2f63a [Fix #14499] Fix wrong autocorrect for Style/StringConcatenation with escap...
  • cc4d7a1 Use RuboCop RSpec 3.7 for development
  • 819ea46 Reset the docs version
  • 2271a78 Merge pull request #14489 from Earlopain/redundant-parens-yield-etc
  • 6bdff54 Merge pull request #14495 from koic/make_naming_predicate_method_allow_initia...
  • Additional commits viewable in compare view

Updates rubocop-md from 2.0.1 to 2.0.2

Changelog

Sourced from rubocop-md's changelog.

2.0.2 (2025-08-20)

  • Support metadata in code blocks.
Commits
  • 8eee02e Bump 2.0.2
  • 96d414a Merge pull request #44 from rubocop/dependabot/github_actions/actions/checkout-5
  • 738636a Merge pull request #43 from balvig/master
  • b13f8b8 Bump actions/checkout from 4 to 5
  • 5fddf99 Support code blocks with "metadata"
  • See full diff in compare view

Updates rubocop-performance from 1.25.0 to 1.26.0

Release notes

Sourced from rubocop-performance's releases.

RuboCop Performance v1.26.0

Bug fixes

  • #444: Fix an incorrect autocorrect for Performance/BlockGivenWithExplicitBlock when using Naming/BlockForwarding's autocorrection together. (@​a-lavis)
  • #500: Mark Performance/MapCompact cop as unsafe. (@​jbpextra)
  • #498: Fix Performance/Count cop error on empty selector block. (@​viralpraxis)
  • #504: Fix autocorrection syntax error for Performance/Count with multiline calls. (@​lovro-bikic)

Changes

  • #512: Detect negated conditions like !foo.start_with('bar') && !foo.start_with('baz') with Performance/DoubleStartEndWith. (@​earlopain)
Changelog

Sourced from rubocop-performance's changelog.

1.26.0 (2025-09-06)

Bug fixes

  • #444: Fix an incorrect autocorrect for Performance/BlockGivenWithExplicitBlock when using Naming/BlockForwarding's autocorrection together. ([@​a-lavis][])
  • #500: Mark Performance/MapCompact cop as unsafe. ([@​jbpextra][])
  • #498: Fix Performance/Count cop error on empty selector block. ([@​viralpraxis][])
  • #504: Fix autocorrection syntax error for Performance/Count with multiline calls. ([@​lovro-bikic][])

Changes

  • #512: Detect negated conditions like !foo.start_with('bar') && !foo.start_with('baz') with Performance/DoubleStartEndWith. ([@​earlopain][])
Commits
  • 4e6eb01 Cut 1.26.0
  • b78119b Update Changelog
  • 75e8065 Fix typos
  • be32fec Merge pull request #514 from Earlopain/ci-jrbuy-10
  • 7615a37 Merge pull request #513 from Earlopain/sync-spellchecking
  • 1b82ee8 CI against the latest stable JRuby version
  • 2bfd0c6 Remove misspell from CI
  • 95b3559 Run codespell with bundle exec rake
  • c592668 Merge pull request #512 from Earlopain/start-end-negation
  • b789959 Detect negated conditions with Performance/DoubleStartEndWith
  • Additional commits viewable in compare view

Updates rubocop-rails from 2.32.0 to 2.33.3

Release notes

Sourced from rubocop-rails's releases.

RuboCop Rails v2.33.3

Bug fixes

RuboCop Rails v2.33.2

Bug fixes

  • #1488: Fix an error for Rails/ReadWriteAttribute with a frozen string attribute name. (@​viralpraxis)

RuboCop Rails v2.33.1

Bug fixes

  • #1508: Fix an error for Rails/TransactionExitStatement when transaction is part of a method chain. (@​earlopain)
  • #1510: Fix Rails/OrderArguments cop false positives when using column index argument. (@​viralpraxis)
  • #1511: Don't register offenses for Rails/WhereExists when exists? is given multiple or splat arguments. (@​lovro-bikic)

RuboCop Rails v2.33.0

New features

Bug fixes

  • #1497: Fix bugs in Rails/PluckId and Rails/PluckInWhere. (@​r7kamura)
  • #1478: Fix a false negative for Rails/EnvLocal when having preceding conditions. (@​fatkodima)
  • #1505: Fix false negatives for Rails/Pluck when map method call is used in a block without a receiver. (@​koic)
  • #1486: Fix false positives for Rails/Output when p method is a DSL. (@​koic)
  • #1495: Fix false positives for Rails/TransactionExitStatement when break is used in loop in transactions. (@​koic)
  • #1483: Fix autocorrection error when Rails/IndexWith has nested offenses. (@​lovro-bikic)

Changes

... (truncated)

Changelog

Sourced from rubocop-rails's changelog.

2.33.3 (2025-08-14)

Bug fixes

  • #1516: Fix wrong autocorrect for Rails/FindByOrAssignmentMemoization. ([@​earlopain][])

2.33.2 (2025-08-13)

Bug fixes

  • #1488: Fix an error for Rails/ReadWriteAttribute with a frozen string attribute name. ([@​viralpraxis][])

2.33.1 (2025-08-12)

Bug fixes

  • #1508: Fix an error for Rails/TransactionExitStatement when transaction is part of a method chain. ([@​earlopain][])
  • #1510: Fix Rails/OrderArguments cop false positives when using column index argument. ([@​viralpraxis][])
  • #1511: Don't register offenses for Rails/WhereExists when exists? is given multiple or splat arguments. ([@​lovro-bikic][])

2.33.0 (2025-08-10)

New features

Bug fixes

  • #1497: Fix bugs in Rails/PluckId and Rails/PluckInWhere. ([@​r7kamura][])
  • #1478: Fix a false negative for Rails/EnvLocal when having preceding conditions. ([@​fatkodima][])
  • #1505: Fix false negatives for Rails/Pluck when map method call is used in a block without a receiver. ([@​koic][])
  • #1486: Fix false positives for Rails/Output when p method is a DSL. ([@​koic][])
  • #1495: Fix false positives for Rails/TransactionExitStatement when break is used in loop in transactions. ([@​koic][])
  • #1483: Fix autocorrection error when Rails/IndexWith has nested offenses. ([@​lovro-bikic][])

Changes

Commits
  • d0dc3fb Cut 2.33.3
  • 6ccab18 Update Changelog
  • 812d404 Merge pull request #1516 from Earlopain/find-by-autocorrect
  • 1872c95 Fix wrong autocorrect for Rails/FindByOrAssignmentMemoization
  • e6c2b15 Switch back docs version to master
  • 61032ee Cut 2.33.2
  • fa6548a Update Changelog
  • 501e5d3 [Fix #1513] Tweak autocorrection code for Rails/FindByOrAssignmentMemoization
  • f178f30 Merge pull request #1514 from viralpraxis/fix-rails-read-write-attribute-froz...
  • 7269eb8 [Fix #1488] Fix an error for Rails/ReadWriteAttribute cop
  • Additional commits viewable in compare view

Updates rubocop-rspec from 3.6.0 to 3.7.0

Release notes

Sourced from rubocop-rspec's releases.

RuboCop RSpec v3.7.0

  • Mark RSpec/IncludeExamples as SafeAutoCorrect: false. (@​yujideveloper)
  • Fix a false positive for RSpec/LeakyConstantDeclaration when defining constants in explicit namespaces. (@​naveg)
  • Add support for error matchers (raise_exception and raise_error) to RSpec/Dialect. (@​lovro-bikic)
  • Don't register offenses for RSpec/DescribedClass within Data.define blocks. (@​lovro-bikic)
  • Add autocorrection support for RSpec/IteratedExpectation for single expectations. (@​lovro-bikic)
  • Exclude all cops from inspecting factorybot files, except if explicitly included. (@​Mth0158)
  • Fix a false positive for RSpec/ExcessiveDocstringSpacing when receivers are not RSpec methods. (@​ydah)
Changelog

Sourced from rubocop-rspec's changelog.

3.7.0 (2025-09-01)

  • Mark RSpec/IncludeExamples as SafeAutoCorrect: false. ([@​yujideveloper])
  • Fix a false positive for RSpec/LeakyConstantDeclaration when defining constants in explicit namespaces. ([@​naveg])
  • Add support for error matchers (raise_exception and raise_error) to RSpec/Dialect. ([@​lovro-bikic])
  • Don't register offenses for RSpec/DescribedClass within Data.define blocks. ([@​lovro-bikic])
  • Add autocorrection support for RSpec/IteratedExpectation for single expectations. ([@​lovro-bikic])
  • Exclude all cops from inspecting factorybot files, except if explicitly included. ([@​Mth0158])
  • Fix a false positive for RSpec/ExcessiveDocstringSpacing when receivers are not RSpec methods. ([@​ydah])
Commits
  • 84ccc76 Merge pull request #2106 from rubocop/release
  • 4ecc2aa Release v3.7.0
  • 7abc671 Merge pull request #2105 from r7kamura/include-examples-doc-fix
  • ed38d60 Fix broken adoc comment in RSpec/IncludeExamples
  • 5f1d09c Merge pull request #2104 from rubocop/2103
  • 26beee7 Fix a false positive for RSpec/ExcessiveDocstringSpacing when receivers are...
  • 50d347c Merge pull request #2102 from rubocop/dependabot/github_actions/actions/check...
  • 9a807a3 Bump actions/checkout from 4 to 5
  • 09f60c7 Merge pull request #2099 from Mth0158/factorybot-wrong-interpretation-of-attr...
  • 0b86050 Remove factorybot files inclusion for Metrics/BlockLength cop
  • Additional commits viewable in compare view

Updates rubocop-ast from 1.46.0 to 1.47.0

Changelog

Sourced from rubocop-ast's changelog.

1.47.0 (2025-09-19)

New features

Commits
  • 7a2aa5d Cut 1.47.0
  • bdce308 Update Changelog
  • 2fffb71 Add Node#any_sym_type? to match sym and dsym types
  • bddfd6e Fix build error by keeping prism below 1.5.0 for older RuboCop
  • f7e25f9 Add Node#any_str_type? to match str, dstr, and xstr types
  • 0761f8c Run codespell with bundle exec rake
  • cb409b3 Remove misspell from CI
  • cb62a2d Bump actions/checkout from 4 to 5 (#384)
  • 694b3bf Remove CodeClimate from CI (#383)
  • cfe96c4 Suppress Layout/EmptyLinesAfterModuleInclusion's offense
  • 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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Sep 20, 2025
@dependabot dependabot bot requested a review from kg8m as a code owner September 20, 2025 01:02
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Sep 20, 2025
@kg8m-bot kg8m-bot bot added the dev-dependencies Pull requests that update a dev-dependency file label Sep 20, 2025
@kg8m-bot kg8m-bot bot enabled auto-merge September 20, 2025 01:15
@dependabot dependabot bot force-pushed the dependabot/bundler/rubocop-ca1c104e13 branch from 0021b0e to 86090bf Compare September 27, 2025 01:02
Bumps the rubocop group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [rubocop](https://github.com/rubocop/rubocop) | `1.78.0` | `1.80.2` |
| [rubocop-md](https://github.com/rubocop/rubocop-md) | `2.0.1` | `2.0.2` |
| [rubocop-performance](https://github.com/rubocop/rubocop-performance) | `1.25.0` | `1.26.0` |
| [rubocop-rails](https://github.com/rubocop/rubocop-rails) | `2.32.0` | `2.33.3` |
| [rubocop-rspec](https://github.com/rubocop/rubocop-rspec) | `3.6.0` | `3.7.0` |



Updates `rubocop` from 1.78.0 to 1.80.2
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.78.0...v1.80.2)

Updates `rubocop-md` from 2.0.1 to 2.0.2
- [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.1...v2.0.2)

Updates `rubocop-performance` from 1.25.0 to 1.26.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.25.0...v1.26.0)

Updates `rubocop-rails` from 2.32.0 to 2.33.3
- [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.32.0...v2.33.3)

Updates `rubocop-rspec` from 3.6.0 to 3.7.0
- [Release notes](https://github.com/rubocop/rubocop-rspec/releases)
- [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-rspec@v3.6.0...v3.7.0)

Updates `rubocop-ast` from 1.46.0 to 1.47.0
- [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.46.0...v1.47.0)

---
updated-dependencies:
- dependency-name: rubocop
  dependency-version: 1.80.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: rubocop
- dependency-name: rubocop-md
  dependency-version: 2.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: rubocop
- dependency-name: rubocop-performance
  dependency-version: 1.26.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: rubocop
- dependency-name: rubocop-rails
  dependency-version: 2.33.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: rubocop
- dependency-name: rubocop-rspec
  dependency-version: 3.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: rubocop
- dependency-name: rubocop-ast
  dependency-version: 1.47.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rubocop
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/bundler/rubocop-ca1c104e13 branch from 86090bf to 15a3536 Compare October 4, 2025 01:02
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 15, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Nov 15, 2025
auto-merge was automatically disabled November 15, 2025 01:02

Pull request was closed

@dependabot dependabot bot deleted the dependabot/bundler/rubocop-ca1c104e13 branch November 15, 2025 01:02
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 dev-dependencies Pull requests that update a dev-dependency file ruby Pull requests that update Ruby code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant