Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the ruby-dependencies group with 3 updates in the / directory: rubocop, rubocop-performance and rubocop-rspec.

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-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-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

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 ruby-dependencies group with 3 updates in the / directory: [rubocop](https://github.com/rubocop/rubocop), [rubocop-performance](https://github.com/rubocop/rubocop-performance) and [rubocop-rspec](https://github.com/rubocop/rubocop-rspec).


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-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-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)

---
updated-dependencies:
- dependency-name: rubocop
  dependency-version: 1.80.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-dependencies
- dependency-name: rubocop-performance
  dependency-version: 1.26.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-dependencies
- dependency-name: rubocop-rspec
  dependency-version: 3.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Sep 9, 2025
@dependabot dependabot bot requested a review from GrantBirki as a code owner September 9, 2025 21:03
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Sep 9, 2025
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
None yet
Development

Successfully merging this pull request may close these issues.

0 participants