Skip to content

chore(deps-dev): bump rubocop from 0.66.0 to 1.63.3 - #25

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

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

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 22, 2024

Copy link
Copy Markdown
Contributor

Bumps rubocop from 0.66.0 to 1.63.3.

Release notes

Sourced from rubocop's releases.

RuboCop 1.63.2

Bug fixes

  • #12843: Fix an error for Lint/MixedCaseRange when a character between Z and a is used in the regexp range. (@鈥媖oic)
  • #12846: Fix an error for RuboCop::Lockfile when there is no Bundler environment. (@鈥媖oic)
  • #12832: Fix an error for Style/ArgumentsForwarding when using block arg in nested method definitions. (@鈥媖oic)
  • #12841: Fix false negatives for Lint/UnreachableLoop when using pattern matching. (@鈥媖oic)
  • #12835: Allow global offenses to be disabled by directive comments. (@鈥媏arlopain)

Changes

  • #12845: Exclude debug/open_nonstop from Lint/Debugger by default. (@鈥媖oic)

RuboCop 1.63.1

Bug fixes

  • #12828: Fix a false positive for Lint/AssignmentInCondition if assigning inside a method call. (@鈥媏arlopain)
  • #12823: Fixed "uninitialized constant RuboCop::Lockfile::Bundler", caused when running RuboCop without bundler exec on codebases that use rubocop-rails. (@鈥媋momchilov)

RuboCop 1.63

New features

Bug fixes

  • #12769: Fix a false positive for Lint/RedundantWithIndex when calling with_index with receiver and a block. (@鈥媖oic)
  • #12547: Added a comment recommending upgrading to the latest version of Rubocop in the error text when an Infinite loop detected error occurs. ([@鈥婬iroto-Iizuka][])
  • #12782: Fix an error for Style/Alias with EnforcedStyle: prefer_alias when calling alias_method with fewer than 2 arguments. (@鈥媏arlopain)
  • #12781: Fix an error for Style/ExactRegexpMatch when calling match without a receiver. (@鈥媏arlopain)
  • #12780: Fix an error for Style/RedundantEach when using reverse_each.each without a block. (@鈥媏arlopain)
  • #12731: Treat &. the same way as . for setter methods in Lint/AssignmentInCondition. ([@鈥媕onas054][])
  • #12793: Fix false positives for Style/RedundantLineContinuation when using line continuation with modifier. (@鈥媖oic)
  • #12807: Fix false positives for Naming/BlockForwarding when using explicit block forwarding in block method and others. (@鈥媖oic)
  • #12796: Fix false positives for Style/EvalWithLocation when using eval with a line number from a method call or a variable. (@鈥媖oic)
  • #12794: Fix false positives for Style/RedundantArgument when when single-quoted strings for cntrl character. (@鈥媖oic)
  • #12797: Fix false positives for Style/RedundantLineContinuation when using line continuations with && or || operator in assignment. (@鈥媖oic)
  • #12793: Fix false positives for Style/RedundantLineContinuation when multi-line continuations with operators. (@鈥媖oic)
  • #12801: Fix incorrect autocorrect for Style/CollectionCompact when using delete_if. (@鈥媖oic)
  • #12789: Make Style/RedundantPercentQ safe on multiline strings. ([@鈥媌oardfish][])
  • #12802: Return global offenses for Naming/FileName and Naming/InclusiveLanguage for empty files. (@鈥媏arlopain)
  • #12804: Return global offenses for Style/Copyright when the file is empty. (@鈥媏arlopain)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.63.3 (2024-04-22)

Bug fixes

  • #12857: Fix false negatives for Lint/UnreachableCode when using pattern matching. ([@鈥媖oic][])
  • #12852: Fix an error for Lint/EmptyFile in formatters when using cache. ([@鈥媏arlopain][])
  • #12848: Fix an error that occurs in RuboCop::Lockfile when the constant Bundler is uninitialized. ([@鈥媖oic][])

Changes

1.63.2 (2024-04-16)

Bug fixes

  • #12843: Fix an error for Lint/MixedCaseRange when a character between Z and a is used in the regexp range. ([@鈥媖oic][])
  • #12846: Fix an error for RuboCop::Lockfile when there is no Bundler environment. ([@鈥媖oic][])
  • #12832: Fix an error for Style/ArgumentsForwarding when using block arg in nested method definitions. ([@鈥媖oic][])
  • #12841: Fix false negatives for Lint/UnreachableLoop when using pattern matching. ([@鈥媖oic][])
  • #12835: Allow global offenses to be disabled by directive comments. ([@鈥媏arlopain][])

Changes

  • #12845: Exclude debug/open_nonstop from Lint/Debugger by default. ([@鈥媖oic][])

1.63.1 (2024-04-10)

Bug fixes

  • #12828: Fix a false positive for Lint/AssignmentInCondition if assigning inside a method call. ([@鈥媏arlopain][])
  • #12823: Fixed "uninitialized constant RuboCop::Lockfile::Bundler", caused when running RuboCop without bundler exec on codebases that use rubocop-rails. ([@鈥媋momchilov][])

1.63.0 (2024-04-08)

New features

Bug fixes

  • #12769: Fix a false positive for Lint/RedundantWithIndex when calling with_index with receiver and a block. ([@鈥媖oic][])
  • #12547: Added a comment recommending upgrading to the latest version of Rubocop in the error text when an Infinite loop detected error occurs. ([@鈥婬iroto-Iizuka][])
  • #12782: Fix an error for Style/Alias with EnforcedStyle: prefer_alias when calling alias_method with fewer than 2 arguments. ([@鈥媏arlopain][])
  • #12781: Fix an error for Style/ExactRegexpMatch when calling match without a receiver. ([@鈥媏arlopain][])
  • #12780: Fix an error for Style/RedundantEach when using reverse_each.each without a block. ([@鈥媏arlopain][])
  • #12731: Treat &. the same way as . for setter methods in Lint/AssignmentInCondition. ([@鈥媕onas054][])
  • #12793: Fix false positives for Style/RedundantLineContinuation when using line continuation with modifier. ([@鈥媖oic][])
  • #12807: Fix false positives for Naming/BlockForwarding when using explicit block forwarding in block method and others. ([@鈥媖oic][])

... (truncated)

Commits
  • a10fbef Cut 1.63.3
  • 21893ac Update Changelog
  • a35ef47 Make InternalAffairs/ExampleDescription aware of an improper description
  • 5706ac0 Remove redundant braces in a few uses of def_node_matcher
  • f1a748b Fix false negatives for Lint/UnreachableCode
  • c30838d [Fix #12848] Fix an error for RuboCop::Lockfile
  • 74037d9 Set custom program name for the built-in LSP server
  • dd47fa8 Merge pull request #12856 from koic/workaround_for_prism_0_26
  • 245b8cc Workaround for incompatibilities between Prism 0.25.0 and 0.26.0
  • d86b8d1 Merge pull request #12853 from Earlopain/global-offense-cache
  • 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.63.3.
- [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.63.3)

---
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 Apr 22, 2024
@dependabot @github

dependabot Bot commented on behalf of github Apr 29, 2024

Copy link
Copy Markdown
Contributor Author

Superseded by #26.

@dependabot dependabot Bot closed this Apr 29, 2024
@dependabot
dependabot Bot deleted the dependabot/bundler/rubocop-1.63.3 branch April 29, 2024 20:05
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