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

Updates `rubocop` from 1.84.1 to 1.84.2
<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.2</h2>
<h3>Bug fixes</h3>
<ul>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14854">#14854</a>:
 Fix a clobbering error in <code>Style/BlockDelimiters</code> when 
autocorrecting nested multi-line blocks with adjacent curly braces. (<a 
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14837">#14837</a>:
 Fix an error for <code>Style/IfUnlessModifier</code> when the 
first value uses a normal <code>if</code> and the others use 
modifier <code>if</code>. (<a 
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14858">#14858</a>:
 Fix an infinite loop error in 
<code>Layout/FirstArgumentIndentation</code> when first arguments 
are over-indented in nested method calls. (<a 
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14843">#14843</a>:
 Fix an error in <code>Layout/MultilineMethodCallIndentation</code> 
when a multiline method call follows a hash access. (<a 
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14859">#14859</a>:
 Fix an error in <code>Layout/MultilineMethodCallIndentation</code> 
when a multiline method call includes a keyword argument whose value is a 
method call with a block. (<a 
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/14839">#14839</a>:
 Fix a false positive for 
<code>Layout/EmptyLinesAfterModuleInclusion</code> when 
<code>include</code> is nested inside an array. (<a 
href="https://github.com/eugeneius"><code>@​eugeneius</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/7436">#7436</a>:
 Fix <code>Style/FormatStringToken</code> to not autocorrect 
strings outside of format method context in aggressive mode. (<a 
href="https://github.com/ydakuka"><code>@​ydakuka</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14841">#14841</a>:
 Fix false negatives in <code>Style/HashAsLastArrayItem</code> when 
an array contains only a single hash element. (<a 
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14865">#14865</a>:
 Fix false negatives in <code>Style/MethodDefParentheses</code> 
when using splat or forwarding arguments without parentheses. (<a 
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14833">#14833</a>:
 Fix false positive for 
<code>Layout/MultilineMethodCallIndentation</code> when a multi-dot 
method chain is inside a hash pair value. (<a 
href="https://github.com/ydakuka"><code>@​ydakuka</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14847">#14847</a>:
 Fix false positive for 
<code>Layout/MultilineMethodCallIndentation</code> when a method is 
chained after a single-line block. (<a 
href="https://github.com/ydakuka"><code>@​ydakuka</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/14867">#14867</a>:
 Fix <code>Offense#highlighted_area</code> for 
<code>PseudoSourceRange</code> locations. (<a 
href="https://github.com/rafaelfranca"><code>@​rafaelfranca</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14861">#14861</a>:
 Fix an error in <code>Style/IfUnlessModifier</code> when the first 
value uses a normal <code>if</code> and the others use ternary 
operator. (<a 
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14816">#14816</a>:
 Use toplevel cache configs for remote configuration files. (<a 
href="https://github.com/nekketsuuu"><code>@​nekketsuuu</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.2 (2026-02-12)</h2>
<h3>Bug fixes</h3>
<ul>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14854">#14854</a>:
 Fix a clobbering error in <code>Style/BlockDelimiters</code> when 
autocorrecting nested multi-line blocks with adjacent curly braces. ([<a 
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14837">#14837</a>:
 Fix an error for <code>Style/IfUnlessModifier</code> when the 
first value uses a normal <code>if</code> and the others use 
modifier <code>if</code>. ([<a 
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14858">#14858</a>:
 Fix an infinite loop error in 
<code>Layout/FirstArgumentIndentation</code> when first arguments 
are over-indented in nested method calls. ([<a 
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14843">#14843</a>:
 Fix an error in <code>Layout/MultilineMethodCallIndentation</code> 
when a multiline method call follows a hash access. ([<a 
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14859">#14859</a>:
 Fix an error in <code>Layout/MultilineMethodCallIndentation</code> 
when a multiline method call includes a keyword argument whose value is a 
method call with a block. ([<a 
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/14839">#14839</a>:
 Fix a false positive for 
<code>Layout/EmptyLinesAfterModuleInclusion</code> when 
<code>include</code> is nested inside an array. ([<a 
href="https://github.com/eugeneius"><code>@​eugeneius</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/7436">#7436</a>:
 Fix <code>Style/FormatStringToken</code> to not autocorrect 
strings outside of format method context in aggressive mode. ([<a 
href="https://github.com/ydakuka"><code>@​ydakuka</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14841">#14841</a>:
 Fix false negatives in <code>Style/HashAsLastArrayItem</code> when 
an array contains only a single hash element. ([<a 
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14865">#14865</a>:
 Fix false negatives in <code>Style/MethodDefParentheses</code> 
when using splat or forwarding arguments without parentheses. ([<a 
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14833">#14833</a>:
 Fix false positive for 
<code>Layout/MultilineMethodCallIndentation</code> when a multi-dot 
method chain is inside a hash pair value. ([<a 
href="https://github.com/ydakuka"><code>@​ydakuka</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14847">#14847</a>:
 Fix false positive for 
<code>Layout/MultilineMethodCallIndentation</code> when a method is 
chained after a single-line block. ([<a 
href="https://github.com/ydakuka"><code>@​ydakuka</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/14867">#14867</a>:
 Fix <code>Offense#highlighted_area</code> for 
<code>PseudoSourceRange</code> locations. ([<a 
href="https://github.com/rafaelfranca"><code>@​rafaelfranca</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14861">#14861</a>:
 Fix an error in <code>Style/IfUnlessModifier</code> when the first 
value uses a normal <code>if</code> and the others use ternary 
operator. ([<a 
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/14816">#14816</a>:
 Use toplevel cache configs for remote configuration files. ([<a 
href="https://github.com/nekketsuuu"><code>@​nekketsuuu</code></a>][])</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a 
href="https://github.com/rubocop/rubocop/commit/b210a6e157450ff8b9d162eaf947a0e2f35f09c9"><code>b210a6e</code></a>
 Cut 1.84.2</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/b2e355b5a3e7a43e319abad6c2841b0c44451b04"><code>b2e355b</code></a>
 Update Changelog</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/c7a3c5e46311c16214e9931734410e54e3febad6"><code>c7a3c5e</code></a>
 [Fix rubocop#7436] Fix <code>Style/FormatStringToken</code> to not 
autocorrect strings o...</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/87b0ca4bfe20528bba2193f150c7d678d480b28d"><code>87b0ca4</code></a>
 [Fix rubocop#14847] Fix false positive for 
`Layout/MultilineMethodCallIndenta...</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/429b640c441b0a9447194e886e7ad9c58dcb333a"><code>429b640</code></a>
 [Fix rubocop#14833] Fix false positive for 
`Layout/MultilineMethodCallIndenta...</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/d1bf37957c0228a76cb6d7593ecafb748ed2bcfb"><code>d1bf379</code></a>
 [Fix <a 
href="https://redirect.github.com/rubocop/rubocop/issues/14841">#14841</a>]
 Fix false negatives in 
<code>Style/HashAsLastArrayItem</code></li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/a1157d2c47ea3eab65a6a9da1aa7e9c976edbb2c"><code>a1157d2</code></a>
 [Fix <a 
href="https://redirect.github.com/rubocop/rubocop/issues/14816">#14816</a>]
 Use toplevel cache configs for remote configuration files</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/7849c22154060583ac927c5e78ae34a5885e0a01"><code>7849c22</code></a>
 Update 
changelog/fix_offense_highlighted_area_for_pseudo_source_range_locatio...</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/1f8e439aad6f678ad5b5993ed32abe3b079cf528"><code>1f8e439</code></a>
 Fix Offense#highlighted_area for PseudoSourceRange locations</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/99422a0ee9ec63425b0cf1d2b01beddaf3011fcb"><code>99422a0</code></a>
 [Fix <a 
href="https://redirect.github.com/rubocop/rubocop/issues/14858">#14858</a>]
 Fix an error in 
<code>Layout/FirstArgumentIndentation</code></li>
<li>Additional commits viewable in <a 
href="https://github.com/rubocop/rubocop/compare/v1.84.1...v1.84.2">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.1&new-version=1.84.2)](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/6805

-- Commit Summary --

  * Bump rubocop from 1.84.1 to 1.84.2 in the rubocop group

-- File Changes --

    M Gemfile.lock (4)

-- Patch Links --

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

-- 
Reply to this email directly or view it on GitHub:
https://github.com/openstreetmap/openstreetmap-website/pull/6805
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