Skip to content

Commit 6ad9b85

Browse files
authored
chore(deps-dev): bump rubocop from 1.80.2 to 1.81.1 (#1099)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.80.2 to 1.81.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 v1.81.1</h2> <h3>Bug fixes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14563">#14563</a>: Fix incorrect autocorrection for <code>Lint/DeprecatedOpenSSLConstant</code> when <code>Cipher</code> appears twice. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> </ul> <h3>Changes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14565">#14565</a>: Allow multiline method chain for <code>Style/NumberedParameters</code> and <code>Style/ItBlockParameter</code> with <code>EnforcedStyle: allow_single_line</code> when the block itself is on a single line. (<a href="https://github.com/earlopain"><code>@​earlopain</code></a>)</li> </ul> <h2>RuboCop v1.81.0</h2> <h3>New features</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14512">#14512</a>: Add <code>Style/ArrayIntersectWithSingleElement</code> cop. (<a href="https://github.com/r7kamura"><code>@​r7kamura</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/10971">#10971</a>: Support <code>EnforcedStyleForMultiline: diff_comma</code> in <code>Style/TrailingCommaInArguments</code>. (<a href="https://github.com/akouryy"><code>@​akouryy</code></a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14560">#14560</a>: Fix an error for <code>Style/NilComparison</code> cop when using the <code>var.==(nil)</code> and <code>var.===(nil)</code> syntax. (<a href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14535">#14535</a>: Fix autocorrect for <code>Style/ExplicitBlockArgument</code> when there are two methods that share the same implementation. (<a href="https://github.com/earlopain"><code>@​earlopain</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14527">#14527</a>: Fix false negatives for <code>Style/NumberedParameters</code> and <code>Style/ItBlockParameter</code> when using multiline method chain with <code>EnforcedStyle: allow_single_line</code>. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14522">#14522</a>: Fix false negatives for <code>Layout/MultilineOperationIndentation</code> when using indented code on LHS of equality operator in modifier method definition. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14496">#14496</a>: Fix false negatives for <code>Layout/EmptyLineBetweenDefs</code> for <code>AllowAdjacentOneLineDefs: false</code> and <code>DefLikeMacros</code> that take no block. (<a href="https://github.com/earlopain"><code>@​earlopain</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14553">#14553</a>: Fix false positives when <code>EnforcedStyle: allowed_in_returns</code> and <code>!!</code> appears across multiple lines in return position. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14557">#14557</a>: Fix false positives for <code>Style/RedundantParentheses</code> when parentheses are used around a one-line <code>rescue</code> expression as a condition. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14525">#14525</a>: Fix false positives for <code>Style/RedundantRegexpEscape</code> when an escaped variable sigil follows <code>#</code> (e.g., <code>/#\@foo/</code>, <code>/#\@@bar/</code>, <code>/#\$baz/</code>). (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14529">#14529</a>: Fix false negative in <code>Layout/RescueEnsureAlignment</code> with a block whose send node is split over multiple lines. (<a href="https://github.com/dvandersluis"><code>@​dvandersluis</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14528">#14528</a>: Fix <code>Style/RedundantFormat</code> when the format string has a variable width that isn't given as a literal value. (<a href="https://github.com/dvandersluis"><code>@​dvandersluis</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14541">#14541</a>: Fix gemspec parsing error when <code>ParserEngine: parser_prism</code> is configured in a base config file. ([<a href="https://github.com/sudoremo"><code>@​sudoremo</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14544">#14544</a>: Fix an incorrect autocorrect for <code>Lint/Void</code> when using a return value in assignment method definition. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14543">#14543</a>: Fix an incorrect autocorrect for <code>Style/RedundantRegexpArgument</code> when using escaped single quote character. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14540">#14540</a>: Fix an incorrect autocorrect for <code>Style/UnlessElse</code> when using <code>unless</code> with <code>then</code>. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14507">#14507</a>: Fix the built-in Ruby LSP add-on not restarting when config files (<code>.rubocop.yml</code>, <code>.rubocop_todo.yml</code>) change. (<a href="https://github.com/earlopain"><code>@​earlopain</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14514">#14514</a>: Fix the built-in Ruby LSP add-on not respecting <code>.rubocop</code> config file. (<a href="https://github.com/earlopain"><code>@​earlopain</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14508">#14508</a>: Fix the built-in Ruby LSP add-on getting in an irrecoverable state when the config is invalid on startup. (<a href="https://github.com/earlopain"><code>@​earlopain</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14534">#14534</a>: Prevent <code>Layout/LineLength</code> autocorrection from splitting a block if its receiver contains a heredoc. (<a href="https://github.com/dvandersluis"><code>@​dvandersluis</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14497">#14497</a>: Fix a false positive for <code>Lint/ShadowedArgument</code> when assigning inside a <code>rescue</code> block. (<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/14492">#14492</a>: Add support for LSP <code>positionEncoding</code> <code>utf-8</code> and <code>utf-32</code>. ([<a href="https://github.com/tmtm"><code>@​tmtm</code></a>][])</li> </ul> <!-- 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.81.1 (2025-09-26)</h2> <h3>Bug fixes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14563">#14563</a>: Fix incorrect autocorrection for <code>Lint/DeprecatedOpenSSLConstant</code> when <code>Cipher</code> appears twice. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> </ul> <h3>Changes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14565">#14565</a>: Allow multiline method chain for <code>Style/NumberedParameters</code> and <code>Style/ItBlockParameter</code> with <code>EnforcedStyle: allow_single_line</code> when the block itself is on a single line. ([<a href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li> </ul> <h2>1.81.0 (2025-09-25)</h2> <h3>New features</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14512">#14512</a>: Add <code>Style/ArrayIntersectWithSingleElement</code> cop. ([<a href="https://github.com/r7kamura"><code>@​r7kamura</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/10971">#10971</a>: Support <code>EnforcedStyleForMultiline: diff_comma</code> in <code>Style/TrailingCommaInArguments</code>. ([<a href="https://github.com/akouryy"><code>@​akouryy</code></a>][])</li> </ul> <h3>Bug fixes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14560">#14560</a>: Fix an error for <code>Style/NilComparison</code> cop when using the <code>var.==(nil)</code> and <code>var.===(nil)</code> syntax. ([<a href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14535">#14535</a>: Fix autocorrect for <code>Style/ExplicitBlockArgument</code> when there are two methods that share the same implementation. ([<a href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14527">#14527</a>: Fix false negatives for <code>Style/NumberedParameters</code> and <code>Style/ItBlockParameter</code> when using multiline method chain with <code>EnforcedStyle: allow_single_line</code>. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14522">#14522</a>: Fix false negatives for <code>Layout/MultilineOperationIndentation</code> when using indented code on LHS of equality operator in modifier method definition. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14496">#14496</a>: Fix false negatives for <code>Layout/EmptyLineBetweenDefs</code> for <code>AllowAdjacentOneLineDefs: false</code> and <code>DefLikeMacros</code> that take no block. ([<a href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14553">#14553</a>: Fix false positives when <code>EnforcedStyle: allowed_in_returns</code> and <code>!!</code> appears across multiple lines in return position. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14557">#14557</a>: Fix false positives for <code>Style/RedundantParentheses</code> when parentheses are used around a one-line <code>rescue</code> expression as a condition. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14525">#14525</a>: Fix false positives for <code>Style/RedundantRegexpEscape</code> when an escaped variable sigil follows <code>#</code> (e.g., <code>/#\@foo/</code>, <code>/#\@@bar/</code>, <code>/#\$baz/</code>). ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14529">#14529</a>: Fix false negative in <code>Layout/RescueEnsureAlignment</code> with a block whose send node is split over multiple lines. ([<a href="https://github.com/dvandersluis"><code>@​dvandersluis</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14528">#14528</a>: Fix <code>Style/RedundantFormat</code> when the format string has a variable width that isn't given as a literal value. ([<a href="https://github.com/dvandersluis"><code>@​dvandersluis</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14541">#14541</a>: Fix gemspec parsing error when <code>ParserEngine: parser_prism</code> is configured in a base config file. ([<a href="https://github.com/sudoremo"><code>@​sudoremo</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14544">#14544</a>: Fix an incorrect autocorrect for <code>Lint/Void</code> when using a return value in assignment method definition. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14543">#14543</a>: Fix an incorrect autocorrect for <code>Style/RedundantRegexpArgument</code> when using escaped single quote character. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14540">#14540</a>: Fix an incorrect autocorrect for <code>Style/UnlessElse</code> when using <code>unless</code> with <code>then</code>. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14507">#14507</a>: Fix the built-in Ruby LSP add-on not restarting when config files (<code>.rubocop.yml</code>, <code>.rubocop_todo.yml</code>) change. ([<a href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14514">#14514</a>: Fix the built-in Ruby LSP add-on not respecting <code>.rubocop</code> config file. ([<a href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14508">#14508</a>: Fix the built-in Ruby LSP add-on getting in an irrecoverable state when the config is invalid on startup. ([<a href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14534">#14534</a>: Prevent <code>Layout/LineLength</code> autocorrection from splitting a block if its receiver contains a heredoc. ([<a href="https://github.com/dvandersluis"><code>@​dvandersluis</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14497">#14497</a>: Fix a false positive for <code>Lint/ShadowedArgument</code> when assigning inside a <code>rescue</code> block. ([<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/14492">#14492</a>: Add support for LSP <code>positionEncoding</code> <code>utf-8</code> and <code>utf-32</code>. ([<a href="https://github.com/tmtm"><code>@​tmtm</code></a>][])</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rubocop/rubocop/commit/db5883191090a395e2eb777c65e6f6e37485e5ac"><code>db58831</code></a> Cut 1.81.1</li> <li><a href="https://github.com/rubocop/rubocop/commit/27972079538e1dbb45723ffdd0bd02690b230067"><code>2797207</code></a> Update Changelog</li> <li><a href="https://github.com/rubocop/rubocop/commit/6b2f047b3175d2df3fcc43b207f854ccf9ba6528"><code>6b2f047</code></a> [Fix <a href="https://redirect.github.com/rubocop/rubocop/issues/14563">#14563</a>] Fix an incorrect autocorrect for <code>Lint/DeprecatedOpenSSLConstant</code></li> <li><a href="https://github.com/rubocop/rubocop/commit/8260fc1aa14cd72d949d8b42378a83841e410ba2"><code>8260fc1</code></a> Allow implicit block args when the block itself is on one line only</li> <li><a href="https://github.com/rubocop/rubocop/commit/c1400e77be41d5f84bc0d6e2609898c5146ba4e8"><code>c1400e7</code></a> [Docs] Document <code>--editor-mode</code> in a comment`</li> <li><a href="https://github.com/rubocop/rubocop/commit/d3ef76a43567bc809825d85ac89e7660c8565d20"><code>d3ef76a</code></a> Reset the docs version</li> <li><a href="https://github.com/rubocop/rubocop/commit/386bf1051f54de1dacb641198947dd9705e969a5"><code>386bf10</code></a> Cut 1.81</li> <li><a href="https://github.com/rubocop/rubocop/commit/148250d5b0efc89bdafd6941b6cc1312db049b13"><code>148250d</code></a> Update Changelog</li> <li><a href="https://github.com/rubocop/rubocop/commit/face2444d6250fbcecd5fdd0b5dff9904e6ff5fb"><code>face244</code></a> Fix an error for <code>Style/NilComparison</code> cop</li> <li><a href="https://github.com/rubocop/rubocop/commit/d8c1d4cd128fc02dc55108f9eecd22194a1293df"><code>d8c1d4c</code></a> Fix an error for <code>InternalAffairsOnSendWithoutOnCSend</code> with <code>alias_method</code> an...</li> <li>Additional commits viewable in <a href="https://github.com/rubocop/rubocop/compare/v1.80.2...v1.81.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.80.2&new-version=1.81.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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>
2 parents 44ea84b + 8512041 commit 6ad9b85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -669,15 +669,15 @@ GEM
669669
rswag-ui (2.16.0)
670670
actionpack (>= 5.2, < 8.1)
671671
railties (>= 5.2, < 8.1)
672-
rubocop (1.80.2)
672+
rubocop (1.81.1)
673673
json (~> 2.3)
674674
language_server-protocol (~> 3.17.0.2)
675675
lint_roller (~> 1.1.0)
676676
parallel (~> 1.10)
677677
parser (>= 3.3.0.2)
678678
rainbow (>= 2.2.2, < 4.0)
679679
regexp_parser (>= 2.9.3, < 3.0)
680-
rubocop-ast (>= 1.46.0, < 2.0)
680+
rubocop-ast (>= 1.47.1, < 2.0)
681681
ruby-progressbar (~> 1.7)
682682
unicode-display_width (>= 2.4.0, < 4.0)
683683
rubocop-ast (1.47.1)

0 commit comments

Comments
 (0)