Update dependency rubocop-rails to v2.33.3 #319

Merged
bustikiller merged 1 commits from renovate/rubocop-rails-2.x-lockfile into main 2025-09-17 07:11:44 +00:00
Owner

This PR contains the following updates:

Package Update Change
rubocop-rails (source, changelog) minor 2.32.0 -> 2.33.3

Release Notes

rubocop/rubocop-rails (rubocop-rails)

v2.33.3

Compare Source

Bug fixes

v2.33.2

Compare Source

Bug fixes

v2.33.1

Compare Source

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

v2.33.0

Compare Source

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

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-rails](https://docs.rubocop.org/rubocop-rails/) ([source](https://github.com/rubocop/rubocop-rails), [changelog](https://github.com/rubocop/rubocop-rails/blob/master/CHANGELOG.md)) | minor | `2.32.0` -> `2.33.3` | --- ### Release Notes <details> <summary>rubocop/rubocop-rails (rubocop-rails)</summary> ### [`v2.33.3`](https://github.com/rubocop/rubocop-rails/blob/HEAD/CHANGELOG.md#2333-2025-08-14) [Compare Source](https://github.com/rubocop/rubocop-rails/compare/v2.33.2...v2.33.3) ##### Bug fixes - [#&#8203;1516](https://github.com/rubocop/rubocop-rails/pull/1516): Fix wrong autocorrect for `Rails/FindByOrAssignmentMemoization`. (\[[@&#8203;earlopain](https://github.com/earlopain)]\[]) ### [`v2.33.2`](https://github.com/rubocop/rubocop-rails/blob/HEAD/CHANGELOG.md#2332-2025-08-13) [Compare Source](https://github.com/rubocop/rubocop-rails/compare/v2.33.1...v2.33.2) ##### Bug fixes - [#&#8203;1488](https://github.com/rubocop/rubocop-rails/issues/1488): Fix an error for `Rails/ReadWriteAttribute` with a frozen string attribute name. (\[[@&#8203;viralpraxis](https://github.com/viralpraxis)]\[]) ### [`v2.33.1`](https://github.com/rubocop/rubocop-rails/blob/HEAD/CHANGELOG.md#2331-2025-08-12) [Compare Source](https://github.com/rubocop/rubocop-rails/compare/v2.33.0...v2.33.1) ##### Bug fixes - [#&#8203;1508](https://github.com/rubocop/rubocop-rails/issues/1508): Fix an error for `Rails/TransactionExitStatement` when `transaction` is part of a method chain. (\[[@&#8203;earlopain](https://github.com/earlopain)]\[]) - [#&#8203;1510](https://github.com/rubocop/rubocop-rails/pull/1510): Fix `Rails/OrderArguments` cop false positives when using column index argument. (\[[@&#8203;viralpraxis](https://github.com/viralpraxis)]\[]) - [#&#8203;1511](https://github.com/rubocop/rubocop-rails/pull/1511): Don't register offenses for `Rails/WhereExists` when `exists?` is given multiple or splat arguments. (\[[@&#8203;lovro-bikic](https://github.com/lovro-bikic)]\[]) ### [`v2.33.0`](https://github.com/rubocop/rubocop-rails/blob/HEAD/CHANGELOG.md#2330-2025-08-10) [Compare Source](https://github.com/rubocop/rubocop-rails/compare/v2.32.0...v2.33.0) ##### New features - [#&#8203;1324](https://github.com/rubocop/rubocop-rails/pull/1324): Add `Rails/FindByOrAssignmentMemoization` cop. (\[[@&#8203;r7kamura](https://github.com/r7kamura)]\[]) - [#&#8203;1501](https://github.com/rubocop/rubocop-rails/pull/1501): Add new cop `Rails/OrderArguments`. (\[[@&#8203;lovro-bikic](https://github.com/lovro-bikic)]\[]) ##### Bug fixes - [#&#8203;1497](https://github.com/rubocop/rubocop-rails/pull/1497): Fix bugs in `Rails/PluckId` and `Rails/PluckInWhere`. (\[[@&#8203;r7kamura](https://github.com/r7kamura)]\[]) - [#&#8203;1478](https://github.com/rubocop/rubocop-rails/issues/1478): Fix a false negative for `Rails/EnvLocal` when having preceding conditions. (\[[@&#8203;fatkodima](https://github.com/fatkodima)]\[]) - [#&#8203;1505](https://github.com/rubocop/rubocop-rails/issues/1505): Fix false negatives for `Rails/Pluck` when `map` method call is used in a block without a receiver. (\[[@&#8203;koic](https://github.com/koic)]\[]) - [#&#8203;1486](https://github.com/rubocop/rubocop-rails/issues/1486): Fix false positives for `Rails/Output` when `p` method is a DSL. (\[[@&#8203;koic](https://github.com/koic)]\[]) - [#&#8203;1495](https://github.com/rubocop/rubocop-rails/issues/1495): Fix false positives for `Rails/TransactionExitStatement` when `break` is used in loop in transactions. (\[[@&#8203;koic](https://github.com/koic)]\[]) - [#&#8203;1483](https://github.com/rubocop/rubocop-rails/pull/1483): Fix autocorrection error when `Rails/IndexWith` has nested offenses. (\[[@&#8203;lovro-bikic](https://github.com/lovro-bikic)]\[]) ##### Changes - [#&#8203;1500](https://github.com/rubocop/rubocop-rails/pull/1500): Exclude controllers and mailers from `Lint/UselessMethodDefinition`. (\[[@&#8203;r7kamura](https://github.com/r7kamura)]\[]) - [#&#8203;1474](https://github.com/rubocop/rubocop-rails/issues/1474): Make `Rails/EnumSyntax` include the lib directory by default. (\[[@&#8203;koic](https://github.com/koic)]\[]) - [#&#8203;1463](https://github.com/rubocop/rubocop-rails/issues/1463): Mark `Rails/IndexWith` as unsafe autocorrect. (\[[@&#8203;tejasbubane](https://github.com/tejasbubane)]\[]) </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 22:35:23 +00:00
Update dependency rubocop-rails to v2.33.3
Some checks failed
Run unit tests / unit_tests (pull_request) Failing after 1m10s
Run unit tests / build-static-assets (pull_request) Has been skipped
Run unit tests / rubocop (pull_request) Failing after 49s
Run unit tests / check-licenses (pull_request) Failing after 46s
Run unit tests / copyright_notice (pull_request) Failing after 40s
152e16ff5d
bustikiller force-pushed renovate/rubocop-rails-2.x-lockfile from 152e16ff5d to 838e52a0a0 2025-09-16 22:17:41 +00:00 Compare
bustikiller scheduled this pull request to auto merge when all checks succeed 2025-09-17 06:51:27 +00:00
bustikiller merged commit b0c9c6ad87 into main 2025-09-17 07:11:44 +00:00
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#319
No description provided.