Update dependency rubocop to v1.80.2 - autoclosed #318

Closed
bustikiller wants to merge 1 commits from renovate/rubocop-1.x-lockfile into main
Owner

This PR contains the following updates:

Package Update Change
rubocop (source, changelog) minor 1.79.2 -> 1.80.2

Release Notes

rubocop/rubocop (rubocop)

v1.80.2

Compare Source

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

v1.80.1

Compare Source

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

v1.80.0

Compare Source

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

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [rubocop](https://rubocop.org/) ([source](https://github.com/rubocop/rubocop), [changelog](https://github.com/rubocop/rubocop/releases/tag/v1.80.2)) | minor | `1.79.2` -> `1.80.2` | --- ### Release Notes <details> <summary>rubocop/rubocop (rubocop)</summary> ### [`v1.80.2`](https://github.com/rubocop/rubocop/blob/HEAD/CHANGELOG.md#1802-2025-09-03) [Compare Source](https://github.com/rubocop/rubocop/compare/v1.80.1...v1.80.2) ##### Bug fixes - [#&#8203;14477](https://github.com/rubocop/rubocop/issues/14477): Fix a false positive for `Style/SafeNavigation` when using ternary expression with index access call with method chain. (\[[@&#8203;koic](https://github.com/koic)]\[]) - [#&#8203;14486](https://github.com/rubocop/rubocop/issues/14486): Fix false positives for `Style/RedundantParentheses` with unary operators and `yield`, `super`, or `defined?`. (\[[@&#8203;earlopain](https://github.com/earlopain)]\[]) - [#&#8203;14489](https://github.com/rubocop/rubocop/pull/14489): Fix false negatives for `Style/RedundantParentheses` with method calls taking argument without parentheses like `return (x y) if z`. (\[[@&#8203;earlopain](https://github.com/earlopain)]\[]) - [#&#8203;14499](https://github.com/rubocop/rubocop/issues/14499): Fix wrong autocorrect for `Style/StringConcatenation` when a double-quoted string contains escaped quotes and interpolation. (\[[@&#8203;earlopain](https://github.com/earlopain)]\[]) - [#&#8203;14502](https://github.com/rubocop/rubocop/issues/14502): Fix wrong autocorrect for `Style/StringConcatenation` when a single-quoted string contains interpolation like `'#{foo}'`. (\[[@&#8203;earlopain](https://github.com/earlopain)]\[]) ##### Changes - [#&#8203;14493](https://github.com/rubocop/rubocop/issues/14493): Make `Naming/PredicateMethod` allow the `initialize` method. (\[[@&#8203;koic](https://github.com/koic)]\[]) ### [`v1.80.1`](https://github.com/rubocop/rubocop/blob/HEAD/CHANGELOG.md#1801-2025-08-27) [Compare Source](https://github.com/rubocop/rubocop/compare/v1.80.0...v1.80.1) ##### Bug fixes - [#&#8203;14479](https://github.com/rubocop/rubocop/issues/14479): Don't invalidate cache when `--display-time` option is used on the CLI. (\[[@&#8203;lovro-bikic](https://github.com/lovro-bikic)]\[]) - [#&#8203;14473](https://github.com/rubocop/rubocop/pull/14473): Fix a false negative for `Style/RedundantBegin` using `begin` with multiple statements without `rescue` or `ensure`. (\[[@&#8203;koic](https://github.com/koic)]\[]) - [#&#8203;14475](https://github.com/rubocop/rubocop/issues/14475): Fix cop errors during autocorrect for the build in LSP when analyzing as Ruby 3.4. (\[[@&#8203;earlopain](https://github.com/earlopain)]\[]) ##### Changes - [#&#8203;14474](https://github.com/rubocop/rubocop/pull/14474): Fix false negative for `Layout/EndAlignment` when `end` is not on a separate line. (\[[@&#8203;lovro-bikic](https://github.com/lovro-bikic)]\[]) ### [`v1.80.0`](https://github.com/rubocop/rubocop/blob/HEAD/CHANGELOG.md#1800-2025-08-22) [Compare Source](https://github.com/rubocop/rubocop/compare/v1.79.2...v1.80.0) ##### Bug fixes - [#&#8203;14469](https://github.com/rubocop/rubocop/issues/14469): Fix an incorrect autocorrect for `Style/BitwisePredicate` when using `&` with LHS flags in conjunction with `==` for comparisons. (\[[@&#8203;koic](https://github.com/koic)]\[]) - [#&#8203;14459](https://github.com/rubocop/rubocop/pull/14459): Fix wrong autocorrect for `Style/For` with save navigation in the collection. (\[[@&#8203;earlopain](https://github.com/earlopain)]\[]) - [#&#8203;14435](https://github.com/rubocop/rubocop/issues/14435): Fix false negatives for regexp cops when `Lint/DuplicateRegexpCharacterClassElement` is enabled. (\[[@&#8203;earlopain](https://github.com/earlopain)]\[]) - [#&#8203;14419](https://github.com/rubocop/rubocop/issues/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. (\[[@&#8203;koic](https://github.com/koic)]\[]) - [#&#8203;14468](https://github.com/rubocop/rubocop/issues/14468): Fix false positives for `Naming/MethodName` when an operator method is defined using a string. (\[[@&#8203;koic](https://github.com/koic)]\[]) - [#&#8203;14427](https://github.com/rubocop/rubocop/pull/14427): Fix false positives for `Style/RedundantParentheses` when `do`...`end` block is wrapped in parentheses as a method argument. (\[[@&#8203;koic](https://github.com/koic)]\[]) - [#&#8203;14441](https://github.com/rubocop/rubocop/issues/14441): Better hash access handling in `Style/SafeNavigation`. (\[[@&#8203;issyl0](https://github.com/issyl0)]\[]) - [#&#8203;14443](https://github.com/rubocop/rubocop/issues/14443): Fix false positive in `Layout/EmptyLinesAfterModuleInclusion` when `include` does not have exactly one argument. (\[[@&#8203;issyl0](https://github.com/issyl0)]\[]) - [#&#8203;14424](https://github.com/rubocop/rubocop/pull/14424): Fix `Style/SafeNavigation` cop to preserve existing safe navigation in fixed code. (\[[@&#8203;martinemde](https://github.com/martinemde)]\[]) - [#&#8203;14455](https://github.com/rubocop/rubocop/pull/14455): Follow module inclusion with nonzero args with an empty line. (\[[@&#8203;issyl0](https://github.com/issyl0)]\[]) - [#&#8203;14445](https://github.com/rubocop/rubocop/issues/14445): Fix false positives for `Lint/UselessAssignment` with `for` loops when the variable is referenced in the collection. (\[[@&#8203;earlopain](https://github.com/earlopain)]\[]) - [#&#8203;14447](https://github.com/rubocop/rubocop/pull/14447): Fix wrong autocorrect for `Style/RedundantCondition` with a parenthesised method call in the condition. (\[[@&#8203;earlopain](https://github.com/earlopain)]\[]) ##### Changes - [#&#8203;14428](https://github.com/rubocop/rubocop/pull/14428): Enhance `Lint/SelfAssignment` to handle indexed assignment with multiple arguments. (\[[@&#8203;viralpraxis](https://github.com/viralpraxis)]\[]) - [#&#8203;14464](https://github.com/rubocop/rubocop/pull/14464): Exclude `AutoCorrect` and `Include` from configuration parameters. (\[[@&#8203;r7kamura](https://github.com/r7kamura)]\[]) - [#&#8203;14472](https://github.com/rubocop/rubocop/pull/14472): Make `Style/RedundantBegin` aware of `case` pattern matching. (\[[@&#8203;koic](https://github.com/koic)]\[]) - [#&#8203;14448](https://github.com/rubocop/rubocop/pull/14448): Register array intersection size checks as offenses under `Style/ArrayIntersect`. (\[[@&#8203;lovro-bikic](https://github.com/lovro-bikic)]\[]) - [#&#8203;14431](https://github.com/rubocop/rubocop/pull/14431): Support LSP `TextDocumentSyncKind.Incremental`. (\[[@&#8203;tmtm](https://github.com/tmtm)]\[]) - [#&#8203;14453](https://github.com/rubocop/rubocop/issues/14453): Update `Style/RedundantBegin` to register `begin` blocks inside `if`, `unless`, `case`, `while` and `until` as redundant. (\[[@&#8203;dvandersluis](https://github.com/dvandersluis)]\[]) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMTQuMCIsInVwZGF0ZWRJblZlciI6IjQxLjExNC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->
bustikiller added 1 commit 2025-09-15 21:55:19 +00:00
Update dependency rubocop to v1.80.2
Some checks failed
Run unit tests / rubocop (pull_request) Successful in 5m15s
Run unit tests / check-licenses (pull_request) Successful in 8m43s
Run unit tests / copyright_notice (pull_request) Successful in 14m55s
Run unit tests / unit_tests (pull_request) Successful in 20m52s
Run unit tests / build-static-assets (pull_request) Failing after 3s
d13778035d
bustikiller force-pushed renovate/rubocop-1.x-lockfile from d13778035d to 1ec8a21a51 2025-09-16 22:17:18 +00:00 Compare
bustikiller scheduled this pull request to auto merge when all checks succeed 2025-09-17 06:51:42 +00:00
bustikiller changed title from Update dependency rubocop to v1.80.2 to Update dependency rubocop to v1.80.2 - autoclosed 2025-09-17 22:19:46 +00:00
bustikiller closed this pull request 2025-09-17 22:19:46 +00:00
Some checks failed
Run unit tests / unit_tests (pull_request) Failing after 23s
Required
Details
Run unit tests / build-static-assets (pull_request) Has been skipped
Required
Details
Run unit tests / check-licenses (pull_request) Failing after 8s
Required
Details
Run unit tests / copyright_notice (pull_request) Failing after 14s
Required
Details
Run unit tests / rubocop (pull_request) Successful in 3m21s
Required
Details

Pull request closed

Sign in to join this conversation.
No Reviewers
No Label
No Milestone
No project
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: bustikiller/wedding-planner#318
No description provided.