Commit 1c17ed3
authored
chore(deps-dev): bump rubocop from 1.81.1 to 1.81.6 (#1117)
Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.81.1 to
1.81.6.
<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.6</h2>
<h3>Bug fixes</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/14587">#14587</a>:
Fix an error for <code>Lint/SelfAssignment</code> when using
<code>[]=</code> assignment with no arguments. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/14572">#14572</a>:
Fix an error for <code>Style/ArrayIntersect</code> when
<code>intersection(other).any?</code> is called without a receiver. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/14599">#14599</a>:
Fix a crash when <code>Style/ConditionalAssignment</code> is configured
with <code>assign_inside_conditional</code> and the conditional contains
a multi-line regex. (<a
href="https://github.com/martinemde"><code>@martinemde</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/14574">#14574</a>:
Fix false positives for <code>Style/RedundantInterpolation</code> when
using a one-line <code>=></code> pattern matching. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/14602">#14602</a>:
Fix false positives for <code>Style/EndlessMethod</code> when heredoc is
used in method body. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/14594">#14594</a>:
Fix false positives for <code>Style/EndlessMethod</code> when the
endless method would exceed the maximum line length. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/14605">#14605</a>:
Fix false positive for <code>Lint/EmptyInterpolation</code> when
interpolation is inside a <code>%W</code> literal. (<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/14604">#14604</a>:
Fix <code>Style/RedundantFormat</code> false positive when a
interpolated value is given to a specifier with a width or precision.
(<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/14607">#14607</a>:
Fix <code>Style/RedundantFormat</code> handling control characters like
<code>\n</code>. (<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/14577">#14577</a>:
Fix an incorrect autocorrect for <code>Style/Semicolon</code> when a
method call using hash value omission without parentheses is terminated
with a semicolon. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/14552">#14552</a>:
Fix a false positive for <code>Security/JSONLoad</code> when
<code>create_additions</code> is explicitly specified. (<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/14566">#14566</a>:
Enhance <code>Lint::ConstantOverwrittenInRescue</code> cop to detect
offenses within fully qualified constants. (<a
href="https://github.com/viralpraxis"><code>@viralpraxis</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/14575">#14575</a>:
Enhance <code>Lint/ConstantOverwrittenInRescue</code> cop to detect
offenses within nested constants. (<a
href="https://github.com/viralpraxis"><code>@viralpraxis</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/14596">#14596</a>:
Change <code>Lint/ConstantOverwrittenInRescue</code> to detect any
constant assignment. (<a
href="https://github.com/viralpraxis"><code>@viralpraxis</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/14568">#14568</a>:
Make <code>Style/LambdaCall</code> autocorrection contextual. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
</ul>
</blockquote>
</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.6 (2025-10-21)</h2>
<h3>Bug fixes</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/14587">#14587</a>:
Fix an error for <code>Lint/SelfAssignment</code> when using
<code>[]=</code> assignment with no arguments. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/14572">#14572</a>:
Fix an error for <code>Style/ArrayIntersect</code> when
<code>intersection(other).any?</code> is called without a receiver. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/14599">#14599</a>:
Fix a crash when <code>Style/ConditionalAssignment</code> is configured
with <code>assign_inside_conditional</code> and the conditional contains
a multi-line regex. ([<a
href="https://github.com/martinemde"><code>@martinemde</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/14574">#14574</a>:
Fix false positives for <code>Style/RedundantInterpolation</code> when
using a one-line <code>=></code> pattern matching. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/14602">#14602</a>:
Fix false positives for <code>Style/EndlessMethod</code> when heredoc is
used in method body. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/14594">#14594</a>:
Fix false positives for <code>Style/EndlessMethod</code> when the
endless method would exceed the maximum line length. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/14605">#14605</a>:
Fix false positive for <code>Lint/EmptyInterpolation</code> when
interpolation is inside a <code>%W</code> literal. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/14604">#14604</a>:
Fix <code>Style/RedundantFormat</code> false positive when a
interpolated value is given to a specifier with a width or precision.
([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/14607">#14607</a>:
Fix <code>Style/RedundantFormat</code> handling control characters like
<code>\n</code>. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/14577">#14577</a>:
Fix an incorrect autocorrect for <code>Style/Semicolon</code> when a
method call using hash value omission without parentheses is terminated
with a semicolon. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/14552">#14552</a>:
Fix a false positive for <code>Security/JSONLoad</code> when
<code>create_additions</code> is explicitly specified. ([<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/14566">#14566</a>:
Enhance <code>Lint::ConstantOverwrittenInRescue</code> cop to detect
offenses within fully qualified constants. ([<a
href="https://github.com/viralpraxis"><code>@viralpraxis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/14575">#14575</a>:
Enhance <code>Lint/ConstantOverwrittenInRescue</code> cop to detect
offenses within nested constants. ([<a
href="https://github.com/viralpraxis"><code>@viralpraxis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/14596">#14596</a>:
Change <code>Lint/ConstantOverwrittenInRescue</code> to detect any
constant assignment. ([<a
href="https://github.com/viralpraxis"><code>@viralpraxis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/14568">#14568</a>:
Make <code>Style/LambdaCall</code> autocorrection contextual. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rubocop/rubocop/commit/8c98655771be6e2d978297a7c6fa7dab69f044ca"><code>8c98655</code></a>
Cut 1.81.6</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/f5431f53528ba3a2c3d9bf9635cd1e93aeea2ca5"><code>f5431f5</code></a>
Update broken link</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/3d76fb02f5dff48d36fa4b8a2765c71bb9fffccd"><code>3d76fb0</code></a>
Update Changelog</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/fe019a8b77ed0fea5cfc32dea95e96f260f6eb2b"><code>fe019a8</code></a>
Merge pull request <a
href="https://redirect.github.com/rubocop/rubocop/issues/14611">#14611</a>
from r7kamura/CopDirectiveSyntax-comment-improve</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/df813a3f8779bfca3b7d303fcb16300c66878559"><code>df813a3</code></a>
Improve <code>Lint/CopDirectiveSyntax</code> cop documentation
examples</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/905c991b6678d07600e70122bcb2481e1baa9dce"><code>905c991</code></a>
Merge pull request <a
href="https://redirect.github.com/rubocop/rubocop/issues/14606">#14606</a>
from dvandersluis/issue/14605</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/f7f653f50071f5c0dfef433126cb9ec6b3c29c90"><code>f7f653f</code></a>
Merge pull request <a
href="https://redirect.github.com/rubocop/rubocop/issues/14608">#14608</a>
from dvandersluis/issue/14604</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/91ed4aad9fd3ad6bb3275570829a1d60a1935ff9"><code>91ed4aa</code></a>
[Fix <a
href="https://redirect.github.com/rubocop/rubocop/issues/14604">#14604</a>]
Fix <code>Style/RedundantFormat</code> false positive when a
interpolated v...</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/bb5d1a383bd9c773b30e142a288016730c37c8c5"><code>bb5d1a3</code></a>
[Fix <a
href="https://redirect.github.com/rubocop/rubocop/issues/14605">#14605</a>]
Fix false positive for <code>Lint/EmptyInterpolation</code> when
interpolat...</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/783a4bf6f8bac13de7b4bd9762f68a2c11015156"><code>783a4bf</code></a>
Merge pull request <a
href="https://redirect.github.com/rubocop/rubocop/issues/14607">#14607</a>
from dvandersluis/redundant-format-control-chars</li>
<li>Additional commits viewable in <a
href="https://github.com/rubocop/rubocop/compare/v1.81.1...v1.81.6">compare
view</a></li>
</ul>
</details>
<br />
[](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>1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
670 | 670 | | |
671 | 671 | | |
672 | 672 | | |
673 | | - | |
| 673 | + | |
674 | 674 | | |
675 | 675 | | |
676 | 676 | | |
| |||
0 commit comments