Skip to content
This repository was archived by the owner on Oct 14, 2025. It is now read-only.

Commit 687d325

Browse files
Bump the minor-updates group across 1 directory with 2 updates (#401)
Bumps the minor-updates group with 2 updates in the / directory: [rubocop](https://github.com/rubocop/rubocop) and [rubocop-rspec](https://github.com/rubocop/rubocop-rspec). Updates `rubocop` from 1.75.2 to 1.75.3 <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.75.3</h2> <h3>Bug fixes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/13676">#13676</a>: Allow RuboCop to inspect hidden directories if they are explicitly provided. (<a href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14080">#14080</a>: Allow writing RBS::Inline annotation <code>#:</code> after end keyword 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/issues/14075">#14075</a>: Fix an error for <code>Layout/EmptyLineAfterGuardClause</code> when calling a method on the result of a single-line <code>if</code> with <code>return</code>. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14067">#14067</a>: Fix false negatives for <code>Style/RedundantParentheses</code> when using parens around singleton method body. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14070">#14070</a>: Fix false positives for <code>EnforcedStyleForMultiline: diff_comma</code> of <code>Style/TrailingCommaInArrayLiteral</code> and <code>Style/TrailingCommaInHashLiteral</code> when trailing comma with comment. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14092">#14092</a>: Fix false negative for <code>Style/RedundantParentheses</code> when using some operator methods with a parenthesized argument. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14103">#14103</a>: Fix <code>Layout/MultilineOperationIndentation</code> cop error on <code>indexasgn</code> node without arguments. (<a href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14089">#14089</a>: Fix redundant current directory prefix regexp. (<a href="https://github.com/sferik"><code>@​sferik</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14099">#14099</a>: Fix <code>Style/ClassAndModuleChildren</code> cop error on one-liner class definition and nested enforced style. (<a href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14083">#14083</a>: Fix <code>Style/ConditionalAssignment</code> cop error on one-line if-then-else. (<a href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14104">#14104</a>: Fix <code>Style/ConditionalAssignment</code> cop error on indexed assignment without arguments. (<a href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14084">#14084</a>: Fix <code>Style/RedundantLineContinuation</code> cop error on multiline assignment with line continuation. (<a href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14096">#14096</a>: Fix error for <code>Style/SafeNavigation</code> with longer <code>&amp;&amp;</code> chain (e.g. <code>a &amp;&amp; a.b &amp;&amp; a.b.c</code>). (<a href="https://github.com/lovro-bikic"><code>@​lovro-bikic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14068">#14068</a>: Fix wrong autocorrection for <code>Style/MapIntoArray</code> when using <code>push</code> or <code>append</code> with hash argument without braces. (<a href="https://github.com/lovro-bikic"><code>@​lovro-bikic</code></a>)</li> </ul> <h3>Changes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14093">#14093</a>: Register offenses for redundant parens around method arguments for <code>Style/RedundantParentheses</code>. (<a href="https://github.com/lovro-bikic"><code>@​lovro-bikic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14064">#14064</a>: Prefer <code>References</code> over <code>Reference</code> in cop configs. (<a href="https://github.com/sambostock"><code>@​sambostock</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.75.3 (2025-04-22)</h2> <h3>Bug fixes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/13676">#13676</a>: Allow RuboCop to inspect hidden directories if they are explicitly provided. ([<a href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14080">#14080</a>: Allow writing RBS::Inline annotation <code>#:</code> after end keyword 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/issues/14075">#14075</a>: Fix an error for <code>Layout/EmptyLineAfterGuardClause</code> when calling a method on the result of a single-line <code>if</code> with <code>return</code>. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14067">#14067</a>: Fix false negatives for <code>Style/RedundantParentheses</code> when using parens around singleton method body. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14070">#14070</a>: Fix false positives for <code>EnforcedStyleForMultiline: diff_comma</code> of <code>Style/TrailingCommaInArrayLiteral</code> and <code>Style/TrailingCommaInHashLiteral</code> when trailing comma with comment. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14092">#14092</a>: Fix false negative for <code>Style/RedundantParentheses</code> when using some operator methods with a parenthesized argument. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14103">#14103</a>: Fix <code>Layout/MultilineOperationIndentation</code> cop error on <code>indexasgn</code> node without arguments. ([<a href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14089">#14089</a>: Fix redundant current directory prefix regexp. ([<a href="https://github.com/sferik"><code>@​sferik</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14099">#14099</a>: Fix <code>Style/ClassAndModuleChildren</code> cop error on one-liner class definition and nested enforced style. ([<a href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14083">#14083</a>: Fix <code>Style/ConditionalAssignment</code> cop error on one-line if-then-else. ([<a href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14104">#14104</a>: Fix <code>Style/ConditionalAssignment</code> cop error on indexed assignment without arguments. ([<a href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14084">#14084</a>: Fix <code>Style/RedundantLineContinuation</code> cop error on multiline assignment with line continuation. ([<a href="https://github.com/viralpraxis"><code>@​viralpraxis</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14096">#14096</a>: Fix error for <code>Style/SafeNavigation</code> with longer <code>&amp;&amp;</code> chain (e.g. <code>a &amp;&amp; a.b &amp;&amp; a.b.c</code>). ([<a href="https://github.com/lovro-bikic"><code>@​lovro-bikic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14068">#14068</a>: Fix wrong autocorrection for <code>Style/MapIntoArray</code> when using <code>push</code> or <code>append</code> with hash argument without braces. ([<a href="https://github.com/lovro-bikic"><code>@​lovro-bikic</code></a>][])</li> </ul> <h3>Changes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14093">#14093</a>: Register offenses for redundant parens around method arguments for <code>Style/RedundantParentheses</code>. ([<a href="https://github.com/lovro-bikic"><code>@​lovro-bikic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/14064">#14064</a>: Prefer <code>References</code> over <code>Reference</code> in cop configs. ([<a href="https://github.com/sambostock"><code>@​sambostock</code></a>][])</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rubocop/rubocop/commit/05f0b56b2f6c433e62db2f00a2b723fb65c04f84"><code>05f0b56</code></a> Cut 1.75.3</li> <li><a href="https://github.com/rubocop/rubocop/commit/fc7022ab9aa0a84a7d9bafa9e2612ea0b1b08092"><code>fc7022a</code></a> Update Changelog</li> <li><a href="https://github.com/rubocop/rubocop/commit/8dd87137fdb200bf015e667695ccc2c043956911"><code>8dd8713</code></a> Make <code>InternalAffairs/ExampleDescription</code> aware of <code>xit</code> and <code>fit</code></li> <li><a href="https://github.com/rubocop/rubocop/commit/0ea19f035267a4b3c7a0e792b488454382ab2ea4"><code>0ea19f0</code></a> Merge pull request <a href="https://redirect.github.com/rubocop/rubocop/issues/14104">#14104</a> from viralpraxis/fix-style-conditional-assignment-c...</li> <li><a href="https://github.com/rubocop/rubocop/commit/543eeaf8f19cf5f0d0afc7617fbefc5dd9217bed"><code>543eeaf</code></a> Merge pull request <a href="https://redirect.github.com/rubocop/rubocop/issues/14105">#14105</a> from viralpraxis/bump-rubocop-rspec-dependency</li> <li><a href="https://github.com/rubocop/rubocop/commit/fb1de412d72b7e9cfbc66ba392e20a4ccacf2381"><code>fb1de41</code></a> Merge pull request <a href="https://redirect.github.com/rubocop/rubocop/issues/14101">#14101</a> from lovro-bikic/docs-formatting-issues</li> <li><a href="https://github.com/rubocop/rubocop/commit/a96fae011fcdda84cd9cddc5805b3e012a3c73dd"><code>a96fae0</code></a> Bump <code>rubocop-rspec</code> development dependency</li> <li><a href="https://github.com/rubocop/rubocop/commit/83de373359c747be67e654ecd80515f57c13bc7d"><code>83de373</code></a> Fix <code>Style/ConditionalAssignment</code> cop error on indexed assignment without arg...</li> <li><a href="https://github.com/rubocop/rubocop/commit/33e9b93f9748a68302849cb80e69dd7def5bebdb"><code>33e9b93</code></a> Merge pull request <a href="https://redirect.github.com/rubocop/rubocop/issues/14103">#14103</a> from viralpraxis/fix-layout-multiline-operation-ide...</li> <li><a href="https://github.com/rubocop/rubocop/commit/3409c8e30647644531bfe641634f6f6c228a8674"><code>3409c8e</code></a> Fix <code>Layout/MultilineOperationIndentation</code> cop error on <code>indexasgn</code> node with...</li> <li>Additional commits viewable in <a href="https://github.com/rubocop/rubocop/compare/v1.75.2...v1.75.3">compare view</a></li> </ul> </details> <br /> Updates `rubocop-rspec` from 3.5.0 to 3.6.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rubocop/rubocop-rspec/releases">rubocop-rspec's releases</a>.</em></p> <blockquote> <h2>RuboCop RSpec v3.6.0 (RubyKaigi 2025 Edition🍊)</h2> <ul> <li>Fix false positive in <code>RSpec/Pending</code>, where it would mark the default block <code>it</code> as an offense. (<a href="https://github.com/bquorning"><code>@​bquorning</code></a>)</li> <li>Fix issue when <code>Style/ContextWording</code> is configured with a Prefix being interpreted as a boolean, like <code>on</code>. (<a href="https://github.com/sakuro"><code>@​sakuro</code></a>)</li> <li>Add new <code>RSpec/IncludeExamples</code> cop to enforce using <code>it_behaves_like</code> over <code>include_examples</code>. (<a href="https://github.com/dvandersluis"><code>@​dvandersluis</code></a>)</li> <li>Change <code>RSpec/ScatteredSetup</code> to allow <code>around</code> hooks to be scattered. (<a href="https://github.com/ydah"><code>@​ydah</code></a>)</li> <li>Fix an error <code>RSpec/ChangeByZero</code> cop when without expect block. (<a href="https://github.com/lee266"><code>@​lee266</code></a>)</li> <li>Fix a false positive for <code>RSpec/DescribedClass</code> when <code>SkipBlocks</code> is true and numblocks are used. (<a href="https://github.com/earlopain"><code>@​earlopain</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md">rubocop-rspec's changelog</a>.</em></p> <blockquote> <h2>3.6.0 (2025-04-18)</h2> <ul> <li>Fix false positive in <code>RSpec/Pending</code>, where it would mark the default block <code>it</code> as an offense. ([<a href="https://github.com/bquorning"><code>@​bquorning</code></a>])</li> <li>Fix issue when <code>Style/ContextWording</code> is configured with a Prefix being interpreted as a boolean, like <code>on</code>. ([<a href="https://github.com/sakuro"><code>@​sakuro</code></a>])</li> <li>Add new <code>RSpec/IncludeExamples</code> cop to enforce using <code>it_behaves_like</code> over <code>include_examples</code>. ([<a href="https://github.com/dvandersluis"><code>@​dvandersluis</code></a>])</li> <li>Change <code>RSpec/ScatteredSetup</code> to allow <code>around</code> hooks to be scattered. ([<a href="https://github.com/ydah"><code>@​ydah</code></a>])</li> <li>Fix an error <code>RSpec/ChangeByZero</code> cop when without expect block. ([<a href="https://github.com/lee266"><code>@​lee266</code></a>])</li> <li>Fix a false positive for <code>RSpec/DescribedClass</code> when <code>SkipBlocks</code> is true and numblocks are used. ([<a href="https://github.com/earlopain"><code>@​earlopain</code></a>])</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rubocop/rubocop-rspec/commit/5fe53aed67d5956ac42dd37b5b02692146cb065f"><code>5fe53ae</code></a> Merge pull request <a href="https://redirect.github.com/rubocop/rubocop-rspec/issues/2081">#2081</a> from rubocop/v3.6.0</li> <li><a href="https://github.com/rubocop/rubocop-rspec/commit/745d80447133a974a39f67964fa5e935a0bc74d9"><code>745d804</code></a> RuboCop RSpec v3.6.0 RubyKaigi 2025 edition</li> <li><a href="https://github.com/rubocop/rubocop-rspec/commit/170cc32f67639f8f4c29db0e181e269cd02bdfc4"><code>170cc32</code></a> Merge pull request <a href="https://redirect.github.com/rubocop/rubocop-rspec/issues/2054">#2054</a> from Earlopain/described-class-numblocks</li> <li><a href="https://github.com/rubocop/rubocop-rspec/commit/0ba09177aac76e231c73fd23da5a8c5b3c25b48b"><code>0ba0917</code></a> Fix a false positive for <code>RSpec/DescribedClass</code> when <code>SkipBlocks</code> is true and...</li> <li><a href="https://github.com/rubocop/rubocop-rspec/commit/436a4d464b228a71b52d47a8d7ee080f6a5b26ef"><code>436a4d4</code></a> Merge pull request <a href="https://redirect.github.com/rubocop/rubocop-rspec/issues/2052">#2052</a> from Earlopain/always-expect-correction</li> <li><a href="https://github.com/rubocop/rubocop-rspec/commit/c25abf4d84a1b36dad6b90cabaa21955ca1dad8e"><code>c25abf4</code></a> Merge pull request <a href="https://redirect.github.com/rubocop/rubocop-rspec/issues/2071">#2071</a> from lee266/bugfix-change-by-zero</li> <li><a href="https://github.com/rubocop/rubocop-rspec/commit/8c4429e7426118a391f548e229492130f6609c29"><code>8c4429e</code></a> Fix RSpec/ChangeByZero cop to handle invalid change matcher usage</li> <li><a href="https://github.com/rubocop/rubocop-rspec/commit/14f3dd27b1e16ba3e4f8a547900c9620ab9e1d52"><code>14f3dd2</code></a> Merge pull request <a href="https://redirect.github.com/rubocop/rubocop-rspec/issues/2073">#2073</a> from rubocop/1943</li> <li><a href="https://github.com/rubocop/rubocop-rspec/commit/bfe68bc4da2aa854ac662b7b02739eabb9d9d01f"><code>bfe68bc</code></a> Change <code>RSpec/ScatteredSetup</code> to allow <code>around</code> hooks to be scattered</li> <li><a href="https://github.com/rubocop/rubocop-rspec/commit/0f0fb8bafa57eb847f63ae1ecdc758a579987723"><code>0f0fb8b</code></a> Merge pull request <a href="https://redirect.github.com/rubocop/rubocop-rspec/issues/2072">#2072</a> from rubocop/fix-offenses</li> <li>Additional commits viewable in <a href="https://github.com/rubocop/rubocop-rspec/compare/v3.5.0...v3.6.0">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 <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 d67a501 commit 687d325

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Gemfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ GEM
194194
jbuilder (2.13.0)
195195
actionview (>= 5.0.0)
196196
activesupport (>= 5.0.0)
197-
json (2.10.2)
197+
json (2.11.3)
198198
jwt (2.10.1)
199199
base64
200200
language_server-protocol (3.17.0.4)
@@ -259,7 +259,7 @@ GEM
259259
omniauth-rails_csrf_protection (1.0.2)
260260
actionpack (>= 4.2)
261261
omniauth (~> 2.0)
262-
parallel (1.26.3)
262+
parallel (1.27.0)
263263
parser (3.3.8.0)
264264
ast (~> 2.4.1)
265265
racc
@@ -352,7 +352,7 @@ GEM
352352
rspec-mocks (~> 3.13)
353353
rspec-support (~> 3.13)
354354
rspec-support (3.13.2)
355-
rubocop (1.75.2)
355+
rubocop (1.75.5)
356356
json (~> 2.3)
357357
language_server-protocol (~> 3.17.0.2)
358358
lint_roller (~> 1.1.0)
@@ -382,7 +382,7 @@ GEM
382382
rack (>= 1.1)
383383
rubocop (>= 1.75.0, < 2.0)
384384
rubocop-ast (>= 1.38.0, < 2.0)
385-
rubocop-rspec (3.5.0)
385+
rubocop-rspec (3.6.0)
386386
lint_roller (~> 1.1)
387387
rubocop (~> 1.72, >= 1.72.1)
388388
ruby-progressbar (1.13.0)

0 commit comments

Comments
 (0)