mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.42.0 to 1.43.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.43</h2> <h3>New features</h3> <ul> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11359">#11359</a>: Add new <code>Lint/UselessRescue</code> cop. (<a href="https://github.com/fatkodima"><code>@fatkodima</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11389">#11389</a>: Add autocorrect for <code>Style/MissingElse</code>. (<a href="https://github.com/FnControlOption"><code>@FnControlOption</code></a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11386">#11386</a>: Fix a false positive for <code>Style/OperatorMethodCall</code> when using anonymous forwarding. (<a href="https://github.com/koic"><code>@koic</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11409">#11409</a>: Fix an incorrect autocorrect for <code>Style/HashSyntax</code> when using hash value omission and <code>EnforcedStyle: no_mixed_keys</code>. (<a href="https://github.com/koic"><code>@koic</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11405">#11405</a>: Fix undefined method `range_between' for Style/WhileUntilModifier. (<a href="https://github.com/such"><code>@such</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11374">#11374</a>: Fix an error for <code>Style/StringHashKeys</code> when using invalid symbol in encoding UTF-8 as keys. (<a href="https://github.com/koic"><code>@koic</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11392">#11392</a>: Fix an incorrect autocorrect for <code>Style/RedundantDoubleSplatHashBraces</code> using double splat in double splat hash braces. (<a href="https://github.com/koic"><code>@koic</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/8990">#8990</a>: Make <code>Style/HashEachMethods</code> aware of built-in <code>Thread.current</code>. (<a href="https://github.com/koic"><code>@koic</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11390">#11390</a>: Fix an incorrect autocorrect for <code>Style/HashSyntax</code> when hash first argument key and hash value only are the same which has a method call on the next line. (<a href="https://github.com/koic"><code>@koic</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11379">#11379</a>: Fix a false negative for <code>Style/OperatorMethodCall</code> when using <code>a.+ b.something</code>. (<a href="https://github.com/koic"><code>@koic</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11180">#11180</a>: Fix an error for <code>Style/RedundantRegexpEscape</code> when using <code>%r</code> to provide regexp expressions. (<a href="https://github.com/si-lens"><code>@si-lens</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11403">#11403</a>: Fix bad offense for parenthesised calls in literals for <code>omit_parentheses</code> style in <code>Style/MethodCallWithArgsParentheses</code>. (<a href="https://github.com/gsamokovarov"><code>@gsamokovarov</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11407">#11407</a>: Fix an error for <code>Style/HashSyntax</code> when expression follows hash key assignment. (<a href="https://github.com/fatkodima"><code>@fatkodima</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11377">#11377</a>: Fix <code>Style/OperatorMethodCall</code> when forwarding arguments. (<a href="https://github.com/sambostock"><code>@sambostock</code></a>)</li> </ul> <h3>Changes</h3> <ul> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11382">#11382</a>: Require <code>unicode-display_width</code> 2.4.0 or higher. (<a href="https://github.com/fatkodima"><code>@fatkodima</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11381">#11381</a>: Require Parser 3.2.0.0 or higher. (<a href="https://github.com/koic"><code>@koic</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11380">#11380</a>: Disable <code>Style/YodaExpression</code> by default. (<a href="https://github.com/koic"><code>@koic</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11303">#11303</a>: Make <code>Metrics/ParameterLists</code> aware of <code>Struct.new</code> and <code>Data.define</code> blocks. (<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.43.0 (2023-01-10)</h2> <h3>New features</h3> <ul> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11359">#11359</a>: Add new <code>Lint/UselessRescue</code> cop. ([<a href="https://github.com/fatkodima"><code>@fatkodima</code></a>][])</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11389">#11389</a>: Add autocorrect for <code>Style/MissingElse</code>. ([<a href="https://github.com/FnControlOption"><code>@FnControlOption</code></a>][])</li> </ul> <h3>Bug fixes</h3> <ul> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11386">#11386</a>: Fix a false positive for <code>Style/OperatorMethodCall</code> when using anonymous forwarding. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11409">#11409</a>: Fix an incorrect autocorrect for <code>Style/HashSyntax</code> when using hash value omission and <code>EnforcedStyle: no_mixed_keys</code>. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11405">#11405</a>: Fix undefined method `range_between' for Style/WhileUntilModifier. ([<a href="https://github.com/such"><code>@such</code></a>][])</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11374">#11374</a>: Fix an error for <code>Style/StringHashKeys</code> when using invalid symbol in encoding UTF-8 as keys. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11392">#11392</a>: Fix an incorrect autocorrect for <code>Style/RedundantDoubleSplatHashBraces</code> using double splat in double splat hash braces. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/8990">#8990</a>: Make <code>Style/HashEachMethods</code> aware of built-in <code>Thread.current</code>. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11390">#11390</a>: Fix an incorrect autocorrect for <code>Style/HashSyntax</code> when hash first argument key and hash value only are the same which has a method call on the next line. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11379">#11379</a>: Fix a false negative for <code>Style/OperatorMethodCall</code> when using <code>a.+ b.something</code>. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11180">#11180</a>: Fix an error for <code>Style/RedundantRegexpEscape</code> when using <code>%r</code> to provide regexp expressions. ([<a href="https://github.com/si-lens"><code>@si-lens</code></a>][])</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11403">#11403</a>: Fix bad offense for parenthesised calls in literals for <code>omit_parentheses</code> style in <code>Style/MethodCallWithArgsParentheses</code>. ([<a href="https://github.com/gsamokovarov"><code>@gsamokovarov</code></a>][])</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11407">#11407</a>: Fix an error for <code>Style/HashSyntax</code> when expression follows hash key assignment. ([<a href="https://github.com/fatkodima"><code>@fatkodima</code></a>][])</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11377">#11377</a>: Fix <code>Style/OperatorMethodCall</code> when forwarding arguments. ([<a href="https://github.com/sambostock"><code>@sambostock</code></a>][])</li> </ul> <h3>Changes</h3> <ul> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11382">#11382</a>: Require <code>unicode-display_width</code> 2.4.0 or higher. ([<a href="https://github.com/fatkodima"><code>@fatkodima</code></a>][])</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11381">#11381</a>: Require Parser 3.2.0.0 or higher. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/pull/11380">#11380</a>: Disable <code>Style/YodaExpression</code> by default. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li> <li><a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11303">#11303</a>: Make <code>Metrics/ParameterLists</code> aware of <code>Struct.new</code> and <code>Data.define</code> blocks. ([<a href="https://github.com/koic"><code>@koic</code></a>][])</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="c3111370dc"><code>c311137</code></a> Cut 1.43</li> <li><a href="d1e7287ccc"><code>d1e7287</code></a> Update Changelog</li> <li><a href="2f298928fa"><code>2f29892</code></a> Add autocorrect for <code>Style/MissingElse</code></li> <li><a href="73a412159e"><code>73a4121</code></a> [Fix <a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11303">#11303</a>] Make <code>Metrics/ParameterLists</code> aware of <code>Struct.new</code> and `Data.de...</li> <li><a href="46963bdd49"><code>46963bd</code></a> [Fix <a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11409">#11409</a>] Fix an incorrect autocorrect for <code>Style/HashSyntax</code></li> <li><a href="1e5f19a9af"><code>1e5f19a</code></a> [Fix <a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/8990">#8990</a>] Make <code>Style/HashEachMethods</code> aware of <code>Thread.current</code></li> <li><a href="de30af8572"><code>de30af8</code></a> Fix an error for <code>Style/HashSyntax</code> when expression follows hash key assignment</li> <li><a href="52a448fd97"><code>52a448f</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11406">#11406</a> from sorare/11405</li> <li><a href="1ac1ce70b3"><code>1ac1ce7</code></a> [Fix <a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11405">#11405</a>] Fix Style/WhileUntilModifier with ruby 3.1</li> <li><a href="3ce55d00bd"><code>3ce55d0</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rubocop/rubocop/issues/11403">#11403</a> from gsamokovarov/omit-parentheses-call-with-block-...</li> <li>Additional commits viewable in <a href="https://github.com/rubocop/rubocop/compare/v1.42.0...v1.43.0">compare view</a></li> </ul> </details> <br /> [](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 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>
36 lines
718 B
Plaintext
36 lines
718 B
Plaintext
GEM
|
|
remote: https://rubygems.org/
|
|
specs:
|
|
ast (2.4.2)
|
|
json (2.6.3)
|
|
parallel (1.22.1)
|
|
parser (3.2.0.0)
|
|
ast (~> 2.4.1)
|
|
rainbow (3.1.1)
|
|
regexp_parser (2.6.1)
|
|
rexml (3.2.5)
|
|
rubocop (1.43.0)
|
|
json (~> 2.3)
|
|
parallel (~> 1.10)
|
|
parser (>= 3.2.0.0)
|
|
rainbow (>= 2.2.2, < 4.0)
|
|
regexp_parser (>= 1.8, < 3.0)
|
|
rexml (>= 3.2.5, < 4.0)
|
|
rubocop-ast (>= 1.24.1, < 2.0)
|
|
ruby-progressbar (~> 1.7)
|
|
unicode-display_width (>= 2.4.0, < 3.0)
|
|
rubocop-ast (1.24.1)
|
|
parser (>= 3.1.1.0)
|
|
ruby-progressbar (1.11.0)
|
|
unicode-display_width (2.4.2)
|
|
|
|
PLATFORMS
|
|
arm64-darwin-21
|
|
x86_64-linux
|
|
|
|
DEPENDENCIES
|
|
rubocop
|
|
|
|
BUNDLED WITH
|
|
2.3.14
|