Skip to content

Commit

Permalink
Update rubocop requirement from 1.64.0 to 1.64.1 (#451)
Browse files Browse the repository at this point in the history
Updates the requirements on
[rubocop](https://github.com/rubocop/rubocop) to permit the latest
version.
<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.64.1</h2>
<h3>Bug fixes</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12951">#12951</a>:
Fix an error for <code>Style/Copyright</code> when
<code>AutocorrectNotice</code> is missing. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12932">#12932</a>:
Fix end position of diagnostic for LSP. (<a
href="https://github.com/ksss"><code>@​ksss</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12926">#12926</a>:
Fix a false positive for <code>Style/SuperArguments</code> when the
methods block argument is reassigned before <code>super</code>. (<a
href="https://github.com/earlopain"><code>@​earlopain</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12931">#12931</a>:
Fix false positives for <code>Style/RedundantLineContinuation</code>
when line continuations involve <code>break</code>, <code>next</code>,
or <code>yield</code> with a return value. (<a
href="https://github.com/koic"><code>@​koic</code></a>)</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12924">#12924</a>:
Fix false positives for <code>Style/SendWithLiteralMethodName</code>
when <code>public_send</code> argument is a method name that cannot be
autocorrected. (<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.64.1 (2024-05-31)</h2>
<h3>Bug fixes</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12951">#12951</a>:
Fix an error for <code>Style/Copyright</code> when
<code>AutocorrectNotice</code> is missing. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12932">#12932</a>:
Fix end position of diagnostic for LSP. ([<a
href="https://github.com/ksss"><code>@​ksss</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12926">#12926</a>:
Fix a false positive for <code>Style/SuperArguments</code> when the
methods block argument is reassigned before <code>super</code>. ([<a
href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12931">#12931</a>:
Fix false positives for <code>Style/RedundantLineContinuation</code>
when line continuations involve <code>break</code>, <code>next</code>,
or <code>yield</code> with a return value. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12924">#12924</a>:
Fix false positives for <code>Style/SendWithLiteralMethodName</code>
when <code>public_send</code> argument is a method name that cannot be
autocorrected. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
</ul>
<h2>1.64.0 (2024-05-23)</h2>
<h3>New features</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12904">#12904</a>:
Add new <code>either_consistent</code>
<code>SupportedShorthandSyntax</code> to <code>Style/HashSyntax</code>.
([<a
href="https://github.com/pawelma"><code>@​pawelma</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12842">#12842</a>:
Add new <code>Style/SendWithLiteralMethodName</code> cop. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12309">#12309</a>:
Add new <code>Style/SuperArguments</code> cop. ([<a
href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12917">#12917</a>:
Suggest correct formatter name for <code>--format</code> command line
option. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12242">#12242</a>:
Support <code>AllowModifiersOnAttrs</code> option for
<code>Style/AccessModifierDeclarations</code>. ([<a
href="https://github.com/krororo"><code>@​krororo</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/11585">#11585</a>:
Support <code>AllowedMethods</code> for
<code>Style/DocumentationMethod</code>. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/7189">#7189</a>:
Fix a false positive for <code>Style/Copyright</code> when using
multiline copyright notice. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12914">#12914</a>:
Fix a false negative for <code>Layout/EmptyComment</code> when using an
empty comment next to code after comment line. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12919">#12919</a>:
Fix false negatives for <code>Style/ArgumentsForwarding</code> when
forward target is <code>super</code>. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12923">#12923</a>:
Fix false negatives for <code>Style/ArgumentsForwarding</code> when
forward target is safe navigation method. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12894">#12894</a>:
Fix false positives for <code>Style/MapIntoArray</code> when using
<code>each</code> without receiver with <code>&lt;&lt;</code> to build
an array. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12876">#12876</a>:
Fix an error for the lockfile parser if a gemfile exists but a lockfile
doesn't. ([<a
href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12888">#12888</a>:
Fix <code>--no-exclude-limit</code> generating a todo with
<code>Max</code> config instead of listing everything out with
<code>Exclude</code>. ([<a
href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12898">#12898</a>:
Fix an error for <code>TargetRailsVersion</code> when parsing from the
lockfile with prerelease rails. ([<a
href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li>
</ul>
<h3>Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12908">#12908</a>:
Add rubocop-rspec back to suggested extensions when rspec-rails is in
use. ([<a
href="https://github.com/pirj"><code>@​pirj</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12884">#12884</a>:
Align output from <code>cop.documentation_url</code> with
<code>--show-docs-url</code> when passing a config as argument. ([<a
href="https://github.com/earlopain"><code>@​earlopain</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12905">#12905</a>:
Support <code>ActiveSupportExtensionsEnabled</code> for
<code>Style/SymbolProc</code>. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12897">#12897</a>:
Respect user's intentions with <code>workspace/executeCommand</code> LSP
method. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
</ul>
<h2>1.63.5 (2024-05-09)</h2>
<h3>Bug fixes</h3>
<ul>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12877">#12877</a>:
Fix an infinite loop error for
<code>Layout/FirstArgumentIndentation</code> when specifying
<code>EnforcedStyle: with_fixed_indentation</code> of
<code>Layout/ArrayAlignment</code>. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/issues/12873">#12873</a>:
Fix an error for <code>Metrics/BlockLength</code> when the
<code>CountAsOne</code> config is invalid. ([<a
href="https://github.com/koic"><code>@​koic</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12881">#12881</a>:
Fix incorrect autocorrect when <code>Style/NumericPredicate</code> is
used with negations. ([<a
href="https://github.com/fatkodima"><code>@​fatkodima</code></a>][])</li>
<li><a
href="https://redirect.github.com/rubocop/rubocop/pull/12882">#12882</a>:
Fix <code>Layout/CommentIndentation</code> for comment-only pattern
matching. ([<a
href="https://github.com/nekketsuuu"><code>@​nekketsuuu</code></a>][])</li>
</ul>
<h2>1.63.4 (2024-04-28)</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rubocop/rubocop/commit/31be3004ffb6c6bb8a5dc105993622c2c5aa99f4"><code>31be300</code></a>
Cut 1.64.1</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/8ba7464fa7f45d3cd0fc38dd7551122105a831b8"><code>8ba7464</code></a>
Update Changelog</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/80f619b296e41655aabf913184cb23f19a2371bf"><code>80f619b</code></a>
Fix an error for <code>Style/Copyright</code></li>
<li><a
href="https://github.com/rubocop/rubocop/commit/a920ba5d227fb2eb78e97539acbd9894db710eea"><code>a920ba5</code></a>
[Fix <a
href="https://redirect.github.com/rubocop/rubocop/issues/12949">#12949</a>]
Use the secret for the coverage reporter id</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/f01e93385060e181e1698c186a871fc9d2a1194e"><code>f01e933</code></a>
Merge pull request <a
href="https://redirect.github.com/rubocop/rubocop/issues/12946">#12946</a>
from Earlopain/speedier-ci</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/43105b4d55a0ee0ba58dd7e483936d0ac6905bf3"><code>43105b4</code></a>
Slightly speed up CI runs</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/6463bf21188c28b747acf1a276dd3d23c27673a8"><code>6463bf2</code></a>
Move main tests to GitHub actions</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/54421d6df7fb245f836fe8074690171c02b3d7b6"><code>54421d6</code></a>
[Fix <a
href="https://redirect.github.com/rubocop/rubocop/issues/12910">#12910</a>]
Ensure that RuboCop runs warning-free</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/1cfe0b33f02db351a681f7a139a54912a308066a"><code>1cfe0b3</code></a>
Move <code>ascii_spec</code> to GitHub actions</li>
<li><a
href="https://github.com/rubocop/rubocop/commit/fbdffc384092bc9069b199ff3db938e1f9c0f035"><code>fbdffc3</code></a>
Move <code>internal_investigation</code> to GitHub actions</li>
<li>Additional commits viewable in <a
href="https://github.com/rubocop/rubocop/compare/v1.64.0...v1.64.1">compare
view</a></li>
</ul>
</details>
<br />


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 Jun 1, 2024
1 parent 1c055f5 commit d9049a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ gem "concurrent-ruby", "~> 1.1"
gem "mighty_test", "~> 0.3.0" unless RUBY_VERSION < "3.1"
gem "minitest", "~> 5.11"
gem "rake", "~> 13.0"
gem "rubocop", "1.64.0"
gem "rubocop", "1.64.1"
gem "rubocop-md", "1.2.2"
gem "rubocop-minitest", "0.35.0"
gem "rubocop-packaging", "0.5.2"
Expand Down

0 comments on commit d9049a6

Please sign in to comment.