Skip to content

Commit d179bfc

Browse files
build(deps): bump the all-dependencies group with 2 updates (#248)
Bumps the all-dependencies group with 2 updates: [rubocop](https://github.com/rubocop/rubocop) and [rubocop-rails](https://github.com/rubocop/rubocop-rails). Updates `rubocop` from 1.86.1 to 1.86.2 <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.86.2</h2> <h3>New features</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15075">#15075</a>: Implement true runner parallelism. (<a href="https://github.com/tdeo"><code>@​tdeo</code></a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/15156">#15156</a>: Fix an error for <code>Style/HashLookupMethod</code> when chaining <code>fetch</code> (or <code>[]</code>) calls on the same expression. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/15161">#15161</a>: Fix an error for <code>Style/ReduceToHash</code> when nested <code>each_with_object</code>/<code>inject</code>/<code>reduce</code> calls would build hashes. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15144">#15144</a>: Fix an error in <code>Style/SoleNestedConditional</code> when autocorrecting nested conditionals containing comments. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15040">#15040</a>: Exclude <code>constants</code> from <code>Style/ModuleMemberExistenceCheck</code>. (<a href="https://github.com/t-daisuke"><code>@​t-daisuke</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15155">#15155</a>: Fix false negatives in <code>Style/RedundantSelf</code> when an explicit <code>self</code> receiver in one scope matches the LHS of an <code>||=</code>, <code>&amp;&amp;=</code>, or <code>op_asgn</code> in another scope. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15107">#15107</a>: Fix false positives in <code>Lint/RequireRelativeSelfPath</code> when a non-<code>.rb</code> file uses <code>require_relative</code> with its own basename. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15137">#15137</a>: Fix incorrect &quot;does not support IndentationWidth parameter&quot; warning for <code>Layout/ClosingParenthesisIndentation</code> and <code>Layout/CommentIndentation</code>. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15148">#15148</a>: Fix false positives in <code>Lint/RedundantSafeNavigation</code> when safe navigation appears in <code>rescue</code> or <code>ensure</code> bodies. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15147">#15147</a>: Fix false positives in <code>Lint/RedundantSafeNavigation</code> when safe navigation appears in the body of <code>unless</code>. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/15163">#15163</a>: Fix false positives in <code>Style/Copyright</code> when <code>Notice</code> pattern starts with <code>\A#</code>, uses <code>\s</code> metacharacters, or has multiple spaces after <code>#</code>. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/10179">#10179</a>: Fix false positives in <code>Style/DocumentDynamicEvalDefinition</code> when the heredoc contains an escaped interpolation (<code>\#{...}</code>). (<a href="https://github.com/eyupcanakman"><code>@​eyupcanakman</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/15154">#15154</a>: Fix bug where specifying <code>--out</code> disables parallelization. (<a href="https://github.com/deivid-rodriguez"><code>@​deivid-rodriguez</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15106">#15106</a>: Fix <code>TargetFinder</code> to work correctly inside hidden parent directories. (<a href="https://github.com/alpaca-tc"><code>@​alpaca-tc</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15102">#15102</a>: Fix <code>FrozenError</code> in <code>DisabledConfigFormatter</code> for frozen array config parameters. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/15141">#15141</a>: Fix incorrect autocorrect for <code>Gemspec/RequireMFA</code> causing an infinite loop when <code>rubygems_mfa_required</code> metadata uses a symbol key. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15142">#15142</a>: Fix infinite loop for <code>--disable-uncorrectable</code> and offense near heredoc. (<a href="https://github.com/jonas054"><code>@​jonas054</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15054">#15054</a>: Fix false positive for <code>Layout/MultilineMethodCallIndentation</code> when a dot-aligned method chain is inside a hash pair value. (<a href="https://github.com/nicolas-finary"><code>@​nicolas-finary</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15136">#15136</a>: Fix false positive for <code>Lint/MissingCopEnableDirective</code> when <code># rubocop:disable</code> is wrapped in a <code># rubocop:push</code> / <code># rubocop:pop</code> block. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15115">#15115</a>: Fix an incorrect autocorrect in <code>Style/RegexpLiteral</code> when the regexp contains unbalanced braces that conflict with the preferred <code>%r</code> delimiters. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15130">#15130</a>: Fix incorrect autocorrect in <code>Style/Copyright</code> when <code>AutocorrectNotice</code> lacks a <code>#</code> prefix or <code>Notice</code> pattern starts with <code>^#</code>. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14821">#14821</a>: Fix <code>Style/IfInsideElse</code> autocorrect moving comments into the wrong branch when a comment precedes the nested <code>if</code> in an <code>else</code>. (<a href="https://github.com/hammadxcm"><code>@​hammadxcm</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14583">#14583</a>: Fix template extractor applying only the last fragment's autocorrection. (<a href="https://github.com/zeronosu77108"><code>@​zeronosu77108</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14971">#14971</a>: Fix false positive for <code>Style/WhileUntilModifier</code> when the body is a conditional. (<a href="https://github.com/fujitanisora"><code>@​fujitanisora</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.86.2 (2026-05-14)</h2> <h3>New features</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15075">#15075</a>: Implement true runner parallelism. ([<a href="https://github.com/tdeo"><code>@​tdeo</code></a>][])</li> </ul> <h3>Bug fixes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/15156">#15156</a>: Fix an error for <code>Style/HashLookupMethod</code> when chaining <code>fetch</code> (or <code>[]</code>) calls on the same expression. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/15161">#15161</a>: Fix an error for <code>Style/ReduceToHash</code> when nested <code>each_with_object</code>/<code>inject</code>/<code>reduce</code> calls would build hashes. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15144">#15144</a>: Fix an error in <code>Style/SoleNestedConditional</code> when autocorrecting nested conditionals containing comments. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15040">#15040</a>: Exclude <code>constants</code> from <code>Style/ModuleMemberExistenceCheck</code>. ([<a href="https://github.com/t-daisuke"><code>@​t-daisuke</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15155">#15155</a>: Fix false negatives in <code>Style/RedundantSelf</code> when an explicit <code>self</code> receiver in one scope matches the LHS of an <code>||=</code>, <code>&amp;&amp;=</code>, or <code>op_asgn</code> in another scope. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15107">#15107</a>: Fix false positives in <code>Lint/RequireRelativeSelfPath</code> when a non-<code>.rb</code> file uses <code>require_relative</code> with its own basename. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15137">#15137</a>: Fix incorrect &quot;does not support IndentationWidth parameter&quot; warning for <code>Layout/ClosingParenthesisIndentation</code> and <code>Layout/CommentIndentation</code>. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15148">#15148</a>: Fix false positives in <code>Lint/RedundantSafeNavigation</code> when safe navigation appears in <code>rescue</code> or <code>ensure</code> bodies. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15147">#15147</a>: Fix false positives in <code>Lint/RedundantSafeNavigation</code> when safe navigation appears in the body of <code>unless</code>. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/15163">#15163</a>: Fix false positives in <code>Style/Copyright</code> when <code>Notice</code> pattern starts with <code>\A#</code>, uses <code>\s</code> metacharacters, or has multiple spaces after <code>#</code>. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/10179">#10179</a>: Fix false positives in <code>Style/DocumentDynamicEvalDefinition</code> when the heredoc contains an escaped interpolation (<code>\#{...}</code>). ([<a href="https://github.com/eyupcanakman"><code>@​eyupcanakman</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/15154">#15154</a>: Fix bug where specifying <code>--out</code> disables parallelization. ([<a href="https://github.com/deivid-rodriguez"><code>@​deivid-rodriguez</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15106">#15106</a>: Fix <code>TargetFinder</code> to work correctly inside hidden parent directories. ([<a href="https://github.com/alpaca-tc"><code>@​alpaca-tc</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15102">#15102</a>: Fix <code>FrozenError</code> in <code>DisabledConfigFormatter</code> for frozen array config parameters. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/pull/15141">#15141</a>: Fix incorrect autocorrect for <code>Gemspec/RequireMFA</code> causing an infinite loop when <code>rubygems_mfa_required</code> metadata uses a symbol key. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15142">#15142</a>: Fix infinite loop for <code>--disable-uncorrectable</code> and offense near heredoc. ([<a href="https://github.com/jonas054"><code>@​jonas054</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15054">#15054</a>: Fix false positive for <code>Layout/MultilineMethodCallIndentation</code> when a dot-aligned method chain is inside a hash pair value. ([<a href="https://github.com/nicolas-finary"><code>@​nicolas-finary</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15136">#15136</a>: Fix false positive for <code>Lint/MissingCopEnableDirective</code> when <code># rubocop:disable</code> is wrapped in a <code># rubocop:push</code> / <code># rubocop:pop</code> block. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15115">#15115</a>: Fix an incorrect autocorrect in <code>Style/RegexpLiteral</code> when the regexp contains unbalanced braces that conflict with the preferred <code>%r</code> delimiters. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/15130">#15130</a>: Fix incorrect autocorrect in <code>Style/Copyright</code> when <code>AutocorrectNotice</code> lacks a <code>#</code> prefix or <code>Notice</code> pattern starts with <code>^#</code>. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14821">#14821</a>: Fix <code>Style/IfInsideElse</code> autocorrect moving comments into the wrong branch when a comment precedes the nested <code>if</code> in an <code>else</code>. ([<a href="https://github.com/hammadxcm"><code>@​hammadxcm</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14583">#14583</a>: Fix template extractor applying only the last fragment's autocorrection. ([<a href="https://github.com/zeronosu77108"><code>@​zeronosu77108</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop/issues/14971">#14971</a>: Fix false positive for <code>Style/WhileUntilModifier</code> when the body is a conditional. ([<a href="https://github.com/fujitanisora"><code>@​fujitanisora</code></a>][])</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rubocop/rubocop/commit/e513d333754b242c5b530192be0239638055acaf"><code>e513d33</code></a> Cut 1.86.2</li> <li><a href="https://github.com/rubocop/rubocop/commit/5fea1b52a1e4cbd2da0a071a1e3456de0a69141c"><code>5fea1b5</code></a> Update Changelog</li> <li><a href="https://github.com/rubocop/rubocop/commit/2a3dfcd230ecd97824c9f10d995a471449cba8a9"><code>2a3dfcd</code></a> Don't use Registry#to_h</li> <li><a href="https://github.com/rubocop/rubocop/commit/836b2751937092f20940fc20cf01e60c16fb4a05"><code>836b275</code></a> Simplify registry internals</li> <li><a href="https://github.com/rubocop/rubocop/commit/90348d5c70e3986d51dc4943615a0a846b6d260c"><code>90348d5</code></a> Fix false positives in <code>Style/Copyright</code></li> <li><a href="https://github.com/rubocop/rubocop/commit/7419163797ba5908ce0fd4cd6a0a47eaf005e632"><code>7419163</code></a> Fix extension suggestion documentation link</li> <li><a href="https://github.com/rubocop/rubocop/commit/e4673357d34fad1f10e8f84e0dbcb9a19d34e331"><code>e467335</code></a> Merge pull request <a href="https://redirect.github.com/rubocop/rubocop/issues/15161">#15161</a> from koic/fix_an_error_for_style_reduce_to_hash.md</li> <li><a href="https://github.com/rubocop/rubocop/commit/bd48b6b2b2c58ec1195780ec1c25fc75dd855a85"><code>bd48b6b</code></a> Merge pull request <a href="https://redirect.github.com/rubocop/rubocop/issues/15160">#15160</a> from lovro-bikic/autoload-mixins</li> <li><a href="https://github.com/rubocop/rubocop/commit/b9cda613a6194dbbf146c999c03fbaee7b0a2178"><code>b9cda61</code></a> Autoload mixins instead of requiring them</li> <li><a href="https://github.com/rubocop/rubocop/commit/55a827814ae5ab00d2d4bb6810a9bb6c651da471"><code>55a8278</code></a> Fix an error for <code>Style/ReduceToHash</code> cop</li> <li>Additional commits viewable in <a href="https://github.com/rubocop/rubocop/compare/v1.86.1...v1.86.2">compare view</a></li> </ul> </details> <br /> Updates `rubocop-rails` from 2.35.0 to 2.35.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rubocop/rubocop-rails/releases">rubocop-rails's releases</a>.</em></p> <blockquote> <h2>RuboCop Rails v2.35.1</h2> <h3>Bug fixes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop-rails/pull/1616">#1616</a>: Fix false positives in <code>Rails/StrongParametersExpect</code> when using nil-safe conversion methods such as <code>to_i</code>, <code>to_s</code>, <code>to_a</code>, <code>to_f</code>, and <code>to_h</code> on <code>params[:key]</code>. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop-rails/issues/1622">#1622</a>: Fix false positives in <code>Rails/StrongParametersExpect</code> when using key-check methods such as <code>key?</code>, <code>has_key?</code>, <code>include?</code>, and <code>member?</code> on <code>params[:key]</code>. (<a href="https://github.com/koic"><code>@​koic</code></a>)</li> <li><a href="https://redirect.github.com/rubocop/rubocop-rails/issues/1620">#1620</a>: Fix false positives in <code>Rails/StrongParametersExpect</code> when using type-check methods such as <code>is_a?</code>, <code>kind_of?</code>, and <code>instance_of?</code> on <code>params[:key]</code>. (<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-rails/blob/master/CHANGELOG.md">rubocop-rails's changelog</a>.</em></p> <blockquote> <h2>2.35.1 (2026-05-17)</h2> <h3>Bug fixes</h3> <ul> <li><a href="https://redirect.github.com/rubocop/rubocop-rails/pull/1616">#1616</a>: Fix false positives in <code>Rails/StrongParametersExpect</code> when using nil-safe conversion methods such as <code>to_i</code>, <code>to_s</code>, <code>to_a</code>, <code>to_f</code>, and <code>to_h</code> on <code>params[:key]</code>. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop-rails/issues/1622">#1622</a>: Fix false positives in <code>Rails/StrongParametersExpect</code> when using key-check methods such as <code>key?</code>, <code>has_key?</code>, <code>include?</code>, and <code>member?</code> on <code>params[:key]</code>. ([<a href="https://github.com/koic"><code>@​koic</code></a>][])</li> <li><a href="https://redirect.github.com/rubocop/rubocop-rails/issues/1620">#1620</a>: Fix false positives in <code>Rails/StrongParametersExpect</code> when using type-check methods such as <code>is_a?</code>, <code>kind_of?</code>, and <code>instance_of?</code> on <code>params[:key]</code>. ([<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-rails/commit/8bfc91ebc5b029862b05b64aaf562e25f1cbf962"><code>8bfc91e</code></a> Cut 2.35.1</li> <li><a href="https://github.com/rubocop/rubocop-rails/commit/90f8242ba055d5509699d8db207ae12cfad570c7"><code>90f8242</code></a> Update Changelog</li> <li><a href="https://github.com/rubocop/rubocop-rails/commit/13463102d55cd6494aea1f5da0b42b6025bbce1d"><code>1346310</code></a> Merge pull request <a href="https://redirect.github.com/rubocop/rubocop-rails/issues/1624">#1624</a> from koic/fix_false_positives_for_rails_strong_param...</li> <li><a href="https://github.com/rubocop/rubocop-rails/commit/64422a90b5e8a0d2f92fddf53118f8eb3fe6abce"><code>64422a9</code></a> [Fix <a href="https://redirect.github.com/rubocop/rubocop-rails/issues/1622">#1622</a>] Fix false positives in <code>Rails/StrongParametersExpect</code></li> <li><a href="https://github.com/rubocop/rubocop-rails/commit/9524ba17033f3850c01e5fa96913121526480c83"><code>9524ba1</code></a> Merge pull request <a href="https://redirect.github.com/rubocop/rubocop-rails/issues/1623">#1623</a> from koic/fix_false_positives_for_rails_strong_param...</li> <li><a href="https://github.com/rubocop/rubocop-rails/commit/4832b2d8529aa13c6272a6172076ef2a5bc687ed"><code>4832b2d</code></a> [Fix <a href="https://redirect.github.com/rubocop/rubocop-rails/issues/1620">#1620</a>] Fix false positives in <code>Rails/StrongParametersExpect</code></li> <li><a href="https://github.com/rubocop/rubocop-rails/commit/e18a76bdaec289edb5f87e5c9922bd8e8f0c074a"><code>e18a76b</code></a> Merge pull request <a href="https://redirect.github.com/rubocop/rubocop-rails/issues/1616">#1616</a> from koic/fix_false_positives_in_rails_strong_parame...</li> <li><a href="https://github.com/rubocop/rubocop-rails/commit/cf52bef4e4fbd97cab1eabdee42d13805071df5b"><code>cf52bef</code></a> [Fix <a href="https://redirect.github.com/rubocop/rubocop-rails/issues/1618">#1618</a>] Update the doc of <code>Rails/RedundantActiveRecordAllMethod</code></li> <li><a href="https://github.com/rubocop/rubocop-rails/commit/3f317b7b19f49b41a6f5f95e268d470a2c673dfd"><code>3f317b7</code></a> Fix false positives in <code>Rails/StrongParametersExpect</code></li> <li><a href="https://github.com/rubocop/rubocop-rails/commit/6e2e110b0bbdbb4be61c717bf5744b92f4cb48d6"><code>6e2e110</code></a> Reset the docs version</li> <li>See full diff in <a href="https://github.com/rubocop/rubocop-rails/compare/v2.35.0...v2.35.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 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>
2 parents c8695f6 + e50f0c0 commit d179bfc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ GEM
8484
diff-lcs (>= 1.2.0, < 2.0)
8585
rspec-support (~> 3.13.0)
8686
rspec-support (3.13.6)
87-
rubocop (1.86.1)
87+
rubocop (1.86.2)
8888
json (~> 2.3)
8989
language_server-protocol (~> 3.17.0.2)
9090
lint_roller (~> 1.1.0)
@@ -106,7 +106,7 @@ GEM
106106
lint_roller (~> 1.1)
107107
rubocop (>= 1.75.0, < 2.0)
108108
rubocop-ast (>= 1.47.1, < 2.0)
109-
rubocop-rails (2.35.0)
109+
rubocop-rails (2.35.1)
110110
activesupport (>= 4.2.0)
111111
lint_roller (~> 1.1)
112112
rack (>= 1.1)

0 commit comments

Comments
 (0)