Skip to content

chore(deps-dev): bump rubocop from 0.66.0 to 1.62.1 - #19

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/bundler/rubocop-1.62.1
Closed

chore(deps-dev): bump rubocop from 0.66.0 to 1.62.1#19
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/bundler/rubocop-1.62.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Mar 11, 2024

Copy link
Copy Markdown
Contributor

Bumps rubocop from 0.66.0 to 1.62.1.

Release notes

Sourced from rubocop's releases.

RuboCop 1.62.1

Bug fixes

  • #12761: Fix a false positive for Style/HashEachMethods when the key block argument of Enumerable#each method is unused after chunk. (@鈥媖oic)
  • #12768: Fix a false positive for Style/NilComparison without receiver and EnforcedStyle: comparison. (@鈥媏arlopain)
  • #12752: Fix an error for Gemspec/RequiredRubyVersion when the file is empty. (@鈥媏arlopain)
  • #12770: Fix an error for Lint/RedundantWithIndex when the method has no receiver. (@鈥媏arlopain)
  • #12775: Fix an error for Lint/UselessTimes when no block is present. (@鈥媏arlopain)
  • #12772: Fix an error for Style/ClassVars when calling class_variable_set without arguments. (@鈥媏arlopain)
  • #12773: Fix an error for Style/For with EnforcedStyle: for when no receiver. (@鈥媏arlopain)
  • #12765: Fix an error for Layout/MultilineMethodCallIndentation with safe navigation and assignment method. (@鈥媏arlopain)
  • #12703: Fix an error for Lint/MixedCaseRange with invalid byte sequence in UTF-8. (@鈥媏arlopain)
  • #12755: Fix an exception for RedundantCurrentDirectoryInPath in case of require_relative without arguments. (@鈥媣iralpraxis)
  • #12710: Fix a false negative for Layout/EmptyLineAfterMagicComment when the file is comments only. (@鈥媏arlopain)
  • #12758: Fix false positives for Layout/RedundantLineBreak when using && or || after a backslash newline. (@鈥媖oic)
  • #12763: Fix an infinite loop for Style/MultilineMethodSignature when there is a newline directly after the def keyword. (@鈥媏arlopain)
  • #12774: Fix an infinite loop for Style/RaiseArgs with EnforcedStyle: compact when passing more than 2 arguments to raise. (@鈥媏arlopain)
  • #12663: Fix Lint/Syntax getting disabled by rubocop:disable Lint/Syntax. (@鈥媏arlopain)
  • #12756: Only parse target Ruby from gemspec if array elements are strings. (@鈥媎avidrunger)

Changes

RuboCop 1.62

Note: This is the first RuboCop release that features (experimental) support for using Prism instead of the parser gem. Check out the docs for more details.

See also this article for additional context.

New features

Bug fixes

  • #12746: Fix a false positive for Lint/ToEnumArguments when enumerator is created for another method in no arguments method definition. (@鈥媖oic)
  • #12726: Fix a false positive for Style/RedundantLineContinuation when using line concatenation and calling a method with keyword arguments without parentheses. (@鈥媖oic)
  • #12738: Fix an error for Style/Encoding when magic encoding with mixed case present. (@鈥媖oic)
  • #12732: Fix error determining target Ruby when gemspec required_ruby_version is read from another file. (@鈥媎avidrunger)
  • #12736: Fix invalid autocorrect in Layout/SpaceInsideHashLiteralBraces. ([@鈥媌quorning][])
  • #12667: Don't load excluded configuration. ([@鈥媕onas054][])

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.62.1 (2024-03-11)

Bug fixes

  • #12761: Fix a false positive for Style/HashEachMethods when the key block argument of Enumerable#each method is unused after chunk. ([@鈥媖oic][])
  • #12768: Fix a false positive for Style/NilComparison without receiver and EnforcedStyle: comparison. ([@鈥媏arlopain][])
  • #12752: Fix an error for Gemspec/RequiredRubyVersion when the file is empty. ([@鈥媏arlopain][])
  • #12770: Fix an error for Lint/RedundantWithIndex when the method has no receiver. ([@鈥媏arlopain][])
  • #12775: Fix an error for Lint/UselessTimes when no block is present. ([@鈥媏arlopain][])
  • #12772: Fix an error for Style/ClassVars when calling class_variable_set without arguments. ([@鈥媏arlopain][])
  • #12773: Fix an error for Style/For with EnforcedStyle: for when no receiver. ([@鈥媏arlopain][])
  • #12765: Fix an error for Layout/MultilineMethodCallIndentation with safe navigation and assignment method. ([@鈥媏arlopain][])
  • #12703: Fix an error for Lint/MixedCaseRange with invalid byte sequence in UTF-8. ([@鈥媏arlopain][])
  • #12755: Fix an exception for RedundantCurrentDirectoryInPath in case of require_relative without arguments. ([@鈥媣iralpraxis][])
  • #12710: Fix a false negative for Layout/EmptyLineAfterMagicComment when the file is comments only. ([@鈥媏arlopain][])
  • #12758: Fix false positives for Layout/RedundantLineBreak when using && or || after a backslash newline. ([@鈥媖oic][])
  • #12763: Fix an infinite loop for Style/MultilineMethodSignature when there is a newline directly after the def keyword. ([@鈥媏arlopain][])
  • #12774: Fix an infinite loop for Style/RaiseArgs with EnforcedStyle: compact when passing more than 2 arguments to raise. ([@鈥媏arlopain][])
  • #12663: Fix Lint/Syntax getting disabled by rubocop:disable Lint/Syntax. ([@鈥媏arlopain][])
  • #12756: Only parse target Ruby from gemspec if array elements are strings. ([@鈥媎avidrunger][])

Changes

1.62.0 (2024-03-06)

New features

Bug fixes

  • #12746: Fix a false positive for Lint/ToEnumArguments when enumerator is created for another method in no arguments method definition. ([@鈥媖oic][])
  • #12726: Fix a false positive for Style/RedundantLineContinuation when using line concatenation and calling a method with keyword arguments without parentheses. ([@鈥媖oic][])
  • #12738: Fix an error for Style/Encoding when magic encoding with mixed case present. ([@鈥媖oic][])
  • #12732: Fix error determining target Ruby when gemspec required_ruby_version is read from another file. ([@鈥媎avidrunger][])
  • #12736: Fix invalid autocorrect in Layout/SpaceInsideHashLiteralBraces. ([@鈥媌quorning][])
  • #12667: Don't load excluded configuration. ([@鈥媕onas054][])

1.61.0 (2024-02-29)

New features

  • #12682: Add --editor-mode CLI option. ([@鈥媖oic][])
  • #12657: Support AutoCorrect: contextual option for LSP. ([@鈥媖oic][])
  • #12273: Make OffenseCountFormatter display autocorrection information. ([@鈥媖oic][])
  • #12679: Publish RuboCop::LSP.enable API to enable LSP mode. ([@鈥媖oic][])
  • #12699: Support searching for .rubocop.yml and rubocop/config.yml in compliance with dot-config. ([@鈥媖oic][])

... (truncated)

Commits
  • ed9b69e Cut 1.62.1
  • a99fe78 Update Changelog
  • eceedb7 Fix an error for Lint/UselessTimes when no block is present
  • 8d2ef48 Fix an infinite loop for Style/RaiseArgs with EnforcedStyle: compact when...
  • bb0dd97 Merge pull request #12771 from Earlopain/node-matcher-directive-followup
  • 9b39a55 Merge pull request #12773 from Earlopain/fix-error-for-style-for
  • 409c5a0 Merge pull request #12772 from Earlopain/fix-error-for-style-class-vars
  • 54dbee1 Fix an error for Style/For with EnforcedStyle: for when no receiver
  • 94c17b8 Fix an error for Style/ClassVars when calling class_variable_set without ...
  • 5ee786d Merge pull request #12770 from Earlopain/fix-an-error-for-lint-redundant-with...
  • 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 0.66.0 to 1.62.1.
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v0.66.0...v1.62.1)

---
updated-dependencies:
- dependency-name: rubocop
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Mar 11, 2024
@dependabot @github

dependabot Bot commented on behalf of github Apr 8, 2024

Copy link
Copy Markdown
Contributor Author

Superseded by #22.

@dependabot dependabot Bot closed this Apr 8, 2024
@dependabot
dependabot Bot deleted the dependabot/bundler/rubocop-1.62.1 branch April 8, 2024 20:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants