Skip to content
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

Update dependency rubocop to v1.74.0 #60

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 14, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
rubocop (source, changelog) '1.71.2' -> '1.74.0' age adoption passing confidence

Release Notes

rubocop/rubocop (rubocop)

v1.74.0

Compare Source

New features
Bug fixes
  • #​13969: Fix a false positive for Lint/SharedMutableDefault when capacity keyword argument is used. ([@​koic][])
  • #​13945: Fix a false positive for Style/DoubleNegation when calling define_method/define_singleton_method with a numblock. ([@​earlopain][])
  • #​13971: Fix false alarm for config obsoletion. ([@​koic][])
  • #​13960: Fix a false negative for Lint/ReturnInVoidContext when returning out of a block. ([@​earlopain][])
  • #​13947: Fix a false negative for Lint/UselessConstantScoping for constants defined in class << self. ([@​earlopain][])
  • #​13949: Fix a false negative for Lint/NonLocalExitFromIterator with numblocks. ([@​earlopain][])
  • #​13975: Fix false positives for Style/RedundantCurrentDirectoryInPath when using a complex current directory path in require_relative. ([@​koic][])
  • #​13963: Fix wrong autocorrect for Lint/LiteralAsCondition when the literal is followed by return, break, or next. ([@​earlopain][])
  • #​13946: Fix some false positives for Style/MethodCallWithArgsParentheses with EnforcedStyle: omit_parentheses style and numblocks. ([@​earlopain][])
  • #​13950: Fix sporadic errors about rubocop-rails or rubocop-performance extraction, even if they are already part of the Gemfile. ([@​earlopain][])
  • #​13981: Prevent redundant plugin loading when a duplicate plugin is specified in an inherited config. ([@​koic][])
  • #​13965: Update Lint/RedundantCopDisableDirective to register an offense when cop names are given with improper casing. ([@​dvandersluis][])
  • #​13948: Fix wrong autocorrect for Style/RescueModifier when using parallel assignment and the right-hand-side is not a bracketed array. ([@​earlopain][])
Changes
  • #​12851: Add EnforcedStyleForClasses and EnforcedStyleForModules configuration options to Style/ClassAndModuleChildren. ([@​dvandersluis][])
  • #​13979: Add Mode: conservative configuration to Style/FormatStringToken to make the cop only register offenses for strings given to printf, sprintf, format, and %. ([@​dvandersluis][])
  • #​13977: Allow TLS1_1 and TLS1_2 by default in Naming/VariableNumber to accommodate OpenSSL version parameter names. ([@​koic][])
  • #​13967: Make Lint/RedundantTypeConversion aware of redundant to_d. ([@​koic][])

v1.73.2

Compare Source

Bug fixes
  • #​13942: Fix incorrect disabling of departments when inheriting configuration. ([@​koic][])
  • #​13766: Fix false positives for Style/InverseMethods when using any? or none? with safe navigation operator. ([@​koic][])
  • #​13938: Fix false positives for Style/RedundantCondition when a variable or a constant is used. ([@​koic][])
  • #​13935: Fix a false negative for Style/RedundantFreeze when calling methods that produce frozen objects with numblocks. ([@​earlopain][])
  • #​13928: Fix end pattern with unmatched parenthesis: / (RegexpError) on Ruby 3.2.0. ([@​dvandersluis][])
  • #​13933: Fix wrong autocorrect for Style/KeywordParametersOrder when the arguments are on multiple lines and contain comments. ([@​earlopain][])
Changes

v1.73.1

Compare Source

Bug fixes
  • #​13920: Fix an error for Lint/MixedCaseRange when /[[ ]]/ is used. ([@​koic][])
  • #​13912: Fix wrong autocorrect for Lint/EmptyConditionalBody when assigning to a variable with only a single branch. ([@​earlopain][])
  • #​13913: Fix false positives for Style/RedundantCondition when using when true is used as the true branch and the condition is not a predicate method. ([@​koic][])
  • #​13909: Fix false positive with Layout/ClosingParenthesisIndentation when first parameter is a hash. ([@​tejasbubane][])
  • #​13915: Fix writing generics type of rbs-inline annotation for nested class in Style/CommentedKeyword. ([@​dak2][])
  • #​13916: Fix Lint/LiteralAsCondition acting on the right hand side of && nodes. ([@​zopolis4][])

v1.73.0

Compare Source

New features
Bug fixes
  • #​13867: Fix an error for plugins when not running RuboCop through Bundler. ([@​earlopain][])
  • #​13902: Fix false negative for Style/RedundantSelfAssignment when the method receives a block. ([@​vlad-pisanov][])
  • #​13826: Fix false positives for regex cops when Lint/MixedCaseRange is enabled. ([@​earlopain][])
  • #​13818: Fix false positives for Lint/Void when using operator method call without argument. ([@​koic][])
  • #​13896: Fix a false positive for Style/TrivialAccessors with instance_eval and numblocks. ([@​earlopain][])
  • #​13910: Fix false positives for Style/EndlessMethod when using setter method definitions. ([@​koic][])
  • #​13889: Fix autocorrection for Layout/LineLength with interpolated strings when not on the first line. ([@​dvandersluis][])
  • #​13900: Fix infinite loop between Layout/EmptyLinesAroundAccessModifier and Layout/EmptyLinesAroundBlockBody with EnforcedStyle: no_empty_lines. ([@​dvandersluis][])
  • #​12692: Fix Style/AccessorGrouping with constants. ([@​tejasbubane][])
  • #​13882: Fix Style/RedundantFormat for annotated template strings with missing hash keys. ([@​dvandersluis][])
  • #​13880: Fix Style/RedundantFormat when given double-splatted arguments. ([@​dvandersluis][])
  • #​13907: Don't offer autocorrect for Style/StringConcatenation when numblocks are used. ([@​earlopain][])
  • #​13876: Don't consider require 'pp' to be redundant for Lint/RedundantRequireStatement. ([@​earlopain][])
  • #​13885: Update Style/HashExcept and Style/HashSlice to not register an offense if selecting over the hash value. ([@​dvandersluis][])
Changes
  • #​12948: Add ForbiddenNames configuration to Naming/VariableName to specify names that are forbidden. ([@​dvandersluis][])
  • #​13117: Add partial autocorrect support to Lint/LiteralAsCondition cop to check for redundant conditions. ([@​zopolis4][])
  • #​13892: Allow merging of configured arrays and non-arrays. ([@​sambostock][])
  • #​13833: Add Reference to common params. ([@​sambostock][])
  • #​13890: Update Lint/RedundantTypeConversion to not register an offense when given a constructor with exception: false. ([@​dvandersluis][])
  • #​13729: Update Style/RedundantCondition cop to detect conditional expressions where the true branch is true and suggest replacing them with a logical OR. ([@​datpmt][])

v1.72.2

Compare Source

Bug fixes
  • #​13853: Fix exclusion of relative paths in plugin's AllCops: Exclude as expected. ([@​koic][])
  • #​13844: Fix an error for Style/RedundantFormat when a template argument is used without keyword arguments. ([@​koic][])
  • #​13857: Fix an error for Style/RedundantFormat when numeric placeholders is used in the template argument. ([@​koic][])
  • #​13861: Fix ArgumentError related to two deprecated AllowedPattern APIs. ([@​koic][])
  • #​13849: Fix an error for Lint/UselessConstantScoping when multiple assigning to constants after private access modifier. ([@​koic][])
  • #​13856: Fix false positives for Lint/UselessConstantScoping when a constant is used after private access modifier with arguments. ([@​koic][])
Changes

v1.72.1

Compare Source

Bug fixes
  • #​13836: Fix an error for Style/RedundantParentheses when a different expression appears before a range literal. ([@​koic][])
  • #​13839: Fix false positives for Lint/RedundantTypeConversion when passing block arguments when generating a Hash or a Set. ([@​koic][])
Changes
  • #​13839: Extension plugin is loaded automatically with `require 'rubocop/rspec/support'. ([@​koic][])

v1.72.0

Compare Source

New features
Bug fixes
  • #​13807: Fix false negatives for Style/RedundantParentheses when chaining [] method calls. ([@​koic][])
  • #​13788: Fix false negatives for Style/RedundantParentheses when [] method is called with variable or constant receivers. ([@​koic][])
  • #​13811: Fix false negatives for Style/RedundantParentheses when handling range literals with redundant parentheses. ([@​koic][])
  • #​13796: Fix crash in Layout/EmptyLinesAroundMethodBody for endless methods. ([@​dvandersluis][])
  • #​13817: Fix false positive for format specifier with non-numeric precision. ([@​dvandersluis][])
  • #​12672: Fix false positives for Lint/FormatParameterMismatch when the width value is interpolated. ([@​dvandersluis][])
  • #​12795: Fix Layout/BlockAlignment for blocks that are the body of an endless method. ([@​dvandersluis][])
  • #​13822: Fix undefined method Logger when processing watched file notifications. ([@​vinistock][])
  • #​13805: Make the language_server-protocol dependency version stricter. ([@​koic][])

Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/rubocop-1.x branch from a4a44a0 to 500c300 Compare February 15, 2025 17:11
@renovate renovate bot changed the title Update dependency rubocop to v1.72.0 Update dependency rubocop to v1.72.1 Feb 15, 2025
@renovate renovate bot force-pushed the renovate/rubocop-1.x branch from 500c300 to c797900 Compare February 16, 2025 08:44
@renovate renovate bot changed the title Update dependency rubocop to v1.72.1 Update dependency rubocop to v1.72.2 Feb 17, 2025
@renovate renovate bot force-pushed the renovate/rubocop-1.x branch from c797900 to cf1d5e1 Compare February 17, 2025 16:49
@yegor256
Copy link
Owner

@rultor please, try to merge, since 11 checks have passed

@rultor
Copy link
Collaborator

rultor commented Feb 17, 2025

@rultor please, try to merge, since 11 checks have passed

@yegor256 OK, I'll try to merge now. You can check the progress of the merge here.

@rultor
Copy link
Collaborator

rultor commented Feb 17, 2025

@rultor please, try to merge, since 11 checks have passed

@renovate[bot] @yegor256 Oops, I failed. You can see the full log here (spent 10min).

#1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: Waiting for mailhog at localhost:1028: Connection refused - connect(2) for "localhost" port 1028
#1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1975: #1975: #1975: #1975: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1988: #1975: #1975: #1975: #1988: #1988: #198

@renovate renovate bot force-pushed the renovate/rubocop-1.x branch from cf1d5e1 to 13c0923 Compare February 26, 2025 09:50
@renovate renovate bot changed the title Update dependency rubocop to v1.72.2 Update dependency rubocop to v1.73.0 Feb 26, 2025
@renovate renovate bot changed the title Update dependency rubocop to v1.73.0 Update dependency rubocop to v1.73.1 Feb 27, 2025
@renovate renovate bot force-pushed the renovate/rubocop-1.x branch from 13c0923 to f3c309a Compare February 27, 2025 14:15
@renovate renovate bot changed the title Update dependency rubocop to v1.73.1 Update dependency rubocop to v1.73.2 Mar 4, 2025
@renovate renovate bot force-pushed the renovate/rubocop-1.x branch from f3c309a to ab77972 Compare March 4, 2025 08:54
@renovate renovate bot changed the title Update dependency rubocop to v1.73.2 Update dependency rubocop to v1.74.0 Mar 13, 2025
@renovate renovate bot force-pushed the renovate/rubocop-1.x branch from ab77972 to 8a0c198 Compare March 13, 2025 09:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants