Skip to content

Commit 0fd2072

Browse files
chore(deps): update dependency rubocop to '~> 1.73.0' (#391)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [rubocop](https://rubocop.org/) ([source](https://redirect.github.com/rubocop/rubocop), [changelog](https://redirect.github.com/rubocop/rubocop/releases/tag/v1.73.0)) | `'~> 1.72.0'` -> `'~> 1.73.0'` | [![age](https://developer.mend.io/api/mc/badges/age/rubygems/rubocop/1.73.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/rubygems/rubocop/1.73.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/rubygems/rubocop/1.72.2/1.73.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/rubygems/rubocop/1.72.2/1.73.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>rubocop/rubocop (rubocop)</summary> ### [`v1.73.0`](https://redirect.github.com/rubocop/rubocop/blob/HEAD/CHANGELOG.md#1730-2025-02-26) [Compare Source](https://redirect.github.com/rubocop/rubocop/compare/v1.72.2...v1.73.0) ##### New features - [#&#8203;11024](https://redirect.github.com/rubocop/rubocop/issues/11024): Add `require_always` option to `Style/EndlessMethod`. (\[[@&#8203;koic](https://redirect.github.com/koic)]\[]) - [#&#8203;11024](https://redirect.github.com/rubocop/rubocop/issues/11024): Add `require_single_line` option to `Style/EndlessMethod`. (\[[@&#8203;jtannas](https://redirect.github.com/jtannas)]\[]) - [#&#8203;9935](https://redirect.github.com/rubocop/rubocop/issues/9935): Introduce EnforcedStyleForMultiline "diff_comma". (\[[@&#8203;flavorjones](https://redirect.github.com/flavorjones)]\[]) ##### Bug fixes - [#&#8203;13867](https://redirect.github.com/rubocop/rubocop/issues/13867): Fix an error for plugins when not running RuboCop through Bundler. (\[[@&#8203;earlopain](https://redirect.github.com/earlopain)]\[]) - [#&#8203;13902](https://redirect.github.com/rubocop/rubocop/pull/13902): Fix false negative for `Style/RedundantSelfAssignment` when the method receives a block. (\[[@&#8203;vlad-pisanov](https://redirect.github.com/vlad-pisanov)]\[]) - [#&#8203;13826](https://redirect.github.com/rubocop/rubocop/issues/13826): Fix false positives for regex cops when `Lint/MixedCaseRange` is enabled. (\[[@&#8203;earlopain](https://redirect.github.com/earlopain)]\[]) - [#&#8203;13818](https://redirect.github.com/rubocop/rubocop/issues/13818): Fix false positives for `Lint/Void` when using operator method call without argument. (\[[@&#8203;koic](https://redirect.github.com/koic)]\[]) - [#&#8203;13896](https://redirect.github.com/rubocop/rubocop/pull/13896): Fix a false positive for `Style/TrivialAccessors` with `instance_eval` and numblocks. (\[[@&#8203;earlopain](https://redirect.github.com/earlopain)]\[]) - [#&#8203;13910](https://redirect.github.com/rubocop/rubocop/pull/13910): Fix false positives for `Style/EndlessMethod` when using setter method definitions. (\[[@&#8203;koic](https://redirect.github.com/koic)]\[]) - [#&#8203;13889](https://redirect.github.com/rubocop/rubocop/pull/13889): Fix autocorrection for `Layout/LineLength` with interpolated strings when not on the first line. (\[[@&#8203;dvandersluis](https://redirect.github.com/dvandersluis)]\[]) - [#&#8203;13900](https://redirect.github.com/rubocop/rubocop/issues/13900): Fix infinite loop between `Layout/EmptyLinesAroundAccessModifier` and `Layout/EmptyLinesAroundBlockBody` with `EnforcedStyle: no_empty_lines`. (\[[@&#8203;dvandersluis](https://redirect.github.com/dvandersluis)]\[]) - [#&#8203;12692](https://redirect.github.com/rubocop/rubocop/issues/12692): Fix `Style/AccessorGrouping` with constants. (\[[@&#8203;tejasbubane](https://redirect.github.com/tejasbubane)]\[]) - [#&#8203;13882](https://redirect.github.com/rubocop/rubocop/issues/13882): Fix `Style/RedundantFormat` for annotated template strings with missing hash keys. (\[[@&#8203;dvandersluis](https://redirect.github.com/dvandersluis)]\[]) - [#&#8203;13880](https://redirect.github.com/rubocop/rubocop/issues/13880): Fix `Style/RedundantFormat` when given double-splatted arguments. (\[[@&#8203;dvandersluis](https://redirect.github.com/dvandersluis)]\[]) - [#&#8203;13907](https://redirect.github.com/rubocop/rubocop/pull/13907): Don't offer autocorrect for `Style/StringConcatenation` when numblocks are used. (\[[@&#8203;earlopain](https://redirect.github.com/earlopain)]\[]) - [#&#8203;13876](https://redirect.github.com/rubocop/rubocop/issues/13876): Don't consider `require 'pp'` to be redundant for `Lint/RedundantRequireStatement`. (\[[@&#8203;earlopain](https://redirect.github.com/earlopain)]\[]) - [#&#8203;13885](https://redirect.github.com/rubocop/rubocop/issues/13885): Update `Style/HashExcept` and `Style/HashSlice` to not register an offense if selecting over the hash value. (\[[@&#8203;dvandersluis](https://redirect.github.com/dvandersluis)]\[]) ##### Changes - [#&#8203;12948](https://redirect.github.com/rubocop/rubocop/issues/12948): Add `ForbiddenNames` configuration to `Naming/VariableName` to specify names that are forbidden. (\[[@&#8203;dvandersluis](https://redirect.github.com/dvandersluis)]\[]) - [#&#8203;13117](https://redirect.github.com/rubocop/rubocop/issues/13117): Add partial autocorrect support to `Lint/LiteralAsCondition` cop to check for redundant conditions. (\[[@&#8203;zopolis4](https://redirect.github.com/zopolis4)]\[]) - [#&#8203;13892](https://redirect.github.com/rubocop/rubocop/pull/13892): Allow merging of configured arrays and non-arrays. (\[[@&#8203;sambostock](https://redirect.github.com/sambostock)]\[]) - [#&#8203;13833](https://redirect.github.com/rubocop/rubocop/pull/13833): Add `Reference` to common params. (\[[@&#8203;sambostock](https://redirect.github.com/sambostock)]\[]) - [#&#8203;13890](https://redirect.github.com/rubocop/rubocop/pull/13890): Update `Lint/RedundantTypeConversion` to not register an offense when given a constructor with `exception: false`. (\[[@&#8203;dvandersluis](https://redirect.github.com/dvandersluis)]\[]) - [#&#8203;13729](https://redirect.github.com/rubocop/rubocop/pull/13729): Update `Style/RedundantCondition` cop to detect conditional expressions where the true branch is `true` and suggest replacing them with a logical OR. (\[[@&#8203;datpmt](https://redirect.github.com/datpmt)]\[]) </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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/line/line-bot-sdk-ruby). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuMiIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImRlcGVuZGVuY3kgdXBncmFkZSJdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 7bdad12 commit 0fd2072

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ gem 'multipart-post', '~> 2.4.1', require: false
66

77
group :development, :test do
88
# ref: http://docs.rubocop.org/en/latest/installation/
9-
gem 'rubocop', '~> 1.72.0', require: false
9+
gem 'rubocop', '~> 1.73.0', require: false
1010
gem 'yard', '~> 0.9.20'
1111
end
1212

Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ GEM
4343
diff-lcs (>= 1.2.0, < 2.0)
4444
rspec-support (~> 3.13.0)
4545
rspec-support (3.13.2)
46-
rubocop (1.72.2)
46+
rubocop (1.73.0)
4747
json (~> 2.3)
4848
language_server-protocol (~> 3.17.0.2)
4949
lint_roller (~> 1.1.0)
@@ -54,7 +54,7 @@ GEM
5454
rubocop-ast (>= 1.38.0, < 2.0)
5555
ruby-progressbar (~> 1.7)
5656
unicode-display_width (>= 2.4.0, < 4.0)
57-
rubocop-ast (1.38.0)
57+
rubocop-ast (1.38.1)
5858
parser (>= 3.3.1.0)
5959
ruby-progressbar (1.13.0)
6060
unicode-display_width (3.1.4)
@@ -76,7 +76,7 @@ DEPENDENCIES
7676
multipart-post (~> 2.4.1)
7777
rake (~> 13.0)
7878
rspec (~> 3.13.0)
79-
rubocop (~> 1.72.0)
79+
rubocop (~> 1.73.0)
8080
webmock (~> 3.25.0)
8181
yard (~> 0.9.20)
8282

0 commit comments

Comments
 (0)