Skip to content

Commit

Permalink
Bump rubocop from 1.69.0 to 1.69.1 (#1818)
Browse files Browse the repository at this point in the history
Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.69.0 to
1.69.1.
<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.1</h2>
<h3>Bug fixes</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13502">#13502</a>:
Fix an incorrect autocorrect for <code>Style/DigChain</code> when using
safe navigation method chain with <code>dig</code> method. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13505">#13505</a>:
Fix an error for <code>Style/ParallelAssignment</code> when using the
anonymous splat operator. (<a
href="https://github.com/earlopain"><code>@​earlopain</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13184">#13184</a>:
Fix some false positives in <code>Lint/UnreachableCode</code>. (<a
href="https://github.com/isuckatcs"><code>@​isuckatcs</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13494">#13494</a>:
Fix false positives for <code>Style/HashExcept</code> cop when using
<code>reject/!include?</code>, <code>reject/!in?</code> or
<code>select/!exclude?</code> combinations. (<a
href="https://github.com/lovro-bikic"><code>@​lovro-bikic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13522">#13522</a>:
Fix <code>Lint/UnescapedBracketInRegexp</code> cop failure with invalid
regular expression. (<a
href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13523">#13523</a>:
Fix <code>Style::AccessModifierDeclarations</code> cop failure in case
of <code>if</code> node without <code>else</code>. (<a
href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13524">#13524</a>:
Fix <code>Style/RedundantArgument</code> cop failure while inspecting
string literal with invalid encoding. (<a
href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13528">#13528</a>:
Fix <code>Style/RedundantParentheses</code> cop failure in case of
splatted <code>case</code> node without condition. (<a
href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13521">#13521</a>:
Fix <code>Style/RedundantSelf</code> cop failure with
<code>kwnilarg</code> argument node. (<a
href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13526">#13526</a>:
Fix <code>Style/StringConcatenation</code> cop failure when there are
mixed implicit and explicit concatenations. (<a
href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13511">#13511</a>:
Fix false positive in <code>Lint/UnescapedBracketInRegexp</code> when
using regexp_parser 2.9.2 and earlier. (<a
href="https://github.com/dvandersluis"><code>@​dvandersluis</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13096">#13096</a>:
Update <code>Style/BlockDelimiters</code> to not change braces when they
are required for syntax. (<a
href="https://github.com/dvandersluis"><code>@​dvandersluis</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13512">#13512</a>:
Update <code>Style/LambdaCall</code> to be aware of safe navigation. (<a
href="https://github.com/dvandersluis"><code>@​dvandersluis</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.69.1 (2024-12-03)</h2>
<h3>Bug fixes</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13502">#13502</a>:
Fix an incorrect autocorrect for <code>Style/DigChain</code> when using
safe navigation method chain with <code>dig</code> method. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13505">#13505</a>:
Fix an error for <code>Style/ParallelAssignment</code> when using the
anonymous splat operator. ([<a
href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13184">#13184</a>:
Fix some false positives in <code>Lint/UnreachableCode</code>. ([<a
href="https://github.com/isuckatcs"><code>@​isuckatcs</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13494">#13494</a>:
Fix false positives for <code>Style/HashExcept</code> cop when using
<code>reject/!include?</code>, <code>reject/!in?</code> or
<code>select/!exclude?</code> combinations. ([<a
href="https://github.com/lovro-bikic"><code>@​lovro-bikic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13522">#13522</a>:
Fix <code>Lint/UnescapedBracketInRegexp</code> cop failure with invalid
regular expression. ([<a
href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13523">#13523</a>:
Fix <code>Style::AccessModifierDeclarations</code> cop failure in case
of <code>if</code> node without <code>else</code>. ([<a
href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13524">#13524</a>:
Fix <code>Style/RedundantArgument</code> cop failure while inspecting
string literal with invalid encoding. ([<a
href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13528">#13528</a>:
Fix <code>Style/RedundantParentheses</code> cop failure in case of
splatted <code>case</code> node without condition. ([<a
href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13521">#13521</a>:
Fix <code>Style/RedundantSelf</code> cop failure with
<code>kwnilarg</code> argument node. ([<a
href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13526">#13526</a>:
Fix <code>Style/StringConcatenation</code> cop failure when there are
mixed implicit and explicit concatenations. ([<a
href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13511">#13511</a>:
Fix false positive in <code>Lint/UnescapedBracketInRegexp</code> when
using regexp_parser 2.9.2 and earlier. ([<a
href="https://github.com/dvandersluis"><code>@​dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/13096">#13096</a>:
Update <code>Style/BlockDelimiters</code> to not change braces when they
are required for syntax. ([<a
href="https://github.com/dvandersluis"><code>@​dvandersluis</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/13512">#13512</a>:
Update <code>Style/LambdaCall</code> to be aware of safe navigation.
([<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/3d95b38d1d5e8fec59d28245559d77594ea04b44"><code>3d95b38</code></a>
Cut 1.69.1</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/c60ffa5ba6657ec8c3b43917202ac49281ac6d64"><code>c60ffa5</code></a>
Update Changelog</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/4f2ac18d7c8cd79ca59a88cfeb8b8c523e8472e2"><code>4f2ac18</code></a>
Lint/BinaryOperatorWithIdenticalOperands: Remove MATH_OPERATORS as they
will ...</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/ea4aa488830cd082c10ce7edba4230e01c5a40d4"><code>ea4aa48</code></a>
Merge pull request <a
href="https://redirect.github.com/rubocop/rubocop/issues/13529">#13529</a>
from dvandersluis/generator-internal-affairs</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/12e1ea2797b2725801e6b7d90abb996b71369322"><code>12e1ea2</code></a>
Update <code>rake new_cop</code> to handle <code>InternalAffairs</code>
cops</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/84f3d433be56c7d2d3edaa9fa898e108e8459982"><code>84f3d43</code></a>
Specify <code>maximum_target_ruby_version</code> for a handful of cops,
document it</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/ef8009cee996b958203ebce43953f0a2c7aada51"><code>ef8009c</code></a>
Merge pull request <a
href="https://redirect.github.com/rubocop/rubocop/issues/13531">#13531</a>
from rubocop/dependabot/github_actions/karancode/ya...</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/7715ed7519d7181b0b6c421d5514a26fa7315ce9"><code>7715ed7</code></a>
Bump karancode/yamllint-github-action from 2.1.1 to 3.0.0</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/cc43be0349980b615655932d509989322def194c"><code>cc43be0</code></a>
Merge pull request <a
href="https://redirect.github.com/rubocop/rubocop/issues/13528">#13528</a>
from viralpraxis/fix-style-redundant-parentheses-co...</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/bd8b67443a1b00f532aea359950e635269fceb86"><code>bd8b674</code></a>
Fix <code>Style/RedundantParentheses</code> cop failure in case of
splatted <code>case</code> node ...</li>
<li>Additional commits viewable in <a
href="https://github.com/rubocop/rubocop/compare/v1.69.0...v1.69.1">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.69.0&new-version=1.69.1)](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>
  • Loading branch information
github-actions[bot] authored Dec 4, 2024
2 parents bdbaf17 + 94138d1 commit dd22c7d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ GEM
irb (1.14.1)
rdoc (>= 4.0.0)
reline (>= 0.4.2)
json (2.8.2)
json (2.9.0)
language_server-protocol (3.17.0.3)
libv8-node (18.19.0.0)
libv8-node (18.19.0.0-arm64-darwin)
Expand Down Expand Up @@ -278,7 +278,7 @@ GEM
redis-client (>= 0.22.0)
redis-client (0.22.2)
connection_pool
regexp_parser (2.9.2)
regexp_parser (2.9.3)
reline (0.5.11)
io-console (~> 0.5)
rexml (3.3.9)
Expand All @@ -302,17 +302,17 @@ GEM
rspec-mocks (~> 3.13)
rspec-support (~> 3.13)
rspec-support (3.13.1)
rubocop (1.69.0)
rubocop (1.69.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 2.4, < 3.0)
rubocop-ast (>= 1.36.1, < 2.0)
regexp_parser (>= 2.9.3, < 3.0)
rubocop-ast (>= 1.36.2, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 4.0)
rubocop-ast (1.36.1)
rubocop-ast (1.36.2)
parser (>= 3.3.1.0)
rubocop-rails (2.27.0)
activesupport (>= 4.2.0)
Expand Down

0 comments on commit dd22c7d

Please sign in to comment.