Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump rubocop from 1.56.3 to 1.65.0 #816

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 11, 2024

Bumps rubocop from 1.56.3 to 1.65.0.

Release notes

Sourced from rubocop's releases.

RuboCop 1.65

New features

Bug fixes

  • #12954: Fix a false negative for Style/ArgumentsForwarding when arguments forwarding in yield. (@​koic)
  • #13033: Fix a false positive for Layout/SpaceAroundOperators when using multiple spaces between an operator and a tailing comment. (@​koic)
  • #12885: Fix a false positive for Lint/ToEnumArguments when enumerator is created for another method. (@​koic)
  • #13018: Fix a false positive for Style/MethodCallWithArgsParentheses when EnforcedStyle: omit_parentheses is set and parenthesized method call is used before constant resolution. (@​koic)
  • #12986: Fix a false positive for Style/RedundantBegin when endless method definition with rescue. (@​koic)
  • #12985: Fix an error for Style/RedundantRegexpCharacterClass when using regexp_parser gem 2.3.1 or older. (@​koic)
  • #13010: Fix an error for Style/SuperArguments when the hash argument is or-assigned. (@​koic)
  • #13023: Fix an error for Style/SymbolProc when using lambda -> with one argument and multiline do...end block. (@​koic)
  • #12989: Fix an error for the inherit_gem config when the Gemfile contains an uninstalled git gem. (@​earlopain)
  • #12975: Fix an error for the inherit_gem config when running RuboCop without bundler and no Gemfile exists. (@​earlopain)
  • #12997: Fix an error for Lint/UnmodifiedReduceAccumulator when the block is empty. (@​earlopain)
  • #12979: Fix false negatives for Lint/Void when void expression with guard clause is not on last line. (@​koic)
  • #12716: Fix false negatives for Lint/Void when using parenthesized void operators. (@​koic)
  • #12471: Fix false negatives for Style/ZeroLengthPredicate when using safe navigation operator. (@​koic)
  • #12960: Fix false positives for Lint/NestedMethodDefinition when definition of method on variable. (@​koic)
  • #13012: Fix false positives for Style/HashExcept when using reject and calling include? method with bang. (@​koic)
  • #12983: Fix false positives for Style/SendWithLiteralMethodName using send with writer method name. (@​koic)
  • #12957: Fix false positives for Style/SuperArguments when calling super in a block. (@​koic)

Changes

  • #12970: Add CountModifierForms option to Metrics/BlockNesting and set it to false by default. (@​koic)
  • #13032: Display warning messages for deprecated APIs. (@​koic)
  • #13031: Enable YJIT by default in server mode. (@​koic)
  • #12557: Make server mode aware of auto-restart for bundle update. (@​koic)
  • #12616: Make Style/MapCompactWithConditionalBlock aware of filter_map. (@​koic)
  • #13035: Support autocorrect for Lint/ImplicitStringConcatenation. (@​koic)

RuboCop 1.64.1

Bug fixes

  • #12951: Fix an error for Style/Copyright when AutocorrectNotice is missing. (@​koic)
  • #12932: Fix end position of diagnostic for LSP. (@​ksss)
  • #12926: Fix a false positive for Style/SuperArguments when the methods block argument is reassigned before super. (@​earlopain)
  • #12931: Fix false positives for Style/RedundantLineContinuation when line continuations involve break, next, or yield with a return value. (@​koic)
  • #12924: Fix false positives for Style/SendWithLiteralMethodName when public_send argument is a method name that cannot be autocorrected. (@​koic)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.65.0 (2024-07-10)

New features

Bug fixes

  • #12954: Fix a false negative for Style/ArgumentsForwarding when arguments forwarding in yield. ([@​koic][])
  • #13033: Fix a false positive for Layout/SpaceAroundOperators when using multiple spaces between an operator and a tailing comment. ([@​koic][])
  • #12885: Fix a false positive for Lint/ToEnumArguments when enumerator is created for another method. ([@​koic][])
  • #13018: Fix a false positive for Style/MethodCallWithArgsParentheses when EnforcedStyle: omit_parentheses is set and parenthesized method call is used before constant resolution. ([@​koic][])
  • #12986: Fix a false positive for Style/RedundantBegin when endless method definition with rescue. ([@​koic][])
  • #12985: Fix an error for Style/RedundantRegexpCharacterClass when using regexp_parser gem 2.3.1 or older. ([@​koic][])
  • #13010: Fix an error for Style/SuperArguments when the hash argument is or-assigned. ([@​koic][])
  • #13023: Fix an error for Style/SymbolProc when using lambda -> with one argument and multiline do...end block. ([@​koic][])
  • #12989: Fix an error for the inherit_gem config when the Gemfile contains an uninstalled git gem. ([@​earlopain][])
  • #12975: Fix an error for the inherit_gem config when running RuboCop without bundler and no Gemfile exists. ([@​earlopain][])
  • #12997: Fix an error for Lint/UnmodifiedReduceAccumulator when the block is empty. ([@​earlopain][])
  • #12979: Fix false negatives for Lint/Void when void expression with guard clause is not on last line. ([@​koic][])
  • #12716: Fix false negatives for Lint/Void when using parenthesized void operators. ([@​koic][])
  • #12471: Fix false negatives for Style/ZeroLengthPredicate when using safe navigation operator. ([@​koic][])
  • #12960: Fix false positives for Lint/NestedMethodDefinition when definition of method on variable. ([@​koic][])
  • #13012: Fix false positives for Style/HashExcept when using reject and calling include? method with bang. ([@​koic][])
  • #12983: Fix false positives for Style/SendWithLiteralMethodName using send with writer method name. ([@​koic][])
  • #12957: Fix false positives for Style/SuperArguments when calling super in a block. ([@​koic][])

Changes

  • #12970: Add CountModifierForms option to Metrics/BlockNesting and set it to false by default. ([@​koic][])
  • #13032: Display warning messages for deprecated APIs. ([@​koic][])
  • #13031: Enable YJIT by default in server mode. ([@​koic][])
  • #12557: Make server mode aware of auto-restart for bundle update. ([@​koic][])
  • #12616: Make Style/MapCompactWithConditionalBlock aware of filter_map. ([@​koic][])
  • #13035: Support autocorrect for Lint/ImplicitStringConcatenation. ([@​koic][])

1.64.1 (2024-05-31)

Bug fixes

  • #12951: Fix an error for Style/Copyright when AutocorrectNotice is missing. ([@​koic][])
  • #12932: Fix end position of diagnostic for LSP. ([@​ksss][])
  • #12926: Fix a false positive for Style/SuperArguments when the methods block argument is reassigned before super. ([@​earlopain][])
  • #12931: Fix false positives for Style/RedundantLineContinuation when line continuations involve break, next, or yield with a return value. ([@​koic][])
  • #12924: Fix false positives for Style/SendWithLiteralMethodName when public_send argument is a method name that cannot be autocorrected. ([@​koic][])

1.64.0 (2024-05-23)

New features

... (truncated)

Commits
  • 28786cf Cut 1.65
  • b20355f Update Changelog
  • f3b368a [Fix #13035] Support autocorrect for Lint/ImplicitStringConcatenation
  • 357ff41 Merge pull request #13034 from koic/fix_a_false_positive_for_layout_space_aro...
  • 3395b6a [Fix #13033] Fix a false positive for Layout/SpaceAroundOperators
  • a71c653 Enable YJIT by default in server mode
  • 2d332e9 Display warning messages for deprecated APIs
  • 9872bca Use Regexp#match?
  • 961ca82 [Docs] Prioritize using add_dependency over add_runtime_dependency in exa...
  • ce3d448 Add new Gemspec/AddRuntimeDependency cop
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

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)

Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.56.3 to 1.65.0.
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.56.3...v1.65.0)

---
updated-dependencies:
- dependency-name: rubocop
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Dependency updates label Jul 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Dependency updates
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants