Skip to content

Commit d9c2a9d

Browse files
chore(deps): Bump rubocop from 1.61.0 to 1.64.1 (#17)
Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.61.0 to 1.64.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rubocop/rubocop/releases">rubocop's releases</a>.</em></p> <blockquote> <h2>RuboCop 1.64.1</h2> <h3>Bug fixes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12951">#12951</a>: Fix an error for <code>Style/Copyright</code> when <code>AutocorrectNotice</code> is missing. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12932">#12932</a>: Fix end position of diagnostic for LSP. (<a href="https://github.com/ksss"><code>@​ksss</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12926">#12926</a>: Fix a false positive for <code>Style/SuperArguments</code> when the methods block argument is reassigned before <code>super</code>. (<a href="https://github.com/earlopain"><code>@​earlopain</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12931">#12931</a>: Fix false positives for <code>Style/RedundantLineContinuation</code> when line continuations involve <code>break</code>, <code>next</code>, or <code>yield</code> with a return value. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12924">#12924</a>: Fix false positives for <code>Style/SendWithLiteralMethodName</code> when <code>public_send</code> argument is a method name that cannot be autocorrected. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> </ul> <h2>RuboCop 1.64</h2> <h3>New features</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12904">#12904</a>: Add new <code>either_consistent</code> <code>SupportedShorthandSyntax</code> to <code>Style/HashSyntax</code>. (<a href="https://github.com/pawelma"><code>@​pawelma</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12842">#12842</a>: Add new <code>Style/SendWithLiteralMethodName</code> cop. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12309">#12309</a>: Add new <code>Style/SuperArguments</code> cop. (<a href="https://github.com/earlopain"><code>@​earlopain</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12917">#12917</a>: Suggest correct formatter name for <code>--format</code> command line option. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12242">#12242</a>: Support <code>AllowModifiersOnAttrs</code> option for <code>Style/AccessModifierDeclarations</code>. (<a href="https://github.com/krororo"><code>@​krororo</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/11585">#11585</a>: Support <code>AllowedMethods</code> for <code>Style/DocumentationMethod</code>. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/7189">#7189</a>: Fix a false positive for <code>Style/Copyright</code> when using multiline copyright notice. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12914">#12914</a>: Fix a false negative for <code>Layout/EmptyComment</code> when using an empty comment next to code after comment line. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12919">#12919</a>: Fix false negatives for <code>Style/ArgumentsForwarding</code> when forward target is <code>super</code>. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12923">#12923</a>: Fix false negatives for <code>Style/ArgumentsForwarding</code> when forward target is safe navigation method. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12894">#12894</a>: Fix false positives for <code>Style/MapIntoArray</code> when using <code>each</code> without receiver with <code>&lt;&lt;</code> to build an array. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12876">#12876</a>: Fix an error for the lockfile parser if a gemfile exists but a lockfile doesn't. (<a href="https://github.com/earlopain"><code>@​earlopain</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12888">#12888</a>: Fix <code>--no-exclude-limit</code> generating a todo with <code>Max</code> config instead of listing everything out with <code>Exclude</code>. (<a href="https://github.com/earlopain"><code>@​earlopain</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12898">#12898</a>: Fix an error for <code>TargetRailsVersion</code> when parsing from the lockfile with prerelease rails. (<a href="https://github.com/earlopain"><code>@​earlopain</code></a>)</li> </ul> <h3>Changes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12908">#12908</a>: Add rubocop-rspec back to suggested extensions when rspec-rails is in use. (<a href="https://github.com/pirj"><code>@​pirj</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12884">#12884</a>: Align output from <code>cop.documentation_url</code> with <code>--show-docs-url</code> when passing a config as argument. (<a href="https://github.com/earlopain"><code>@​earlopain</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12905">#12905</a>: Support <code>ActiveSupportExtensionsEnabled</code> for <code>Style/SymbolProc</code>. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12897">#12897</a>: Respect user's intentions with <code>workspace/executeCommand</code> LSP method. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> </ul> <h2>RuboCop 1.63.5</h2> <h3>Bug fixes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md">rubocop's changelog</a>.</em></p> <blockquote> <h2>1.64.1 (2024-05-31)</h2> <h3>Bug fixes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12951">#12951</a>: Fix an error for <code>Style/Copyright</code> when <code>AutocorrectNotice</code> is missing. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12932">#12932</a>: Fix end position of diagnostic for LSP. ([<a href="https://github.com/ksss"><code>@​ksss</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12926">#12926</a>: Fix a false positive for <code>Style/SuperArguments</code> when the methods block argument is reassigned before <code>super</code>. ([<a href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12931">#12931</a>: Fix false positives for <code>Style/RedundantLineContinuation</code> when line continuations involve <code>break</code>, <code>next</code>, or <code>yield</code> with a return value. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12924">#12924</a>: Fix false positives for <code>Style/SendWithLiteralMethodName</code> when <code>public_send</code> argument is a method name that cannot be autocorrected. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> </ul> <h2>1.64.0 (2024-05-23)</h2> <h3>New features</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12904">#12904</a>: Add new <code>either_consistent</code> <code>SupportedShorthandSyntax</code> to <code>Style/HashSyntax</code>. ([<a href="https://github.com/pawelma"><code>@​pawelma</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12842">#12842</a>: Add new <code>Style/SendWithLiteralMethodName</code> cop. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12309">#12309</a>: Add new <code>Style/SuperArguments</code> cop. ([<a href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12917">#12917</a>: Suggest correct formatter name for <code>--format</code> command line option. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12242">#12242</a>: Support <code>AllowModifiersOnAttrs</code> option for <code>Style/AccessModifierDeclarations</code>. ([<a href="https://github.com/krororo"><code>@​krororo</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/11585">#11585</a>: Support <code>AllowedMethods</code> for <code>Style/DocumentationMethod</code>. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> </ul> <h3>Bug fixes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/7189">#7189</a>: Fix a false positive for <code>Style/Copyright</code> when using multiline copyright notice. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12914">#12914</a>: Fix a false negative for <code>Layout/EmptyComment</code> when using an empty comment next to code after comment line. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12919">#12919</a>: Fix false negatives for <code>Style/ArgumentsForwarding</code> when forward target is <code>super</code>. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12923">#12923</a>: Fix false negatives for <code>Style/ArgumentsForwarding</code> when forward target is safe navigation method. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12894">#12894</a>: Fix false positives for <code>Style/MapIntoArray</code> when using <code>each</code> without receiver with <code>&lt;&lt;</code> to build an array. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12876">#12876</a>: Fix an error for the lockfile parser if a gemfile exists but a lockfile doesn't. ([<a href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12888">#12888</a>: Fix <code>--no-exclude-limit</code> generating a todo with <code>Max</code> config instead of listing everything out with <code>Exclude</code>. ([<a href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12898">#12898</a>: Fix an error for <code>TargetRailsVersion</code> when parsing from the lockfile with prerelease rails. ([<a href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li> </ul> <h3>Changes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12908">#12908</a>: Add rubocop-rspec back to suggested extensions when rspec-rails is in use. ([<a href="https://github.com/pirj"><code>@​pirj</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12884">#12884</a>: Align output from <code>cop.documentation_url</code> with <code>--show-docs-url</code> when passing a config as argument. ([<a href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12905">#12905</a>: Support <code>ActiveSupportExtensionsEnabled</code> for <code>Style/SymbolProc</code>. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12897">#12897</a>: Respect user's intentions with <code>workspace/executeCommand</code> LSP method. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> </ul> <h2>1.63.5 (2024-05-09)</h2> <h3>Bug fixes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12877">#12877</a>: Fix an infinite loop error for <code>Layout/FirstArgumentIndentation</code> when specifying <code>EnforcedStyle: with_fixed_indentation</code> of <code>Layout/ArrayAlignment</code>. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/12873">#12873</a>: Fix an error for <code>Metrics/BlockLength</code> when the <code>CountAsOne</code> config is invalid. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12881">#12881</a>: Fix incorrect autocorrect when <code>Style/NumericPredicate</code> is used with negations. ([<a href="https://github.com/fatkodima"><code>@​fatkodima</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/12882">#12882</a>: Fix <code>Layout/CommentIndentation</code> for comment-only pattern matching. ([<a href="https://github.com/nekketsuuu"><code>@​nekketsuuu</code></a>][])</li> </ul> <h2>1.63.4 (2024-04-28)</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rubocop/rubocop/commit/31be3004ffb6c6bb8a5dc105993622c2c5aa99f4"><code>31be300</code></a> Cut 1.64.1</li> <li><a href="https://github.com/rubocop/rubocop/commit/8ba7464fa7f45d3cd0fc38dd7551122105a831b8"><code>8ba7464</code></a> Update Changelog</li> <li><a href="https://github.com/rubocop/rubocop/commit/80f619b296e41655aabf913184cb23f19a2371bf"><code>80f619b</code></a> Fix an error for <code>Style/Copyright</code></li> <li><a href="https://github.com/rubocop/rubocop/commit/a920ba5d227fb2eb78e97539acbd9894db710eea"><code>a920ba5</code></a> [Fix <a href="https://redirect.github.com/rubocop/rubocop/issues/12949">#12949</a>] Use the secret for the coverage reporter id</li> <li><a href="https://github.com/rubocop/rubocop/commit/f01e93385060e181e1698c186a871fc9d2a1194e"><code>f01e933</code></a> Merge pull request <a href="https://redirect.github.com/rubocop/rubocop/issues/12946">#12946</a> from Earlopain/speedier-ci</li> <li><a href="https://github.com/rubocop/rubocop/commit/43105b4d55a0ee0ba58dd7e483936d0ac6905bf3"><code>43105b4</code></a> Slightly speed up CI runs</li> <li><a href="https://github.com/rubocop/rubocop/commit/6463bf21188c28b747acf1a276dd3d23c27673a8"><code>6463bf2</code></a> Move main tests to GitHub actions</li> <li><a href="https://github.com/rubocop/rubocop/commit/54421d6df7fb245f836fe8074690171c02b3d7b6"><code>54421d6</code></a> [Fix <a href="https://redirect.github.com/rubocop/rubocop/issues/12910">#12910</a>] Ensure that RuboCop runs warning-free</li> <li><a href="https://github.com/rubocop/rubocop/commit/1cfe0b33f02db351a681f7a139a54912a308066a"><code>1cfe0b3</code></a> Move <code>ascii_spec</code> to GitHub actions</li> <li><a href="https://github.com/rubocop/rubocop/commit/fbdffc384092bc9069b199ff3db938e1f9c0f035"><code>fbdffc3</code></a> Move <code>internal_investigation</code> to GitHub actions</li> <li>Additional commits viewable in <a href="https://github.com/rubocop/rubocop/compare/v1.61.0...v1.64.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rubocop&package-manager=bundler&previous-version=1.61.0&new-version=1.64.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> > **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1d3b986 commit d9c2a9d

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ end
1717
gem 'benchmark-ips', '~> 2.13'
1818
gem 'minitest', '~> 5.22'
1919
gem 'rake', '~> 13.2'
20-
gem 'rubocop', '~> 1.21'
20+
gem 'rubocop', '~> 1.64'
2121

2222
gem 'simplecov', require: false
2323
gem 'simplecov-cobertura', require: false

Gemfile.lock

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ GEM
4646
erubi (1.12.0)
4747
i18n (1.14.5)
4848
concurrent-ruby (~> 1.0)
49-
json (2.7.1)
49+
json (2.7.2)
5050
language_server-protocol (3.17.0.3)
5151
loofah (2.22.0)
5252
crass (~> 1.0.2)
@@ -59,8 +59,8 @@ GEM
5959
racc (~> 1.4)
6060
nokogiri (1.16.5-arm64-darwin)
6161
racc (~> 1.4)
62-
parallel (1.24.0)
63-
parser (3.3.0.5)
62+
parallel (1.25.1)
63+
parser (3.3.3.0)
6464
ast (~> 2.4.1)
6565
racc
6666
racc (1.8.0)
@@ -78,22 +78,22 @@ GEM
7878
nokogiri (~> 1.14)
7979
rainbow (3.1.1)
8080
rake (13.2.1)
81-
regexp_parser (2.9.0)
82-
rexml (3.2.8)
83-
strscan (>= 3.0.9)
84-
rubocop (1.61.0)
81+
regexp_parser (2.9.2)
82+
rexml (3.3.1)
83+
strscan
84+
rubocop (1.64.1)
8585
json (~> 2.3)
8686
language_server-protocol (>= 3.17.0)
8787
parallel (~> 1.10)
8888
parser (>= 3.3.0.2)
8989
rainbow (>= 2.2.2, < 4.0)
9090
regexp_parser (>= 1.8, < 3.0)
9191
rexml (>= 3.2.5, < 4.0)
92-
rubocop-ast (>= 1.30.0, < 2.0)
92+
rubocop-ast (>= 1.31.1, < 2.0)
9393
ruby-progressbar (~> 1.7)
9494
unicode-display_width (>= 2.4.0, < 3.0)
95-
rubocop-ast (1.31.1)
96-
parser (>= 3.3.0.4)
95+
rubocop-ast (1.31.3)
96+
parser (>= 3.3.1.0)
9797
ruby-progressbar (1.13.0)
9898
simplecov (0.22.0)
9999
docile (~> 1.1)
@@ -120,7 +120,7 @@ DEPENDENCIES
120120
clsx-rails!
121121
minitest (~> 5.22)
122122
rake (~> 13.2)
123-
rubocop (~> 1.21)
123+
rubocop (~> 1.64)
124124
simplecov
125125
simplecov-cobertura
126126

0 commit comments

Comments
 (0)