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

Bump rubocop from 0.67.2 to 0.69.0 #399

Closed
wants to merge 1 commit into from

Conversation

dependabot-preview[bot]
Copy link
Contributor

@dependabot-preview dependabot-preview bot commented May 14, 2019

Bumps rubocop from 0.67.2 to 0.69.0.

Release notes

Sourced from rubocop's releases.

RuboCop 0.69

New features

  • Add support for subclassing using Class.new to Lint/InheritException. (@​houli)
  • #6779: Add new cop Style/NegativeUnless that checks for unless with negative condition. (@​tejasbubane)

Bug fixes

  • #6900: Fix Rails/TimeZone autocorrect Time.current to Time.zone.now. (@​vfonic)
  • #6900: Fix Rails/TimeZone to prefer Time.zone.#{method} over other acceptable corrections. (@​vfonic)
  • #7007: Fix Style/BlockDelimiters with braces_for_chaining style false positive, when chaining using safe navigation. (@​Darhazer)
  • #6880: Fix .rubocop file parsing. (@​hoshinotsuyoshi)
  • #5782: Do not autocorrect Lint/UnifiedInteger if TargetRubyVersion < 2.4. (@​lavoiesl)
  • #6387: Prevent Lint/NumberConversion from reporting error with Time/DateTime. (@​tejasbubane)
  • #6980: Fix Style/StringHashKeys to allow string as keys for hash arguments to gsub methods. (@​tejasbubane)
  • #6969: Fix a false positive with block methods in Style/InverseMethods. (@​dduugg)
  • #6729: Handle array spread for change_column_default in Rails/ReversibleMigration cop. (@​tejasbubane)
  • #7033: Fix an error for Layout/EmptyLineAfterGuardClause when guard clause is a ternary operator. (@​koic)

Changes

  • #6945: Drop support for Ruby 2.2. (@​koic)
  • #6945: Set default EnforcedStyle to squiggly option for Layout/IndentHeredoc and auto_detection option is removed. (@​koic)
  • #6945: Set default EnforcedStyle to always option for Style/FrozenStringLiteralComment and when_needed option is removed. (@​koic)
  • #7027: Allow unicode/display_width dependency version 1.6.0. (@​tagliala)

RuboCop 0.68.1

Bug fixes

  • #6993: Allowing for empty if blocks, preventing Style/SafeNavigation from crashing. (@​RicardoTrindade)
  • #6995: Fix an incorrect auto-correct for Style/RedundantParentheses when enclosed in parentheses at while-post or until-post. (@​koic)
  • #6996: Fix a false positive for Style/RedundantFreeze when freezing the result of String#*. ([@​bquorning][])
  • #6998: Fix autocorrect of Naming/RescuedExceptionsVariableName to also rename all references to the variable. (@​Darhazer)
  • #6992: Fix unknown default configuration for Layout/IndentFirstParameter cop. ([@​drenmi][])
  • #6972: Fix a false positive for Style/MixinUsage when using inside block and if condition is after include. (@​koic)
  • #6738: Prevent auto-correct conflict of Style/Next and Style/SafeNavigation. (@​hoshinotsuyoshi)
  • #6847: Fix Style/BlockDelimiters to properly check if the node is chaned when braces_for_chaining is set. ([@​att14][])
... (truncated)
Changelog

Sourced from rubocop's changelog.

0.69.0 (2019-05-13)

New features

  • Add support for subclassing using Class.new to Lint/InheritException. (@​houli)
  • #6779: Add new cop Style/NegativeUnless that checks for unless with negative condition. (@​tejasbubane)
  • #6649: Layout/AlignHash supports list of options. ([@​stoivo][])

Bug fixes

  • #6900: Fix Rails/TimeZone autocorrect Time.current to Time.zone.now. (@​vfonic)
  • #6900: Fix Rails/TimeZone to prefer Time.zone.#{method} over other acceptable corrections. (@​vfonic)
  • #7007: Fix Style/BlockDelimiters with braces_for_chaining style false positive, when chaining using safe navigation. (@​Darhazer)
  • #6880: Fix .rubocop file parsing. (@​hoshinotsuyoshi)
  • #5782: Do not autocorrect Lint/UnifiedInteger if TargetRubyVersion < 2.4. (@​lavoiesl)
  • #6387: Prevent Lint/NumberConversion from reporting error with Time/DateTime. (@​tejasbubane)
  • #6980: Fix Style/StringHashKeys to allow string as keys for hash arguments to gsub methods. (@​tejasbubane)
  • #6969: Fix a false positive with block methods in Style/InverseMethods. (@​dduugg)
  • #6729: Handle array spread for change_column_default in Rails/ReversibleMigration cop. (@​tejasbubane)
  • #7033: Fix an error for Layout/EmptyLineAfterGuardClause when guard clause is a ternary operator. (@​koic)

Changes

  • #6945: Drop support for Ruby 2.2. (@​koic)
  • #6945: Set default EnforcedStyle to squiggly option for Layout/IndentHeredoc and auto_detection option is removed. (@​koic)
  • #6945: Set default EnforcedStyle to always option for Style/FrozenStringLiteralComment and when_needed option is removed. (@​koic)
  • #7027: Allow unicode/display_width dependency version 1.6.0. (@​tagliala)

0.68.1 (2019-04-30)

Bug fixes

  • #6993: Allowing for empty if blocks, preventing Style/SafeNavigation from crashing. (@​RicardoTrindade)
  • #6995: Fix an incorrect auto-correct for Style/RedundantParentheses when enclosed in parentheses at while-post or until-post. (@​koic)
  • #6996: Fix a false positive for Style/RedundantFreeze when freezing the result of String#*. ([@​bquorning][])
  • #6998: Fix autocorrect of Naming/RescuedExceptionsVariableName to also rename all references to the variable. (@​Darhazer)
  • #6992: Fix unknown default configuration for Layout/IndentFirstParameter cop. ([@​drenmi][])
  • #6972: Fix a false positive for Style/MixinUsage when using inside block and if condition is after include. (@​koic)
  • #6738: Prevent auto-correct conflict of Style/Next and Style/SafeNavigation. (@​hoshinotsuyoshi)
  • #6847: Fix Style/BlockDelimiters to properly check if the node is chained when braces_for_chaining is set. ([@​att14][])

Bug fixes

  • Replace Time.zone.current with Time.zone.today on Rails::Date cop message. (@​vfonic)

0.68.0 (2019-04-29)

New features

... (truncated)
Commits
  • c2047b7 Cut 0.69
  • 7dc3402 Tweak some wording
  • 0d33fb1 [Fix #6779] Add new cop Style/NegatedUnless
  • 1fb484a Update "migrate_performance_cops.md"
  • e02e5bb [Fix #7033] Fix an error for Layout/EmptyLineAfterGuardClause
  • c68c4e7 Relax the stalebot config
  • 3b267cb [Fix #6729] Handle array spread for change_column_default in `Rails/Reversi...
  • 03c1580 Fix Rails/LinkToBlank dectection to allow rel: 'norefererFix
  • 4555fe3 Merge pull request #7016 from dduugg/handle-jumps-in-inverse-methods
  • 6406543 [Fix #6969] Fix a false positive with block methods in Style/InverseMethods
  • 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 ignore this [patch|minor|major] version will close this PR and stop Dependabot creating any more for this minor/major 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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

Bumps [rubocop](https://github.com/rubocop-hq/rubocop) from 0.67.2 to 0.69.0.
- [Release notes](https://github.com/rubocop-hq/rubocop/releases)
- [Changelog](https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v0.67.2...v0.69.0)

Signed-off-by: dependabot[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot force-pushed the dependabot/bundler/rubocop-0.69.0 branch from 3196f98 to ee60590 Compare May 14, 2019 10:42
@dependabot-preview
Copy link
Contributor Author

Superseded by #403.

@dependabot-preview dependabot-preview bot deleted the dependabot/bundler/rubocop-0.69.0 branch May 22, 2019 05:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant