Skip to content
This repository has been archived by the owner on May 25, 2021. It is now read-only.

build(deps-dev): bump rubocop from 0.40.0 to 0.74.0 #12

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

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Sep 28, 2019

Bumps rubocop from 0.40.0 to 0.74.0.

Release notes

Sourced from rubocop's releases.

RuboCop 0.74

New features

  • #7219: Support auto-correct for Lint/ErbNewArguments. (@​koic)

Bug fixes

  • #7217: Make Style/TrailingMethodEndStatement work on more than the first def. (@​buehmann)
  • #7190: Support lower case drive letters on Windows. (@​jonas054)
  • Fix the auto-correction of Lint/UnneededSplatExpansion when the splat expansion of Array.new with a block is assigned to a variable. (@​rrosenblum)
  • #5628: Fix an error of Layout/SpaceInsideStringInterpolation on interpolations with multiple statements. (@​buehmann)
  • #7128: Make Metrics/LineLength aware of shebang. (@​koic)
  • #6861: Fix a false positive for Layout/IndentationWidth when using EnforcedStyle: outdent of Layout/AccessModifierIndentation. (@​koic)
  • #7235: Fix an error where Style/ConditionalAssignment would swallow a nested if condition. (@​buehmann)
  • #7242: Make Style/ConstantVisibility work on non-trivial class and module bodies. (@​buehmann)

Changes

  • #5265: Improved Layout/ExtraSpacing cop to handle nested consecutive assignments. (@​jfelchner)
  • #7215: Make it clear what's wrong in the message from Style/GuardClause. (@​jonas054)
  • #7245: Make cops detect string interpolations in more contexts: inside of backticks, regular expressions, and symbols. (@​buehmann)

RuboCop 0.73

New features

  • Add AllowDoxygenCommentStyle configuration on Layout/LeadingCommentSpace. ([@​anthony-robin][])
  • #7114: Add MultilineWhenThen cop. ([@​okuramasafumi][])
  • #4127: Add --disable-uncorrectable flag to generate rubocop:disable comments. ([@​vergenzt][], @​jonas054)

Bug fixes

  • #7170: Fix a false positive for Layout/RescueEnsureAlignment when def line is preceded with private_class_method. ([@​tatsuyafw][])
  • #7186: Fix a false positive for Style/MixinUsage when using inside multiline block and if condition is after include. (@​koic)
  • #7099: Fix an error of Layout/RescueEnsureAlignment on assigned blocks. ([@​tatsuyafw][])
  • #5088: Fix an error of Layout/MultilineMethodCallIndentation on method chains inside an argument. (@​buehmann)
  • #4719: Make Layout/Tab detect tabs between string literals. (@​buehmann)
  • #7203: Fix an infinite loop error for Layout/SpaceInsideBlockBraces when EnforcedStyle: no_space with SpaceBeforeBlockParameters: false are set in multiline block. (@​koic)
  • #6653: Fix a bug where Layout/IndentHeredoc would remove empty lines when autocorrecting heredocs. (@​buehmann)

Changes

  • #7181: Sort analyzed file alphabetically. ([@​pocke][])
  • #7188: Include inspected file location in auto-correction error. ([@​pocke][])
... (truncated)
Changelog

Sourced from rubocop's changelog.

0.74.0 (2019-07-31)

New features

  • #7219: Support auto-correct for Lint/ErbNewArguments. (@​koic)

Bug fixes

  • #7217: Make Style/TrailingMethodEndStatement work on more than the first def. (@​buehmann)
  • #7190: Support lower case drive letters on Windows. (@​jonas054)
  • Fix the auto-correction of Lint/UnneededSplatExpansion when the splat expansion of Array.new with a block is assigned to a variable. (@​rrosenblum)
  • #5628: Fix an error of Layout/SpaceInsideStringInterpolation on interpolations with multiple statements. (@​buehmann)
  • #7128: Make Metrics/LineLength aware of shebang. (@​koic)
  • #6861: Fix a false positive for Layout/IndentationWidth when using EnforcedStyle: outdent of Layout/AccessModifierIndentation. (@​koic)
  • #7235: Fix an error where Style/ConditionalAssignment would swallow a nested if condition. (@​buehmann)
  • #7242: Make Style/ConstantVisibility work on non-trivial class and module bodies. (@​buehmann)

Changes

  • #5265: Improved Layout/ExtraSpacing cop to handle nested consecutive assignments. (@​jfelchner)
  • #7215: Make it clear what's wrong in the message from Style/GuardClause. (@​jonas054)
  • #7245: Make cops detect string interpolations in more contexts: inside of backticks, regular expressions, and symbols. (@​buehmann)
  • Deprecate the SafeMode option. Users will need to upgrade rubocop-performance to 1.15.0+ before the SafeMode module is removed. (@​rrosenblum)

0.73.0 (2019-07-16)

New features

  • Add AllowDoxygenCommentStyle configuration on Layout/LeadingCommentSpace. ([@​anthony-robin][])
  • #7114: Add MultilineWhenThen cop. ([@​okuramasafumi][])
  • #4127: Add --disable-uncorrectable flag to generate rubocop:disable comments. ([@​vergenzt][], @​jonas054)

Bug fixes

  • #7170: Fix a false positive for Layout/RescueEnsureAlignment when def line is preceded with private_class_method. ([@​tatsuyafw][])
  • #7186: Fix a false positive for Style/MixinUsage when using inside multiline block and if condition is after include. (@​koic)
  • #7099: Fix an error of Layout/RescueEnsureAlignment on assigned blocks. ([@​tatsuyafw][])
  • #5088: Fix an error of Layout/MultilineMethodCallIndentation on method chains inside an argument. (@​buehmann)
  • #4719: Make Layout/Tab detect tabs between string literals. (@​buehmann)
  • #7203: Fix an infinite loop error for Layout/SpaceInsideBlockBraces when EnforcedStyle: no_space with SpaceBeforeBlockParameters: false are set in multiline block. (@​koic)
  • #6653: Fix a bug where Layout/IndentHeredoc would remove empty lines when autocorrecting heredocs. (@​buehmann)

Changes

  • #7181: Sort analyzed file alphabetically. ([@​pocke][])
  • #7188: Include inspected file location in auto-correction error. ([@​pocke][])

0.72.0 (2019-06-25)

New features

... (truncated)
Commits
  • 96b090f Cut 0.74
  • 55bae8c Detect more interpolations
  • 1642711 [Fix #7242] Make Style/ConstantVisibility work
  • 11656e1 Add a description for Metrics/LineLength
  • f51c53c Remove unused node matchers in Node
  • f1eaf7f Simplify Style/CommentedKeyword
  • 1065300 Remove unused node matchers
  • 07d6223 Fix autocorrection of UnneededSplatExpasion when Array.new with a block is as...
  • 3062a72 [Fix #7235] Tell elsif from nested if in ConditionalAssignment
  • 95dd998 Merge pull request #6866 from koic/fix_false_positive_for_layout_indentation_...
  • 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

You can disable automated security fix PRs for this repo from the Security Alerts page.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 28, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants