Bumps the rubocop group with 1 update: 
[rubocop](https://github.com/rubocop/rubocop).

Updates `rubocop` from 1.84.0 to 1.84.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.84.1</h2>
<h3>Bug fixes</h3>
<ul>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/14803">#14803</a>:
 Fix an error for <code>Layout/IndentationWidth</code> cop. (<a 
href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14806">#14806</a>:
 Fix an error in <code>Style/NegativeArrayIndex</code> when using 
<code>self</code> as array with implicit 
<code>self</code> receiver. (<a 
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/14813">#14813</a>:
 Fix opt-in cop comments taking precedence over configuration file exclude 
patterns. (<a 
href="https://github.com/afrase"><code>@​afrase</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/14819">#14819</a>:
 Fix incorrect autocorrect for <code>Style/GuardClause</code> when 
using heredoc as an argument of method call in raise in 
<code>else</code> branch. (<a 
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14805">#14805</a>:
 Bring back the original indentation from before version 1.84.0. (<a 
href="https://github.com/Magikdidi24"><code>@​Magikdidi24</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/12754">#12754</a>:
 Fix an infinite loop for <code>Style/IfUnlessModifier</code> when 
multiple <code>if</code>/<code>unless</code> statements 
share the same line in arrays, method arguments, or hash values. (<a 
href="https://github.com/ydakuka"><code>@​ydakuka</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14817">#14817</a>:
 Fix an infinite loop between 
<code>Layout/FirstArgumentIndentation</code> and 
<code>Layout/LineLength</code> when correcting method chains. 
(<a 
href="https://github.com/ydakuka"><code>@​ydakuka</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/11513">#11513</a>:
 Fix <code>Layout/MultilineMethodCallIndentation</code> to properly 
handle method chains inside hash pair values. (<a 
href="https://github.com/ydakuka"><code>@​ydakuka</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/14814">#14814</a>:
 Fix push/pop directives to properly handle nested scopes and state 
restoration. (<a 
href="https://github.com/Magikdidi24"><code>@​Magikdidi24</code></a>)</li>
</ul>
<h3>Changes</h3>
<ul>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14823">#14823</a>:
 Add the built-in <code>infinite?</code> method to the allowlists 
for <code>Naming/PredicateMethod</code>, 
<code>Style/IfWithBooleanLiteralBranches</code>, and 
<code>Style/RedundantCondition</code>, in addition to the existing 
<code>nonzero?</code>. (<a 
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/14735">#14735</a>:
 Remove deprecated InjectDefaults handling. (<a 
href="https://github.com/afurm"><code>@​afurm</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.84.1 (2026-02-02)</h2>
<h3>Bug fixes</h3>
<ul>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/14803">#14803</a>:
 Fix an error for <code>Layout/IndentationWidth</code> cop. ([<a 
href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14806">#14806</a>:
 Fix an error in <code>Style/NegativeArrayIndex</code> when using 
<code>self</code> as array with implicit 
<code>self</code> receiver. ([<a 
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/14813">#14813</a>:
 Fix opt-in cop comments taking precedence over configuration file exclude 
patterns. ([<a 
href="https://github.com/afrase"><code>@​afrase</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/14819">#14819</a>:
 Fix incorrect autocorrect for <code>Style/GuardClause</code> when 
using heredoc as an argument of method call in raise in 
<code>else</code> branch. ([<a 
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14805">#14805</a>:
 Bring back the original indentation from before version 1.84.0. ([<a 
href="https://github.com/Magikdidi24"><code>@​Magikdidi24</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/12754">#12754</a>:
 Fix an infinite loop for <code>Style/IfUnlessModifier</code> when 
multiple <code>if</code>/<code>unless</code> statements 
share the same line in arrays, method arguments, or hash values. ([<a 
href="https://github.com/ydakuka"><code>@​ydakuka</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14817">#14817</a>:
 Fix an infinite loop between 
<code>Layout/FirstArgumentIndentation</code> and 
<code>Layout/LineLength</code> when correcting method chains. 
([<a 
href="https://github.com/ydakuka"><code>@​ydakuka</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/11513">#11513</a>:
 Fix <code>Layout/MultilineMethodCallIndentation</code> to properly 
handle method chains inside hash pair values. ([<a 
href="https://github.com/ydakuka"><code>@​ydakuka</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/14814">#14814</a>:
 Fix push/pop directives to properly handle nested scopes and state 
restoration. ([<a 
href="https://github.com/Magikdidi24"><code>@​Magikdidi24</code></a>][])</li>
</ul>
<h3>Changes</h3>
<ul>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14823">#14823</a>:
 Add the built-in <code>infinite?</code> method to the allowlists 
for <code>Naming/PredicateMethod</code>, 
<code>Style/IfWithBooleanLiteralBranches</code>, and 
<code>Style/RedundantCondition</code>, in addition to the existing 
<code>nonzero?</code>. ([<a 
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/14735">#14735</a>:
 Remove deprecated InjectDefaults handling. ([<a 
href="https://github.com/afurm"><code>@​afurm</code></a>][])</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a 
href="https://github.com/rubocop/rubocop/commit/5a774b3e211d21aa2d5a8e33d85b7e2e4b16cf1e"><code>5a774b3</code></a>
 Cut 1.84.1</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/88d04caa11e36088e25173d81e7ca7711fbf6e0a"><code>88d04ca</code></a>
 Update Changelog</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/c4f9c2280404a91f06eadbef44ff12a13ed9cdaf"><code>c4f9c22</code></a>
 Disallow directory paths in inject_defaults!</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/7e43e4eb7602d07edfbb804ad6a85f94cc6e9454"><code>7e43e4e</code></a>
 Fix LSP disable comment edits for multiline literals (<a 
href="https://redirect.github.com/rubocop/rubocop/issues/14758">#14758</a>)</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/15f751d3cbd2696cf1413223f25268635b7086f4"><code>15f751d</code></a>
 [Fix rubocop#11513] Fix 
<code>Layout/MultilineMethodCallIndentation</code> to properly 
h...</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/29f5607f07f85f72d55c8f15b4f07894a7278298"><code>29f5607</code></a>
 [Fix rubocop#12754] Fix an infinite loop for 
<code>Style/IfUnlessModifier</code> when mu...</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/4ae10a707bca02603716a5c2456e28349024e095"><code>4ae10a7</code></a>
 [Fix rubocop#14817] Fix an infinite loop between 
`Layout/FirstArgumentIndenta...</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/aa6821cb7132a37e11887af0f4161bbc01001002"><code>aa6821c</code></a>
 Merge pull request <a 
href="https://redirect.github.com/rubocop/rubocop/issues/14813">#14813</a>
 from afrase/fix-exclude-pattern-precedence</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/558161c4e0b7d4fd6fb7665d771f6b93e00f054a"><code>558161c</code></a>
 Allowlist <code>infinite?</code> for some cops</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/3435c9552a3224298baac737671990fe787ae30e"><code>3435c95</code></a>
 Changed cop exclusion precedence to favor configuration</li>
<li>Additional commits viewable in <a 
href="https://github.com/rubocop/rubocop/compare/v1.84.0...v1.84.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.84.0&new-version=1.84.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 show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this 
group update PR and stop Dependabot creating any more for the specific 
dependency's major version (unless you unignore this specific 
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this 
group update PR and stop Dependabot creating any more for the specific 
dependency's minor version (unless you unignore this specific 
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR 
and stop Dependabot creating any more for the specific dependency (unless you 
unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore 
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will 
remove the ignore condition of the specified dependency and ignore conditions


</details>
You can view, comment on, or merge this pull request online at:

  https://github.com/openstreetmap/openstreetmap-website/pull/6776

-- Commit Summary --

  * Bump rubocop from 1.84.0 to 1.84.1 in the rubocop group

-- File Changes --

    M Gemfile.lock (4)

-- Patch Links --

https://github.com/openstreetmap/openstreetmap-website/pull/6776.patch
https://github.com/openstreetmap/openstreetmap-website/pull/6776.diff

-- 
Reply to this email directly or view it on GitHub:
https://github.com/openstreetmap/openstreetmap-website/pull/6776
You are receiving this because you are subscribed to this thread.

Message ID: <openstreetmap/openstreetmap-website/pull/[email protected]>
_______________________________________________
rails-dev mailing list
[email protected]
https://lists.openstreetmap.org/listinfo/rails-dev

Reply via email to