Skip to content

Commit

Permalink
Bump rubocop from 1.58.0 to 1.59.0 (#151)
Browse files Browse the repository at this point in the history
Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.58.0 to
1.59.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.59</h2>
<h3>New features</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12518">#12518</a>:
Add new <code>Lint/ItWithoutArgumentsInBlock</code> cop. (<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/issues/12434">#12434</a>:
Fix a false positive for <code>Lint/LiteralAssignmentInCondition</code>
when using interpolated string or xstring literals. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12435">#12435</a>:
Fix a false positive for <code>Lint/SelfAssignment</code> when using
attribute assignment with method call with arguments. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12444">#12444</a>:
Fix false positive for <code>Style/HashEachMethods</code> when receiver
literal is not a hash literal. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12524">#12524</a>:
Fix a false positive for
<code>Style/MethodCallWithArgsParentheses</code> when
<code>EnforcedStyle: omit_parentheses</code> and parens in
<code>when</code> clause is used to pass an argument. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12505">#12505</a>:
Fix a false positive for <code>Style/RedundantParentheses</code> when
using parenthesized <code>lambda</code> or <code>proc</code> with
<code>do</code>...<code>end</code> block. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12442">#12442</a>:
Fix an incorrect autocorrect for <code>Style/CombinableLoops</code> when
looping over the same data as previous loop in
<code>do</code>...<code>end</code> and <code>{</code>...<code>}</code>
blocks. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12432">#12432</a>:
Fix a false positive for <code>Lint/LiteralAssignmentInCondition</code>
when using parallel assignment with splat operator in block of guard
condition. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12441">#12441</a>:
Fix false positives for <code>Style/HashEachMethods</code> when using
destructed block arguments. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12436">#12436</a>:
Fix false positives for <code>Style/RedundantParentheses</code> when a
part of range is a parenthesized condition. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12429">#12429</a>:
Fix incorrect autocorrect for <code>Style/MapToHash</code> when using
dot method calls for <code>to_h</code>. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12488">#12488</a>:
Make <code>Lint/HashCompareByIdentity</code> aware of safe navigation
operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12489">#12489</a>:
Make <code>Lint/NextWithoutAccumulator</code> aware of safe navigation
operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12490">#12490</a>:
Make <code>Lint/NumberConversion</code> aware of safe navigation
operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12491">#12491</a>:
Make <code>Lint/RedundantWithIndex</code> aware of safe navigation
operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12492">#12492</a>:
Make <code>Lint/RedundantWithObject</code> aware of safe navigation
operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12493">#12493</a>:
Make <code>Lint/UnmodifiedReduceAccumulator</code> aware of safe
navigation operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12473">#12473</a>:
Make <code>Style/ClassCheck</code> aware of safe navigation operator.
(<a href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12445">#12445</a>:
Make <code>Style/CollectionCompact</code> aware of safe navigation
operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12474">#12474</a>:
Make <code>Style/ConcatArrayLiterals</code> aware of safe navigation
operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12476">#12476</a>:
Make <code>Style/DateTime</code> aware of safe navigation operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12479">#12479</a>:
Make <code>Style/EachWithObject</code> aware of safe navigation
operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12446">#12446</a>:
Make <code>Style/HashExcept</code> aware of safe navigation operator.
(<a href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12447">#12447</a>:
Make <code>Style/MapCompactWithConditionalBlock</code> aware of safe
navigation operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12484">#12484</a>:
Make <code>Style/Next</code> aware of safe navigation operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12486">#12486</a>:
Make <code>Style/RedundantArgument</code> aware of safe navigation
operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12454">#12454</a>:
Make <code>Style/RedundantFetchBlock</code> aware of safe navigation
operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12495">#12495</a>:
Make <code>Layout/RedundantLineBreak</code> aware of safe navigation
operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12455">#12455</a>:
Make <code>Style/RedundantSortBy</code> aware of safe navigation
operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12456">#12456</a>:
Make <code>Style/RedundantSortBy</code> aware of safe navigation
operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12480">#12480</a>:
Make <code>Style/ExactRegexpMatch</code> aware of safe navigation
operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12457">#12457</a>:
Make <code>Style/Sample</code> aware of safe navigation operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12458">#12458</a>:
Make <code>Style/SelectByRegexp</code> cops aware of safe navigation
operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12494">#12494</a>:
Make <code>Layout/SingleLineBlockChain</code> aware of safe navigation
operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12461">#12461</a>:
Make <code>Style/StringChars</code> aware of safe navigation operator.
(<a href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12468">#12468</a>:
Make <code>Style/Strip</code> aware of safe navigation operator. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12469">#12469</a>:
Make <code>Style/UnpackFirst</code> aware of safe navigation operator.
(<a href="https://github.com/koic"><code>@​koic</code></a>)</li>
</ul>
<h3>Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12522">#12522</a>:
Make <code>Style/MethodCallWithoutArgsParentheses</code> allow the
parenthesized <code>it</code> method in a block. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12523">#12523</a>:
Make <code>Style/RedundantSelf</code> allow the <code>self.it</code>
method in a block. (<a
href="https://github.com/koic"><code>@​koic</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.59.0 (2023-12-11)</h2>
<h3>New features</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12518">#12518</a>:
Add new <code>Lint/ItWithoutArgumentsInBlock</code> cop. ([<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/issues/12434">#12434</a>:
Fix a false positive for <code>Lint/LiteralAssignmentInCondition</code>
when using interpolated string or xstring literals. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12435">#12435</a>:
Fix a false positive for <code>Lint/SelfAssignment</code> when using
attribute assignment with method call with arguments. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12444">#12444</a>:
Fix false positive for <code>Style/HashEachMethods</code> when receiver
literal is not a hash literal. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12524">#12524</a>:
Fix a false positive for
<code>Style/MethodCallWithArgsParentheses</code> when
<code>EnforcedStyle: omit_parentheses</code> and parens in
<code>when</code> clause is used to pass an argument. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12505">#12505</a>:
Fix a false positive for <code>Style/RedundantParentheses</code> when
using parenthesized <code>lambda</code> or <code>proc</code> with
<code>do</code>...<code>end</code> block. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12442">#12442</a>:
Fix an incorrect autocorrect for <code>Style/CombinableLoops</code> when
looping over the same data as previous loop in
<code>do</code>...<code>end</code> and <code>{</code>...<code>}</code>
blocks. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12432">#12432</a>:
Fix a false positive for <code>Lint/LiteralAssignmentInCondition</code>
when using parallel assignment with splat operator in block of guard
condition. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12441">#12441</a>:
Fix false positives for <code>Style/HashEachMethods</code> when using
destructed block arguments. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12436">#12436</a>:
Fix false positives for <code>Style/RedundantParentheses</code> when a
part of range is a parenthesized condition. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12429">#12429</a>:
Fix incorrect autocorrect for <code>Style/MapToHash</code> when using
dot method calls for <code>to_h</code>. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12488">#12488</a>:
Make <code>Lint/HashCompareByIdentity</code> aware of safe navigation
operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12489">#12489</a>:
Make <code>Lint/NextWithoutAccumulator</code> aware of safe navigation
operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12490">#12490</a>:
Make <code>Lint/NumberConversion</code> aware of safe navigation
operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12491">#12491</a>:
Make <code>Lint/RedundantWithIndex</code> aware of safe navigation
operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12492">#12492</a>:
Make <code>Lint/RedundantWithObject</code> aware of safe navigation
operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12493">#12493</a>:
Make <code>Lint/UnmodifiedReduceAccumulator</code> aware of safe
navigation operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12473">#12473</a>:
Make <code>Style/ClassCheck</code> aware of safe navigation operator.
([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12445">#12445</a>:
Make <code>Style/CollectionCompact</code> aware of safe navigation
operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12474">#12474</a>:
Make <code>Style/ConcatArrayLiterals</code> aware of safe navigation
operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12476">#12476</a>:
Make <code>Style/DateTime</code> aware of safe navigation operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12479">#12479</a>:
Make <code>Style/EachWithObject</code> aware of safe navigation
operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12446">#12446</a>:
Make <code>Style/HashExcept</code> aware of safe navigation operator.
([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12447">#12447</a>:
Make <code>Style/MapCompactWithConditionalBlock</code> aware of safe
navigation operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12484">#12484</a>:
Make <code>Style/Next</code> aware of safe navigation operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12486">#12486</a>:
Make <code>Style/RedundantArgument</code> aware of safe navigation
operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12454">#12454</a>:
Make <code>Style/RedundantFetchBlock</code> aware of safe navigation
operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12495">#12495</a>:
Make <code>Layout/RedundantLineBreak</code> aware of safe navigation
operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12455">#12455</a>:
Make <code>Style/RedundantSortBy</code> aware of safe navigation
operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12456">#12456</a>:
Make <code>Style/RedundantSortBy</code> aware of safe navigation
operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12480">#12480</a>:
Make <code>Style/ExactRegexpMatch</code> aware of safe navigation
operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12457">#12457</a>:
Make <code>Style/Sample</code> aware of safe navigation operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12458">#12458</a>:
Make <code>Style/SelectByRegexp</code> cops aware of safe navigation
operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12494">#12494</a>:
Make <code>Layout/SingleLineBlockChain</code> aware of safe navigation
operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12461">#12461</a>:
Make <code>Style/StringChars</code> aware of safe navigation operator.
([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12468">#12468</a>:
Make <code>Style/Strip</code> aware of safe navigation operator. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12469">#12469</a>:
Make <code>Style/UnpackFirst</code> aware of safe navigation operator.
([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li>
</ul>
<h3>Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12522">#12522</a>:
Make <code>Style/MethodCallWithoutArgsParentheses</code> allow the
parenthesized <code>it</code> method in a block. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12523">#12523</a>:
Make <code>Style/RedundantSelf</code> allow the <code>self.it</code>
method in a block. ([<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/e5a164a26f8ecba81d44e974e8e3569c550968cd"><code>e5a164a</code></a>
Cut 1.59</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/2912b6e9e90831717b004b4e016fd2723fac5e44"><code>2912b6e</code></a>
Update Changelog</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/3bcc171fe5d9ee0251b1c22ffec463aaec495bf7"><code>3bcc171</code></a>
[Fix <a
href="https://redirect.github.com/rubocop/rubocop/issues/12524">#12524</a>]
Fix a false positive for
<code>Style/MethodCallWithArgsParentheses</code></li>
<li><a
href="https://github.com/rubocop/rubocop/commit/0daa4aa05977f67b575d126caff716959e60f00f"><code>0daa4aa</code></a>
Make <code>Style/MethodCallWithoutArgsParentheses</code> allow
parenthesized <code>it</code></li>
<li><a
href="https://github.com/rubocop/rubocop/commit/b240a093c0539c1f89c60df6b599d2afd4db4f22"><code>b240a09</code></a>
Make <code>Style/RedundantSelf</code> allow <code>self.it</code></li>
<li><a
href="https://github.com/rubocop/rubocop/commit/a0e1042a34d4d0ff855447d6f9059c98b610258f"><code>a0e1042</code></a>
[Fix <a
href="https://redirect.github.com/rubocop/rubocop/issues/12526">#12526</a>]
Fix incorrect rendering typos</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/b1bcb3134d49a60061d08ef168ae996d70d8ce5c"><code>b1bcb31</code></a>
[Fix <a
href="https://redirect.github.com/rubocop/rubocop/issues/12444">#12444</a>]
Fix false positive for <code>Style/HashEachMethods</code></li>
<li><a
href="https://github.com/rubocop/rubocop/commit/3b0360bb9fcd9c49e09882c2b1780ba7cbbf64a8"><code>3b0360b</code></a>
Add new <code>Lint/ItWithoutArgumentsInBlock</code> cop</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/4e9cfcc6ea39b69474eab3e13b551be32d3217ff"><code>4e9cfcc</code></a>
Merge pull request <a
href="https://redirect.github.com/rubocop/rubocop/issues/12521">#12521</a>
from koic/make_style_select_by_regexp_aware_of_safe...</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/037c860c1fe2f8a0512dbe15ff329fee2f7c10f6"><code>037c860</code></a>
Merge pull request <a
href="https://redirect.github.com/rubocop/rubocop/issues/12438">#12438</a>
from koic/fix_a_false_positive_for_lint_literal_ass...</li>
<li>Additional commits viewable in <a
href="https://github.com/rubocop/rubocop/compare/v1.58.0...v1.59.0">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.58.0&new-version=1.59.0)](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 this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Dec 11, 2023
1 parent c33f780 commit f5ecf8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ GEM
jbuilder (2.11.5)
actionview (>= 5.0.0)
activesupport (>= 5.0.0)
json (2.7.0)
json (2.7.1)
jwt (2.7.0)
language_server-protocol (3.17.0.3)
loofah (2.22.0)
Expand Down Expand Up @@ -309,7 +309,7 @@ GEM
redis-client (>= 0.17.0)
redis-client (0.18.0)
connection_pool
regexp_parser (2.8.2)
regexp_parser (2.8.3)
reline (0.4.1)
io-console (~> 0.5)
rexml (3.2.6)
Expand All @@ -331,7 +331,7 @@ GEM
rspec-mocks (~> 3.12)
rspec-support (~> 3.12)
rspec-support (3.12.1)
rubocop (1.58.0)
rubocop (1.59.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
Expand Down

0 comments on commit f5ecf8c

Please sign in to comment.