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.71.0 to 0.74.0 #83

Closed
wants to merge 2 commits into from

Conversation

dependabot-preview[bot]
Copy link
Contributor

Bumps rubocop from 0.71.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)

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). To ignore the version in this PR you can just close it
  • @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.71.0 to 0.74.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.71.0...v0.74.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Aug 5, 2019
@coveralls
Copy link

coveralls commented Aug 5, 2019

Coverage Status

Coverage remained the same at 62.821% when pulling 2a4acf4 on dependabot/bundler/rubocop-0.74.0 into 891c9ed on master.

@digitaltom digitaltom closed this Aug 11, 2019
@dependabot-preview
Copy link
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot-preview dependabot-preview bot deleted the dependabot/bundler/rubocop-0.74.0 branch August 11, 2019 12:03
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.

None yet

2 participants