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

Updates `rubocop` from 1.88.1 to 1.88.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.88.2</h2>
<h3>Bug fixes</h3>
<ul>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15417";>#15417</a>: Fix a 
false negative for <code>Lint/ToJSON</code>, which did not flag singleton 
<code>def self.to_json</code> definitions. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15418";>#15418</a>: Fix a 
false negative for <code>Lint/UnreachableCode</code>, which only flagged the 
first statement after a flow-of-control statement instead of every unreachable 
statement that followed it. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15416";>#15416</a>: Fix a 
false negative for <code>Lint/UselessNumericOperation</code>, which only 
flagged bare method-call receivers and ignored local variables, 
instance/class/global variables, and constants (e.g. <code>@x + 0</code>, 
<code>CONST * 1</code>). (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15419";>#15419</a>: Fix a 
false negative for <code>Lint/Void</code> where safe-navigation calls to 
nonmutating methods (e.g. <code>x&amp;.sort</code>) were not flagged when 
<code>CheckForMethodsWithNoSideEffects</code> is enabled. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15421";>#15421</a>: Fix a 
false negative for <code>Style/ArrayIntersect</code> with the block form using 
<code>include?</code> (e.g. <code>array1.any? { |e| array2.include?(e) 
}</code>), which was only detected for <code>member?</code>. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15420";>#15420</a>: Fix a 
false negative for <code>Style/CollectionCompact</code>, which did not flag 
<code>grep_v(nil)</code>/<code>grep_v(NilClass)</code> on a safe-navigation 
call (e.g. <code>array&amp;.grep_v(nil)</code>). (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15422";>#15422</a>: Fix a 
false negative for <code>Style/DefWithParentheses</code> with a single-line 
definition whose body follows a semicolon (e.g. <code>def foo(); end</code>), 
where the parentheses can be safely omitted. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15388";>#15388</a>: Fix a 
false negative for <code>Style/MixinUsage</code> when including multiple 
modules in one statement. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15388";>#15388</a>: Fix a 
false negative for <code>Style/ModuleFunction</code> when the module body is a 
single statement. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15388";>#15388</a>: Fix a 
false negative for <code>Style/RedundantCurrentDirectoryInPath</code> with 
double-quoted strings containing interpolation. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15395";>#15395</a>: Fix a 
false negative for <code>Style/RedundantHeredocDelimiterQuotes</code> with 
double-quoted delimiters whose body contains interpolation or escapes. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15409";>#15409</a>: Fix a 
false positive for <code>Gemspec/DuplicatedAssignment</code> with multiple 
specifications. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15403";>#15403</a>: Fix a 
false positive for <code>Layout/CommentIndentation</code> with a comment above 
an inline access modifier (e.g. <code>private def foo</code>) when 
<code>Layout/AccessModifierIndentation</code> is configured with 
<code>EnforcedStyle: outdent</code>. (<a 
href="https://github.com/grk";><code>@​grk</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15372";>#15372</a>: Fix a 
false positive for <code>Style/InvertibleUnlessCondition</code> with a 
multi-statement begin condition. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/15360";>#15360</a>: Fix 
an incorrect autocorrect for <code>Style/ArgumentsForwarding</code> and 
<code>Style/MethodDefParentheses</code> when autocorrection conflicts while 
adding parentheses to method definition arguments. (<a 
href="https://github.com/koic";><code>@​koic</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15417";>#15417</a>: Fix 
an incorrect autocorrect for <code>Lint/ToJSON</code> that produced invalid 
Ruby (<code>def to_json(*_args)()</code>) when the method had explicit empty 
parentheses. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/15426";>#15426</a>: Fix 
an incorrect autocorrect for 
<code>Style/MethodCallWithoutArgsParentheses</code> when empty parentheses span 
multiple lines and the method call has a block. (<a 
href="https://github.com/koic";><code>@​koic</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15328";>#15328</a>: Fix a 
false positive for <code>Style/HashConversion</code> with a splat argument, 
which previously produced an invalid hash literal. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15338";>#15338</a>: Fix a 
false positive for <code>Style/HashLookupMethod</code> with safe navigation, 
where the suggested bracket form would be the unreadable 
<code>hash&amp;.[](https://github.com/rubocop/rubocop/blob/HEAD/key)</code>. 
(<a href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15397";>#15397</a>: Fix 
an incorrect autocorrect for <code>Style/IdenticalConditionalBranches</code> 
that hoisted the moved expression to column zero instead of matching the 
surrounding indentation. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15372";>#15372</a>: Fix 
an incorrect autocorrect for <code>Style/InvertibleUnlessCondition</code> with 
mixed <code>&amp;&amp;</code>/<code>||</code> conditions, which lost the 
required parentheses when inverting. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/15428";>#15428</a>: Fix 
an incorrect autocorrect for <code>Style/TrivialAccessors</code> when 
<code>AllowPredicates: false</code> is set and a trivial reader is defined as a 
predicate class method. (<a 
href="https://github.com/koic";><code>@​koic</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15402";>#15402</a>: Fix 
an infinite loop and file corruption for <code>Layout/LineLength</code> with 
<code>SplitStrings</code> when an over-long string is indented under a 
multi-line parent. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15384";>#15384</a>: Fix a 
false positive and a false negative for 
<code>Style/MissingRespondToMissing</code> when <code>method_missing</code> is 
defined at the top level or alongside sibling classes. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/15432";>#15432</a>: Fix 
false positives in <code>Layout/ElseAlignment</code> when using 
<code>else</code> within a block that is part of a larger expression. (<a 
href="https://github.com/koic";><code>@​koic</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/15423";>#15423</a>: Fix 
false positives in <code>Layout/MultilineMethodCallIndentation</code> when a 
method chain is nested inside a parenthesized argument list or a grouped 
expression within a hash pair value. (<a 
href="https://github.com/koic";><code>@​koic</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15424";>#15424</a>: Fix 
<code>Style/StructInheritance</code> autocorrect dropping leading indentation 
when class is inside a module or namespace. (<a 
href="https://github.com/amckinnie";><code>@​amckinnie</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15325";>#15325</a>: Fix 
<code>Style/DocumentationMethod</code> ignoring <code>AllowedMethods</code> for 
inline modifier defs. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15369";>#15369</a>: Fix a 
false positive for <code>Style/LambdaCall</code> when the argument list 
contains a comment, which the autocorrect would have dropped. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
</ul>
<h3>Changes</h3>
<ul>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15430";>#15430</a>: 
Improve performance of offense reporting by not allocating a new source range 
per offense outside of embedded sources. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15430";>#15430</a>: 
Improve investigation performance by dispatching 
<code>on_new_investigation</code>, <code>on_investigation_end</code>, and 
<code>on_other_file</code> only to cops that refine them, and by skipping 
<code>after_*</code> dispatch when no cop needs it. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15430";>#15430</a>: 
Improve performance of the per-file cop relevancy check by skipping gem 
requirement evaluation for cops without gem requirements. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15430";>#15430</a>: 
Improve <code>Lint/Debugger</code> performance on code without debugger calls. 
(<a href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15430";>#15430</a>: 
Improve autocorrection performance by keeping corrections in memory across 
inspection iterations and writing each corrected file only once. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15415";>#15415</a>: Mark 
<code>Lint/NumericOperationWithConstantResult</code> autocorrect as unsafe 
because it drops the operands, discarding their side effects and silencing 
cases where the result is not actually constant (e.g. <code>x / x</code> raises 
when <code>x</code> is <code>0</code>). (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15430";>#15430</a>: 
Improve performance of cops using <code>AllowedPatterns</code>, 
<code>ForbiddenPatterns</code>, and <code>AllowedMethods</code> by compiling 
the configured patterns only once. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>)</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15430";>#15430</a>: 
Improve performance of <code>Style/IfUnlessModifier</code> and other modifier 
cops on files with many comments or conditionals. (<a 
href="https://github.com/bbatsov";><code>@​bbatsov</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.88.2 (2026-07-08)</h2>
<h3>Bug fixes</h3>
<ul>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15417";>#15417</a>: Fix a 
false negative for <code>Lint/ToJSON</code>, which did not flag singleton 
<code>def self.to_json</code> definitions. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15418";>#15418</a>: Fix a 
false negative for <code>Lint/UnreachableCode</code>, which only flagged the 
first statement after a flow-of-control statement instead of every unreachable 
statement that followed it. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15416";>#15416</a>: Fix a 
false negative for <code>Lint/UselessNumericOperation</code>, which only 
flagged bare method-call receivers and ignored local variables, 
instance/class/global variables, and constants (e.g. <code>@x + 0</code>, 
<code>CONST * 1</code>). ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15419";>#15419</a>: Fix a 
false negative for <code>Lint/Void</code> where safe-navigation calls to 
nonmutating methods (e.g. <code>x&amp;.sort</code>) were not flagged when 
<code>CheckForMethodsWithNoSideEffects</code> is enabled. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15421";>#15421</a>: Fix a 
false negative for <code>Style/ArrayIntersect</code> with the block form using 
<code>include?</code> (e.g. <code>array1.any? { |e| array2.include?(e) 
}</code>), which was only detected for <code>member?</code>. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15420";>#15420</a>: Fix a 
false negative for <code>Style/CollectionCompact</code>, which did not flag 
<code>grep_v(nil)</code>/<code>grep_v(NilClass)</code> on a safe-navigation 
call (e.g. <code>array&amp;.grep_v(nil)</code>). ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15422";>#15422</a>: Fix a 
false negative for <code>Style/DefWithParentheses</code> with a single-line 
definition whose body follows a semicolon (e.g. <code>def foo(); end</code>), 
where the parentheses can be safely omitted. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15388";>#15388</a>: Fix a 
false negative for <code>Style/MixinUsage</code> when including multiple 
modules in one statement. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15388";>#15388</a>: Fix a 
false negative for <code>Style/ModuleFunction</code> when the module body is a 
single statement. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15388";>#15388</a>: Fix a 
false negative for <code>Style/RedundantCurrentDirectoryInPath</code> with 
double-quoted strings containing interpolation. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15395";>#15395</a>: Fix a 
false negative for <code>Style/RedundantHeredocDelimiterQuotes</code> with 
double-quoted delimiters whose body contains interpolation or escapes. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15409";>#15409</a>: Fix a 
false positive for <code>Gemspec/DuplicatedAssignment</code> with multiple 
specifications. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15403";>#15403</a>: Fix a 
false positive for <code>Layout/CommentIndentation</code> with a comment above 
an inline access modifier (e.g. <code>private def foo</code>) when 
<code>Layout/AccessModifierIndentation</code> is configured with 
<code>EnforcedStyle: outdent</code>. ([<a 
href="https://github.com/grk";><code>@​grk</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15372";>#15372</a>: Fix a 
false positive for <code>Style/InvertibleUnlessCondition</code> with a 
multi-statement begin condition. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/15360";>#15360</a>: Fix 
an incorrect autocorrect for <code>Style/ArgumentsForwarding</code> and 
<code>Style/MethodDefParentheses</code> when autocorrection conflicts while 
adding parentheses to method definition arguments. ([<a 
href="https://github.com/koic";><code>@​koic</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15417";>#15417</a>: Fix 
an incorrect autocorrect for <code>Lint/ToJSON</code> that produced invalid 
Ruby (<code>def to_json(*_args)()</code>) when the method had explicit empty 
parentheses. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/15426";>#15426</a>: Fix 
an incorrect autocorrect for 
<code>Style/MethodCallWithoutArgsParentheses</code> when empty parentheses span 
multiple lines and the method call has a block. ([<a 
href="https://github.com/koic";><code>@​koic</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15328";>#15328</a>: Fix a 
false positive for <code>Style/HashConversion</code> with a splat argument, 
which previously produced an invalid hash literal. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15338";>#15338</a>: Fix a 
false positive for <code>Style/HashLookupMethod</code> with safe navigation, 
where the suggested bracket form would be the unreadable 
<code>hash&amp;.[](https://github.com/rubocop/rubocop/blob/master/key)</code>. 
([<a href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15397";>#15397</a>: Fix 
an incorrect autocorrect for <code>Style/IdenticalConditionalBranches</code> 
that hoisted the moved expression to column zero instead of matching the 
surrounding indentation. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15372";>#15372</a>: Fix 
an incorrect autocorrect for <code>Style/InvertibleUnlessCondition</code> with 
mixed <code>&amp;&amp;</code>/<code>||</code> conditions, which lost the 
required parentheses when inverting. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/15428";>#15428</a>: Fix 
an incorrect autocorrect for <code>Style/TrivialAccessors</code> when 
<code>AllowPredicates: false</code> is set and a trivial reader is defined as a 
predicate class method. ([<a 
href="https://github.com/koic";><code>@​koic</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15402";>#15402</a>: Fix 
an infinite loop and file corruption for <code>Layout/LineLength</code> with 
<code>SplitStrings</code> when an over-long string is indented under a 
multi-line parent. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15384";>#15384</a>: Fix a 
false positive and a false negative for 
<code>Style/MissingRespondToMissing</code> when <code>method_missing</code> is 
defined at the top level or alongside sibling classes. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/15432";>#15432</a>: Fix 
false positives in <code>Layout/ElseAlignment</code> when using 
<code>else</code> within a block that is part of a larger expression. ([<a 
href="https://github.com/koic";><code>@​koic</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/issues/15423";>#15423</a>: Fix 
false positives in <code>Layout/MultilineMethodCallIndentation</code> when a 
method chain is nested inside a parenthesized argument list or a grouped 
expression within a hash pair value. ([<a 
href="https://github.com/koic";><code>@​koic</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15424";>#15424</a>: Fix 
<code>Style/StructInheritance</code> autocorrect dropping leading indentation 
when class is inside a module or namespace. ([<a 
href="https://github.com/amckinnie";><code>@​amckinnie</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15325";>#15325</a>: Fix 
<code>Style/DocumentationMethod</code> ignoring <code>AllowedMethods</code> for 
inline modifier defs. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15369";>#15369</a>: Fix a 
false positive for <code>Style/LambdaCall</code> when the argument list 
contains a comment, which the autocorrect would have dropped. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
</ul>
<h3>Changes</h3>
<ul>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15430";>#15430</a>: 
Improve performance of offense reporting by not allocating a new source range 
per offense outside of embedded sources. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15430";>#15430</a>: 
Improve investigation performance by dispatching 
<code>on_new_investigation</code>, <code>on_investigation_end</code>, and 
<code>on_other_file</code> only to cops that refine them, and by skipping 
<code>after_*</code> dispatch when no cop needs it. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15430";>#15430</a>: 
Improve performance of the per-file cop relevancy check by skipping gem 
requirement evaluation for cops without gem requirements. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15430";>#15430</a>: 
Improve <code>Lint/Debugger</code> performance on code without debugger calls. 
([<a href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15430";>#15430</a>: 
Improve autocorrection performance by keeping corrections in memory across 
inspection iterations and writing each corrected file only once. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15415";>#15415</a>: Mark 
<code>Lint/NumericOperationWithConstantResult</code> autocorrect as unsafe 
because it drops the operands, discarding their side effects and silencing 
cases where the result is not actually constant (e.g. <code>x / x</code> raises 
when <code>x</code> is <code>0</code>). ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15430";>#15430</a>: 
Improve performance of cops using <code>AllowedPatterns</code>, 
<code>ForbiddenPatterns</code>, and <code>AllowedMethods</code> by compiling 
the configured patterns only once. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
<li><a 
href="https://redirect.github.com/rubocop/rubocop/pull/15430";>#15430</a>: 
Improve performance of <code>Style/IfUnlessModifier</code> and other modifier 
cops on files with many comments or conditionals. ([<a 
href="https://github.com/bbatsov";><code>@​bbatsov</code></a>][])</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a 
href="https://github.com/rubocop/rubocop/commit/ceb63776c63cefc7537f4d117b655daa4b2f0ce4";><code>ceb6377</code></a>
 Cut 1.88.2</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/ee87be87d39b272016334da55bddc6717b153a2b";><code>ee87be8</code></a>
 Update Changelog</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/e161fe6c43d354168d6f6ad82e44d25132981f39";><code>e161fe6</code></a>
 Keep autocorrections in memory during the inspection loop</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/c8e0c83f6445be8b3980e33fd1f1402e584a2459";><code>c8e0c83</code></a>
 Speed up Style/IfUnlessModifier eligibility checks</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/ef10f8a2a91bc7820fc8e338034914690f446e8c";><code>ef10f8a</code></a>
 Dispatch investigation callbacks only to cops that refine them</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/4de41eae2ce908553abee66f37bd1da6d26905b4";><code>4de41ea</code></a>
 Avoid allocating a Range per offense in the common case</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/be1bb5841fe61f6cd2324248ccb5787e454dec2e";><code>be1bb58</code></a>
 Fast-path the gem requirements check in cop relevancy</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/278525b9679e2d0294181f616bc5ad8b1d02c1e0";><code>278525b</code></a>
 Memoize compiled regexps in pattern mixins</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/28b6cd68d35abac89f303f83b9a53000a47cdeff";><code>28b6cd6</code></a>
 Improve Lint/Debugger performance on non-debugger code</li>
<li><a 
href="https://github.com/rubocop/rubocop/commit/1066e7b589021dbbe9a5fe5fc9430c87b6100e9c";><code>1066e7b</code></a>
 Merge pull request <a 
href="https://redirect.github.com/rubocop/rubocop/issues/15434";>#15434</a> from 
koic/fix_else_alignment_for_block_in_expression</li>
<li>Additional commits viewable in <a 
href="https://github.com/rubocop/rubocop/compare/v1.88.1...v1.88.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.88.1&new-version=1.88.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/7218

-- Commit Summary --

  * Bump rubocop from 1.88.1 to 1.88.2 in the rubocop group

-- File Changes --

    M Gemfile.lock (6)

-- Patch Links --

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

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