[openstreetmap/openstreetmap-website] Bump rubocop from 1.85.1 to 1.86.0 in the rubocop group (PR #6940)
dependabot[bot]
notifications at github.com
Wed Mar 25 23:13:25 UTC 2026
Bumps the rubocop group with 1 update: [rubocop](https://github.com/rubocop/rubocop).
Updates `rubocop` from 1.85.1 to 1.86.0
<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.86.0</h2>
<h3>New features</h3>
<ul>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/15000">#15000</a>: Display ZJIT usage when running under LSP. (<a href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/14961">#14961</a>: Add <code>AllowedParentClasses</code> option to <code>Style/EmptyClassDefinition</code>. (<a href="https://github.com/hammadkhan"><code>@hammadkhan</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/14977">#14977</a>: Support <code>AllowedReceivers</code> for <code>Style/HashLookupMethod</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/pull/15015">#15015</a>: Fix <code>Style/ConcatArrayLiterals</code> autocorrect deleting code for percent literals with interpolation. (<a href="https://github.com/bbatsov"><code>@bbatsov</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/14897">#14897</a>: Detect constant reassignment after class/module definition in <code>Lint/ConstantReassignment</code>. (<a href="https://github.com/ydakuka"><code>@ydakuka</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/11829">#11829</a>: Fix false negatives for <code>Lint/DuplicateMethods</code> when duplicate methods are defined in anonymous classes and modules not assigned to a constant. (<a href="https://github.com/Darhazer"><code>@Darhazer</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/14988">#14988</a>: Fix false negative in <code>Style/RedundantParentheses</code> when redundant parentheses around range literals in block body. (<a href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/14916">#14916</a>: Fix false positive for <code>Layout/MultilineMethodCallIndentation</code> when method chain is inside a hash pair value passed to a multiline chained method call. (<a href="https://github.com/ydakuka"><code>@ydakuka</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/15010">#15010</a>: Fix a false positive for <code>Lint/DuplicateMethods</code> when modules blocks are passed as method arguments. (<a href="https://github.com/5hun-s"><code>@5hun-s</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/15028">#15028</a>: Fix a false positive for <code>Lint/DuplicateMethods</code> when the same method is defined in different anonymous module blocks passed to a no-receiver call (e.g. <code>stub_const</code>). (<a href="https://github.com/Darhazer"><code>@Darhazer</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/15021">#15021</a>: Fix false positives in <code>Layout/EmptyLineAfterGuardClause</code> when using a guard clause followed by a multi-line guard clause with <code>raise</code>, <code>fail</code>, <code>return</code>, <code>break</code>, or <code>next</code>. (<a href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/15001">#15001</a>: Fix false positives in <code>Layout/RedundantLineBreak</code> when setting <code>InspectBlocks: true</code> and using <code>rescue</code> or <code>ensure</code> in the block. (<a href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/14997">#14997</a>: Fix false positives in <code>Style/FileOpen</code> when assigning <code>File.open</code> to an instance variable, class variable, global variable, or constant. (<a href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/15019">#15019</a>: Fix false positives in <code>Lint/DuplicateMethods</code> when the same method is defined in anonymous module blocks passed to different receivers. (<a href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/14987">#14987</a>: Complete ERB and Haml autocorrection in a single run. (<a href="https://github.com/alpaca-tc"><code>@alpaca-tc</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/15039">#15039</a>: Fix incorrect autocorrect in <code>Style/IfWithSemicolon</code> when <code>return</code> with value is in the <code>else</code> branch. (<a href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/14930">#14930</a>: Fix incorrect autocorrection for <code>Style/IfUnlessModifier</code> when multiple <code>if</code>/<code>unless</code> modifier forms are on the same line inside a collection. (<a href="https://github.com/ydakuka"><code>@ydakuka</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/14985">#14985</a>: Fix incorrect autocorrection in <code>Lint/SafeNavigationChain</code> when chaining a method call after safe navigation in the if branch of a ternary. (<a href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/15009">#15009</a>: Fix infinite loop in <code>Layout/EndAlignment</code> when <code>end</code> is followed by <code>||</code> or <code>&&</code>. (<a href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/14981">#14981</a>: Fix spurious warning "does not support <code>Safe</code>/<code>SafeAutoCorrect</code> parameter" when those parameters are set for cops that don't have them in their default configuration. ([<a href="https://github.com/dduugg"><code>@dduugg</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/15043">#15043</a>: Fix an error for <code>Lint/UselessDefaultValueArgument</code> when <code>fetch</code> without a receiver is inside a <code>fetch</code> block. (<a href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/15034">#15034</a>: Fix incorrect autocorrection in <code>Style/IfWithSemicolon</code> when using single-line <code>unless</code> / <code>;</code> / <code>end</code>. (<a href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/15015">#15015</a>: Fix <code>Style/NonNilCheck</code> autocorrect for receivers containing spaces. (<a href="https://github.com/bbatsov"><code>@bbatsov</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/15015">#15015</a>: Fix <code>Style/RaiseArgs</code> to allow anonymous keyword forwarding (<code>raise Ex.new(**)</code>). (<a href="https://github.com/bbatsov"><code>@bbatsov</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/14890">#14890</a>: Fix a false positive for <code>Lint/RedundantCopDisableDirective</code> when a <code>rubocop:disable</code> comment is used to suppress <code>Lint/EmptyWhen</code>, <code>Lint/EmptyConditionalBody</code>, <code>Lint/EmptyInPattern</code>, or <code>Style/SymbolProc</code>. ([<a href="https://github.com/eugeneius"><code>@eugeneius</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/15015">#15015</a>: Fix false negative in <code>Style/RedundantPercentQ</code> for <code>%q</code> strings with interpolation-like syntax. (<a href="https://github.com/bbatsov"><code>@bbatsov</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/14984">#14984</a>: Fix <code>Style/AndOr</code> adding unnecessary parentheses around <code>return</code> without arguments. ([<a href="https://github.com/eugeneius"><code>@eugeneius</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/14945">#14945</a>: Support files with multiple modifiers in <code>Lint/UselessConstantScoping</code>. ([<a href="https://github.com/h-lame"><code>@h-lame</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/15015">#15015</a>: Fix <code>Style/TrailingMethodEndStatement</code> to detect singleton methods (<code>def self.foo</code>). (<a href="https://github.com/bbatsov"><code>@bbatsov</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/10822">#10822</a>: Don't store results in cache if there are warnings. ([<a href="https://github.com/jonas054"><code>@jonas054</code></a>][])</li>
</ul>
<h3>Changes</h3>
<ul>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/14718">#14718</a>: Allow setting <code>MaxFilesInCache</code> to <code>false</code> to entirely disable cache pruning. ([<a href="https://github.com/byroot"><code>@byroot</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/14989">#14989</a>: Make <code>Lint/RedundantSafeNavigation</code> aware of safe navigation in conditional true branch. (<a href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/15041">#15041</a>: Remove <code>mcp</code> gem from runtime dependencies. (<a href="https://github.com/koic"><code>@koic</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.86.0 (2026-03-23)</h2>
<h3>New features</h3>
<ul>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/15000">#15000</a>: Display ZJIT usage when running under LSP. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/14961">#14961</a>: Add <code>AllowedParentClasses</code> option to <code>Style/EmptyClassDefinition</code>. ([<a href="https://github.com/hammadkhan"><code>@hammadkhan</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/14977">#14977</a>: Support <code>AllowedReceivers</code> for <code>Style/HashLookupMethod</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/pull/15015">#15015</a>: Fix <code>Style/ConcatArrayLiterals</code> autocorrect deleting code for percent literals with interpolation. ([<a href="https://github.com/bbatsov"><code>@bbatsov</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/14897">#14897</a>: Detect constant reassignment after class/module definition in <code>Lint/ConstantReassignment</code>. ([<a href="https://github.com/ydakuka"><code>@ydakuka</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/11829">#11829</a>: Fix false negatives for <code>Lint/DuplicateMethods</code> when duplicate methods are defined in anonymous classes and modules not assigned to a constant. ([<a href="https://github.com/Darhazer"><code>@Darhazer</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/14988">#14988</a>: Fix false negative in <code>Style/RedundantParentheses</code> when redundant parentheses around range literals in block body. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/14916">#14916</a>: Fix false positive for <code>Layout/MultilineMethodCallIndentation</code> when method chain is inside a hash pair value passed to a multiline chained method call. ([<a href="https://github.com/ydakuka"><code>@ydakuka</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/15010">#15010</a>: Fix a false positive for <code>Lint/DuplicateMethods</code> when modules blocks are passed as method arguments. ([<a href="https://github.com/5hun-s"><code>@5hun-s</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/15028">#15028</a>: Fix a false positive for <code>Lint/DuplicateMethods</code> when the same method is defined in different anonymous module blocks passed to a no-receiver call (e.g. <code>stub_const</code>). ([<a href="https://github.com/Darhazer"><code>@Darhazer</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/15021">#15021</a>: Fix false positives in <code>Layout/EmptyLineAfterGuardClause</code> when using a guard clause followed by a multi-line guard clause with <code>raise</code>, <code>fail</code>, <code>return</code>, <code>break</code>, or <code>next</code>. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/15001">#15001</a>: Fix false positives in <code>Layout/RedundantLineBreak</code> when setting <code>InspectBlocks: true</code> and using <code>rescue</code> or <code>ensure</code> in the block. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/14997">#14997</a>: Fix false positives in <code>Style/FileOpen</code> when assigning <code>File.open</code> to an instance variable, class variable, global variable, or constant. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/15019">#15019</a>: Fix false positives in <code>Lint/DuplicateMethods</code> when the same method is defined in anonymous module blocks passed to different receivers. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/14987">#14987</a>: Complete ERB and Haml autocorrection in a single run. ([<a href="https://github.com/alpaca-tc"><code>@alpaca-tc</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/15039">#15039</a>: Fix incorrect autocorrect in <code>Style/IfWithSemicolon</code> when <code>return</code> with value is in the <code>else</code> branch. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/14930">#14930</a>: Fix incorrect autocorrection for <code>Style/IfUnlessModifier</code> when multiple <code>if</code>/<code>unless</code> modifier forms are on the same line inside a collection. ([<a href="https://github.com/ydakuka"><code>@ydakuka</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/14985">#14985</a>: Fix incorrect autocorrection in <code>Lint/SafeNavigationChain</code> when chaining a method call after safe navigation in the if branch of a ternary. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/15009">#15009</a>: Fix infinite loop in <code>Layout/EndAlignment</code> when <code>end</code> is followed by <code>||</code> or <code>&&</code>. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/14981">#14981</a>: Fix spurious warning "does not support <code>Safe</code>/<code>SafeAutoCorrect</code> parameter" when those parameters are set for cops that don't have them in their default configuration. ([<a href="https://github.com/dduugg"><code>@dduugg</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/15043">#15043</a>: Fix an error for <code>Lint/UselessDefaultValueArgument</code> when <code>fetch</code> without a receiver is inside a <code>fetch</code> block. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/15034">#15034</a>: Fix incorrect autocorrection in <code>Style/IfWithSemicolon</code> when using single-line <code>unless</code> / <code>;</code> / <code>end</code>. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/15015">#15015</a>: Fix <code>Style/NonNilCheck</code> autocorrect for receivers containing spaces. ([<a href="https://github.com/bbatsov"><code>@bbatsov</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/15015">#15015</a>: Fix <code>Style/RaiseArgs</code> to allow anonymous keyword forwarding (<code>raise Ex.new(**)</code>). ([<a href="https://github.com/bbatsov"><code>@bbatsov</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/14890">#14890</a>: Fix a false positive for <code>Lint/RedundantCopDisableDirective</code> when a <code>rubocop:disable</code> comment is used to suppress <code>Lint/EmptyWhen</code>, <code>Lint/EmptyConditionalBody</code>, <code>Lint/EmptyInPattern</code>, or <code>Style/SymbolProc</code>. ([<a href="https://github.com/eugeneius"><code>@eugeneius</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/15015">#15015</a>: Fix false negative in <code>Style/RedundantPercentQ</code> for <code>%q</code> strings with interpolation-like syntax. ([<a href="https://github.com/bbatsov"><code>@bbatsov</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/14984">#14984</a>: Fix <code>Style/AndOr</code> adding unnecessary parentheses around <code>return</code> without arguments. ([<a href="https://github.com/eugeneius"><code>@eugeneius</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/14945">#14945</a>: Support files with multiple modifiers in <code>Lint/UselessConstantScoping</code>. ([<a href="https://github.com/h-lame"><code>@h-lame</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/15015">#15015</a>: Fix <code>Style/TrailingMethodEndStatement</code> to detect singleton methods (<code>def self.foo</code>). ([<a href="https://github.com/bbatsov"><code>@bbatsov</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/10822">#10822</a>: Don't store results in cache if there are warnings. ([<a href="https://github.com/jonas054"><code>@jonas054</code></a>][])</li>
</ul>
<h3>Changes</h3>
<ul>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/14718">#14718</a>: Allow setting <code>MaxFilesInCache</code> to <code>false</code> to entirely disable cache pruning. ([<a href="https://github.com/byroot"><code>@byroot</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/pull/14989">#14989</a>: Make <code>Lint/RedundantSafeNavigation</code> aware of safe navigation in conditional true branch. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a href="https://redirect.github.com/rubocop/rubocop/issues/15041">#15041</a>: Remove <code>mcp</code> gem from runtime dependencies. ([<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/2c1b30a47d357599f36ae69c41a63966e68d7592"><code>2c1b30a</code></a> Cut 1.86</li>
<li><a href="https://github.com/rubocop/rubocop/commit/d96701abc80717d473b1bafcb2e283f7462fe48e"><code>d96701a</code></a> Update Changelog</li>
<li><a href="https://github.com/rubocop/rubocop/commit/9b019c79a45a3699fff553ae7d6a702bda685130"><code>9b019c7</code></a> [Fix rubocop#14916] Fix false positive for `Layout/MultilineMethodCallIndenta...</li>
<li><a href="https://github.com/rubocop/rubocop/commit/a49271db803752640548783aaa8949fa84bfd924"><code>a49271d</code></a> Fix incorrect autocorrection for <code>Style/IfUnlessModifier</code> when multiple <code>if</code>/...</li>
<li><a href="https://github.com/rubocop/rubocop/commit/8d253110f0c9e93d05ac2fe2367815ea9fafcd56"><code>8d25311</code></a> Document MaxFilesInCache: false option for disabling cache pruning</li>
<li><a href="https://github.com/rubocop/rubocop/commit/12c7d39f2c9a0ed9906d7bfd08e0a2c25c4e369d"><code>12c7d39</code></a> Detect constant reassignment after class/module definition in `Lint/ConstantR...</li>
<li><a href="https://github.com/rubocop/rubocop/commit/fbf175c46cd6ea09bfa6631b7677861878041efe"><code>fbf175c</code></a> Allow disabling cache cleanup</li>
<li><a href="https://github.com/rubocop/rubocop/commit/3fcae5d22baa0f56df0c47ce7b672c2e2b6ada2c"><code>3fcae5d</code></a> [Fix <a href="https://redirect.github.com/rubocop/rubocop/issues/14961">#14961</a>] Add <code>AllowedParentClasses</code> option to <code>Style/EmptyClassDefinition</code></li>
<li><a href="https://github.com/rubocop/rubocop/commit/4eba3e65485b10df08ac571562499faef2282ce4"><code>4eba3e6</code></a> Memoize forwarded arg lookups in ArgumentsForwarding</li>
<li><a href="https://github.com/rubocop/rubocop/commit/fc300c77e61b982be0b42b0e370edcfff6eca963"><code>fc300c7</code></a> [Fix <a href="https://redirect.github.com/rubocop/rubocop/issues/10822">#10822</a>] Don't cache if there are warnings</li>
<li>Additional commits viewable in <a href="https://github.com/rubocop/rubocop/compare/v1.85.1...v1.86.0">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 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/6940?email_source=notifications&email_token=AAK2OLK3U43LVGE2ZXKYUIL4SRRZLA5CNFSNUABEM5UWIORPF5TWS5BNNB2WEL2QOVWGYUTFOF2WK43UF4ZTINBYGAZDQOBRGGTHEZLBONXW5KTTOVRHGY3SNFRGKZFFMV3GK3TUVVYHEX3POBSW4X3DNRUWG2Y
-- Commit Summary --
* Bump rubocop from 1.85.1 to 1.86.0 in the rubocop group
-- File Changes --
M Gemfile.lock (10)
-- Patch Links --
https://github.com/openstreetmap/openstreetmap-website/pull/6940.patch?email_source=notifications&email_token=AAK2OLIQIBK6WRAB3BY5PTT4SRRZLA5CNFSNUABEM5UWIORPF5TWS5BNNB2WEL2QOVWGYUTFOF2WK43UF4ZTINBYGAZDQOBRGGTHEZLBONXW5KTTOVRHGY3SNFRGKZFFMV3GK3TUVZYHEX3QMF2GG2C7MNWGSY3Lhttps://github.com/openstreetmap/openstreetmap-website/pull/6940.diff?email_source=notifications&email_token=AAK2OLKUYKRK7QUZGWZMZFD4SRRZLA5CNFSNUABEM5UWIORPF5TWS5BNNB2WEL2QOVWGYUTFOF2WK43UF4ZTINBYGAZDQOBRGGTHEZLBONXW5KTTOVRHGY3SNFRGKZFFMV3GK3TUVVYHEX3ENFTGMX3DNRUWG2Y
--
Reply to this email directly or view it on GitHub:
https://github.com/openstreetmap/openstreetmap-website/pull/6940
You are receiving this because you are subscribed to this thread.
Message ID: <openstreetmap/openstreetmap-website/pull/6940 at github.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openstreetmap.org/pipermail/rails-dev/attachments/20260325/6c5f9621/attachment-0001.htm>
More information about the rails-dev
mailing list