-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit 56cc4d8
authored
Bump rubocop from 1.68.0 to 1.69.0 in the linters group (#4096)
Bumps the linters group with 1 update:
[rubocop](https://github.com/rubocop/rubocop).
Updates `rubocop` from 1.68.0 to 1.69.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 1.69</h2>
<h3>New features</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13439">#13439</a>:
Add new <code>Lint/HashNewWithKeywordArgumentsAsDefault</code> cop. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/11191">#11191</a>:
Add new <code>Lint/NumericOperationWithConstantResult</code> cop. ([<a
href="https://github.com/zopolis4"><code>@zopolis4</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13486">#13486</a>:
Add new <code>Style/DigChain</code> cop. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13490">#13490</a>:
Add new <code>Style/FileNull</code> cop. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13484">#13484</a>:
Add new <code>Style/FileTouch</code> cop. ([<a
href="https://github.com/lovro-bikic"><code>@lovro-bikic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13437">#13437</a>:
Add a new cop <code>Lint/UselessDefined</code> to detect cases such as
<code>defined?('Foo')</code> when <code>defined?(Foo)</code> was
intended. ([<a
href="https://github.com/earlopain"><code>@earlopain</code></a>][])</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13455">#13455</a>:
Fix a false positive for <code>Layout/EmptyLineAfterGuardClause</code>
when using a guard clause outside oneliner block. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13412">#13412</a>:
Fix a false positive for <code>Style/RedundantLineContinuation</code>
when there is a line continuation at the end of Ruby code followed by
<code>__END__</code> data. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13476">#13476</a>:
Allow to write generics type of RBS::Inline annotation after subclass
definition in <code>Style/CommentedKeyword</code>. ([<a
href="https://github.com/dak2"><code>@dak2</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13441">#13441</a>:
Fix an incorrect autocorrect for <code>Style/IfWithSemicolon</code> when
using <code>return</code> with value in <code>if</code> with a semicolon
is used. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13448">#13448</a>:
Fix an incorrect autocorrect for <code>Style/IfWithSemicolon</code> when
the then body contains an arithmetic operator method call with an
argument. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13199">#13199</a>:
Make <code>Style/RedundantCondition</code> skip autocorrection when a
branch has a comment. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13411">#13411</a>:
Fix <code>Style/BitwisePredicate</code> when having regular method. ([<a
href="https://github.com/d4be4st"><code>@d4be4st</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13432">#13432</a>:
Fix false positive for <code>Lint/FloatComparison</code> against nil.
([<a
href="https://github.com/lovro-bikic"><code>@lovro-bikic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13461">#13461</a>:
Fix false positives for <code>Lint/InterpolationCheck</code> when using
invalid syntax in interpolation. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13402">#13402</a>:
Fix a false positive for <code>Lint/SafeNavigationConsistency</code>
when using unsafe navigation with both <code>&&</code> and
<code>||</code>. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13434">#13434</a>:
Fix a false positive for
<code>Naming/MemoizedInstanceVariableName</code> for assignment
methods`. ([<a
href="https://github.com/earlopain"><code>@earlopain</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13415">#13415</a>:
Fix false positives for <code>Naming/MemoizedInstanceVariableName</code>
when using <code>initialize_clone</code>, <code>initialize_copy</code>,
or <code>initialize_dup</code>. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13421">#13421</a>:
Fix false positives for <code>Style/SafeNavigation</code> when using a
method chain that exceeds the <code>MaxChainLength</code> value and
includes safe navigation operator. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13433">#13433</a>:
Fix autocorrection for <code>Style/AccessModifierDeclarations</code> for
multiple inline symbols. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13430">#13430</a>:
Fix EmptyLinesAroundMethodBody for methods with arguments spanning
multiple lines. ([<a
href="https://github.com/aduth"><code>@aduth</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13438">#13438</a>:
Fix incorrect correction in <code>Lint/Void</code> if an operator is
called in a void context using a dot. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13419">#13419</a>:
Fix <code>Lint/DeprecatedOpenSSLConstant</code> false positive when the
argument is a safe navigation method call. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13404">#13404</a>:
Fix <code>Style/AccessModifierDeclarations</code> to register (as
positive or negative, depending on <code>AllowModifiersOnSymbols</code>
value) access modifiers with multiple symbols. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13436">#13436</a>:
Fix incorrect offense and autocorrect for
<code>Lint/RedundantSplatExpansion</code> when percent literal array is
used in a safe navigation method call. ([<a
href="https://github.com/lovro-bikic"><code>@lovro-bikic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13442">#13442</a>:
Fix an incorrect autocorrect for
<code>Style/NestedTernaryOperator</code> when ternary operators are
nested and the inner condition is parenthesized. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13444">#13444</a>:
Fix an incorrect autocorrect for <code>Style/OneLineConditional</code>
when the else branch of a ternary operator has multiple expressions. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13483">#13483</a>:
Fix an incorrect autocorrect for
<code>Style/RedundantRegexpArgument</code> when using escaped double
quote character. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13497">#13497</a>:
Fix infinite loop error for <code>Style/IfWithSemicolon</code> when
using nested if/;/end in if body. (<a
href="https://github.com/koic"><code>@koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13477">#13477</a>:
Update <code>Layout/LeadingCommentSpace</code> to accept multiline
shebangs at the top of the file. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13453">#13453</a>:
Update <code>Style/AccessModifierDeclarations</code> to handle
<code>attr_*</code> methods with multiple parameters. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12597">#12597</a>:
Update <code>Style/SingleLineDoEndBlock</code> to not register an
offense if it will introduce a conflicting
<code>Layout/RedundantLineBreak</code> offense. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
</ul>
<h3>Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/11680">#11680</a>:
Add autocorrection for strings to <code>Layout/LineLength</code> when
<code>SplitStrings</code> is set to <code>true</code>. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13470">#13470</a>:
Make <code>Style/ArrayIntersect</code> aware of <code>none?</code>. ([<a
href="https://github.com/earlopain"><code>@earlopain</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13481">#13481</a>:
Support unicode-display_width v3. ([<a
href="https://github.com/gemmaro"><code>@gemmaro</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13473">#13473</a>:
Update <code>Lint/ItWithoutArgumentsInBlock</code> to not register
offenses in Ruby 3.4. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13420">#13420</a>:
Update <code>Lint/RedundantSafeNavigation</code> to register an offense
when the receiver is <code>self</code>. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/11393">#11393</a>:
Update <code>Lint/UnusedMethodArgument</code> to allow the class names
for <code>IgnoreNotImplementedMethods</code> to be configured. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13058">#13058</a>:
Update <code>Style/AccessModifierDeclarations</code> to accept modifier
with splatted method call. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</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.69.0 (2024-11-26)</h2>
<h3>New features</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13439">#13439</a>:
Add new <code>Lint/HashNewWithKeywordArgumentsAsDefault</code> cop. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/11191">#11191</a>:
Add new <code>Lint/NumericOperationWithConstantResult</code> cop. ([<a
href="https://github.com/zopolis4"><code>@zopolis4</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13486">#13486</a>:
Add new <code>Style/DigChain</code> cop. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13490">#13490</a>:
Add new <code>Style/FileNull</code> cop. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13484">#13484</a>:
Add new <code>Style/FileTouch</code> cop. ([<a
href="https://github.com/lovro-bikic"><code>@lovro-bikic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13437">#13437</a>:
Add a new cop <code>Lint/UselessDefined</code> to detect cases such as
<code>defined?('Foo')</code> when <code>defined?(Foo)</code> was
intended. ([<a
href="https://github.com/earlopain"><code>@earlopain</code></a>][])</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13455">#13455</a>:
Fix a false positive for <code>Layout/EmptyLineAfterGuardClause</code>
when using a guard clause outside oneliner block. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13412">#13412</a>:
Fix a false positive for <code>Style/RedundantLineContinuation</code>
when there is a line continuation at the end of Ruby code followed by
<code>__END__</code> data. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13476">#13476</a>:
Allow to write generics type of RBS::Inline annotation after subclass
definition in <code>Style/CommentedKeyword</code>. ([<a
href="https://github.com/dak2"><code>@dak2</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13441">#13441</a>:
Fix an incorrect autocorrect for <code>Style/IfWithSemicolon</code> when
using <code>return</code> with value in <code>if</code> with a semicolon
is used. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13448">#13448</a>:
Fix an incorrect autocorrect for <code>Style/IfWithSemicolon</code> when
the then body contains an arithmetic operator method call with an
argument. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13199">#13199</a>:
Make <code>Style/RedundantCondition</code> skip autocorrection when a
branch has a comment. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13411">#13411</a>:
Fix <code>Style/BitwisePredicate</code> when having regular method. ([<a
href="https://github.com/d4be4st"><code>@d4be4st</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13432">#13432</a>:
Fix false positive for <code>Lint/FloatComparison</code> against nil.
([<a
href="https://github.com/lovro-bikic"><code>@lovro-bikic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13461">#13461</a>:
Fix false positives for <code>Lint/InterpolationCheck</code> when using
invalid syntax in interpolation. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13402">#13402</a>:
Fix a false positive for <code>Lint/SafeNavigationConsistency</code>
when using unsafe navigation with both <code>&&</code> and
<code>||</code>. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13434">#13434</a>:
Fix a false positive for
<code>Naming/MemoizedInstanceVariableName</code> for assignment
methods`. ([<a
href="https://github.com/earlopain"><code>@earlopain</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13415">#13415</a>:
Fix false positives for <code>Naming/MemoizedInstanceVariableName</code>
when using <code>initialize_clone</code>, <code>initialize_copy</code>,
or <code>initialize_dup</code>. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13421">#13421</a>:
Fix false positives for <code>Style/SafeNavigation</code> when using a
method chain that exceeds the <code>MaxChainLength</code> value and
includes safe navigation operator. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13433">#13433</a>:
Fix autocorrection for <code>Style/AccessModifierDeclarations</code> for
multiple inline symbols. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13430">#13430</a>:
Fix EmptyLinesAroundMethodBody for methods with arguments spanning
multiple lines. ([<a
href="https://github.com/aduth"><code>@aduth</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13438">#13438</a>:
Fix incorrect correction in <code>Lint/Void</code> if an operator is
called in a void context using a dot. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13419">#13419</a>:
Fix <code>Lint/DeprecatedOpenSSLConstant</code> false positive when the
argument is a safe navigation method call. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13404">#13404</a>:
Fix <code>Style/AccessModifierDeclarations</code> to register (as
positive or negative, depending on <code>AllowModifiersOnSymbols</code>
value) access modifiers with multiple symbols. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13436">#13436</a>:
Fix incorrect offense and autocorrect for
<code>Lint/RedundantSplatExpansion</code> when percent literal array is
used in a safe navigation method call. ([<a
href="https://github.com/lovro-bikic"><code>@lovro-bikic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13442">#13442</a>:
Fix an incorrect autocorrect for
<code>Style/NestedTernaryOperator</code> when ternary operators are
nested and the inner condition is parenthesized. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13444">#13444</a>:
Fix an incorrect autocorrect for <code>Style/OneLineConditional</code>
when the else branch of a ternary operator has multiple expressions.
([<a href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13483">#13483</a>:
Fix an incorrect autocorrect for
<code>Style/RedundantRegexpArgument</code> when using escaped double
quote character. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13497">#13497</a>:
Fix infinite loop error for <code>Style/IfWithSemicolon</code> when
using nested if/;/end in if body. ([<a
href="https://github.com/koic"><code>@koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13477">#13477</a>:
Update <code>Layout/LeadingCommentSpace</code> to accept multiline
shebangs at the top of the file. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13453">#13453</a>:
Update <code>Style/AccessModifierDeclarations</code> to handle
<code>attr_*</code> methods with multiple parameters. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12597">#12597</a>:
Update <code>Style/SingleLineDoEndBlock</code> to not register an
offense if it will introduce a conflicting
<code>Layout/RedundantLineBreak</code> offense. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
</ul>
<h3>Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/11680">#11680</a>:
Add autocorrection for strings to <code>Layout/LineLength</code> when
<code>SplitStrings</code> is set to <code>true</code>. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13470">#13470</a>:
Make <code>Style/ArrayIntersect</code> aware of <code>none?</code>. ([<a
href="https://github.com/earlopain"><code>@earlopain</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13481">#13481</a>:
Support unicode-display_width v3. ([<a
href="https://github.com/gemmaro"><code>@gemmaro</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13473">#13473</a>:
Update <code>Lint/ItWithoutArgumentsInBlock</code> to not register
offenses in Ruby 3.4. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13420">#13420</a>:
Update <code>Lint/RedundantSafeNavigation</code> to register an offense
when the receiver is <code>self</code>. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/11393">#11393</a>:
Update <code>Lint/UnusedMethodArgument</code> to allow the class names
for <code>IgnoreNotImplementedMethods</code> to be configured. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13058">#13058</a>:
Update <code>Style/AccessModifierDeclarations</code> to accept modifier
with splatted method call. ([<a
href="https://github.com/dvandersluis"><code>@dvandersluis</code></a>][])</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rubocop/rubocop/commit/9a49a335a8bcbf797d2be58e7b8a9ea5735c41a2"><code>9a49a33</code></a>
Cut 1.69</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/96833cd38a2df4e28881f5c98c3956d1f31e0c49"><code>96833cd</code></a>
Update Changelog</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/32c8dd5b38d9eed42c68cb14a19fbcc264d4d859"><code>32c8dd5</code></a>
Merge pull request <a
href="https://redirect.github.com/rubocop/rubocop/issues/13498">#13498</a>
from dvandersluis/useless-include-util</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/2904985bf4c02a966ea6b1cc509d074f9566f2c7"><code>2904985</code></a>
Remove unnecessary <code>include Util</code></li>
<li><a
href="https://github.com/rubocop/rubocop/commit/77f3e6fbf595ff1f15d3b5884229262d509b8283"><code>77f3e6f</code></a>
Create Style/FileTouch cop</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/8ac894790ee583c8a6202fd39b8ca1f1289180c1"><code>8ac8947</code></a>
Fix infinite loop error for <code>Style/IfWithSemicolon</code></li>
<li><a
href="https://github.com/rubocop/rubocop/commit/beb22bcbfa4eaa1753605f925c76ccc30508279c"><code>beb22bc</code></a>
Update <code>Style/SingleArgumentDig</code> to not register offenses on
chained <code>dig</code> ca...</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/c8cdb3d432c0a31fedcc7b91497613b05fd43316"><code>c8cdb3d</code></a>
[Fix <a
href="https://redirect.github.com/rubocop/rubocop/issues/13486">#13486</a>]
Add new <code>Style/DigChain</code> cop</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/efc3fd854f41bb675170fac1dcd11f41c6a74a6a"><code>efc3fd8</code></a>
[Fix <a
href="https://redirect.github.com/rubocop/rubocop/issues/13490">#13490</a>]
Add new <code>Style/FileNull</code> cop</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/8717f114677f3dc202b1a24a76ff90e5ab59b932"><code>8717f11</code></a>
Remove unnecessary <code>include IgnoredNode</code></li>
<li>Additional commits viewable in <a
href="https://github.com/rubocop/rubocop/compare/v1.68.0...v1.69.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 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 <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>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent 28267c1 commit 56cc4d8Copy full SHA for 56cc4d8
1 file changed
+6
-4
lines changed+6-4
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
398 | 398 |
| |
399 | 399 |
| |
400 | 400 |
| |
401 |
| - | |
| 401 | + | |
402 | 402 |
| |
403 | 403 |
| |
404 | 404 |
| |
405 | 405 |
| |
406 | 406 |
| |
407 | 407 |
| |
408 |
| - | |
| 408 | + | |
409 | 409 |
| |
410 |
| - | |
| 410 | + | |
411 | 411 |
| |
412 | 412 |
| |
413 | 413 |
| |
| |||
498 | 498 |
| |
499 | 499 |
| |
500 | 500 |
| |
501 |
| - | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
502 | 504 |
| |
503 | 505 |
| |
504 | 506 |
| |
|
0 commit comments