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.51.0 to 0.58.2 #289

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

Conversation

dependabot-preview[bot]
Copy link
Contributor

@dependabot-preview dependabot-preview bot commented Aug 26, 2018

Bumps rubocop from 0.51.0 to 0.58.2.

Release notes

Sourced from rubocop's releases.

RuboCop 0.58.2

Changes

New features

  • #6105: Support {a,b} file name globs in Exclude and Include config. ([mikeyhew][])

  • #6116: Add ip to allowed names of Naming/UncommunicativeMethodParamName cop in default config. ([nijikon][])

Bug fixes

  • #6103: Fix a false positive for Layout/IndentationWidth when multiple modifiers are used in a block and a method call is made at end of the block. ([koic][])
  • #6084: Fix Naming/MemoizedInstanceVariableName cop to allow methods to have leading underscores. ([kenman345][])
  • #6098: Fix an error for Layout/ClassStructure when there is a comment in the macro method to be auto-correct. ([koic][])
  • #6115: Fix a false positive for Lint/OrderedMagicComments when using { encoding: Encoding::SJIS } hash object after frozen_string_literal magic comment. ([koic][])

[mikeyhew]: https://github.com/mikeyhew
[nijikon]: https://github.com/nijikon
[koic]: https://github.com/koic
[kenman345]: https://github.com/kenman345

RuboCop 0.58.1

Bug fixes

  • #6071: Fix auto-correct Style/MethodCallWithArgsParentheses when arguments are method calls. ([maxh][])
  • Fix Style/RedundantParentheses with hash literal as first argument to super. ([maxh][])
  • #6086: Fix an error for Gemspec/OrderedDependencies when using method call to gem names in gemspec. ([koic][])
  • #6089: Make Rails/BulkChangeTable aware of variable table name. ([wata727][])
  • #6088: Fix an error for Layout/MultilineAssignmentLayout cop when using multi-line block defines on separate lines. ([koic][])
  • #6092: Don't use the broken parser 2.5.1.1 version. ([bbatsov][])

[maxh]: https://github.com/maxh
[koic]: https://github.com/koic
[wata727]: https://github.com/wata727
[bbatsov]: https://github.com/bbatsov

RuboCop 0.58

New features

  • #5973: Add new Style/IpAddresses cop. ([dvandersluis][])
  • #5843: Add configuration options to Naming/MemoizedInstanceVariableName cop to allow leading underscores. ([leklund][])
  • #5843: Add EnforcedStyleForLeadingUnderscores to Naming/MemoizedInstanceVariableName cop to allow leading underscores. ([leklund][])
  • Performance/Sample will now register an offense when using shuffle followed by at or slice. ([rrosenblum][])

Bug fixes

  • #5987: Suppress errors when using ERB template in Rails/BulkChangeTable. ([wata727][])
  • #4878: Fix false positive in Layout/IndentationWidth when multiple modifiers and def are on the same line. ([tatsuyafw][])
  • #5966: Fix a false positive for Layout/ClosingHeredocIndentation when heredoc content is outdented compared to the closing. ([koic][])
  • Fix auto-correct support check for custom cops on --auto-gen-config. ([r7kamura][])
... (truncated)
Changelog

Sourced from rubocop's changelog.

0.58.2 (2018-07-23)

New features

  • #6105: Support {a,b} file name globs in Exclude and Include config. ([mikeyhew][])

Bug fixes

  • #6103: Fix a false positive for Layout/IndentationWidth when multiple modifiers are used in a block and a method call is made at end of the block. ([koic][])
  • #6084: Fix Naming/MemoizedInstanceVariableName cop to allow methods to have leading underscores. ([kenman345][])
  • #6098: Fix an error for Layout/ClassStructure when there is a comment in the macro method to be auto-correct. ([koic][])
  • #6115: Fix a false positive for Lint/OrderedMagicComments when using { encoding: Encoding::SJIS } hash object after frozen_string_literal magic comment. ([koic][])

Changes

  • #6116: Add ip to allowed names of Naming/UncommunicativeMethodParamName cop in default config. ([nijikon][])

0.58.1 (2018-07-10)

Bug fixes

  • #6071: Fix auto-correct Style/MethodCallWithArgsParentheses when arguments are method calls. ([maxh][])
  • Fix Style/RedundantParentheses with hash literal as first argument to super. ([maxh][])
  • #6086: Fix an error for Gemspec/OrderedDependencies when using method call to gem names in gemspec. ([koic][])
  • #6089: Make Rails/BulkChangeTable aware of variable table name. ([wata727][])
  • #6088: Fix an error for Layout/MultilineAssignmentLayout cop when using multi-line block defines on separate lines. ([koic][])
  • #6092: Don't use the broken parser 2.5.1.1 version. ([bbatsov][])

0.58.0 (2018-07-07)

New features

  • #5973: Add new Style/IpAddresses cop. ([dvandersluis][])
  • #5843: Add configuration options to Naming/MemoizedInstanceVariableName cop to allow leading underscores. ([leklund][])
  • #5843: Add EnforcedStyleForLeadingUnderscores to Naming/MemoizedInstanceVariableName cop to allow leading underscores. ([leklund][])
  • Performance/Sample will now register an offense when using shuffle followed by at or slice. ([rrosenblum][])

Bug fixes

  • #5987: Suppress errors when using ERB template in Rails/BulkChangeTable. ([wata727][])
  • #4878: Fix false positive in Layout/IndentationWidth when multiple modifiers and def are on the same line. ([tatsuyafw][])
  • #5966: Fix a false positive for Layout/ClosingHeredocIndentation when heredoc content is outdented compared to the closing. ([koic][])
  • Fix auto-correct support check for custom cops on --auto-gen-config. ([r7kamura][])
  • Fix exception that occurs when auto-correcting a modifier if statement in Style/UnneededCondition. ([rrosenblum][])
  • #6025: Fix an incorrect auto-correct for Lint/UnneededCondition when using if_branch in else branch. ([koic][])
  • #6029: Fix a false positive for Lint/ShadowedArgument when reassigning to splat variable. ([koic][])
  • #6035: Fix error on autocorrection when Layout/LeadingBlankLines is the first cop to act. ([Vasfed][])
  • #6036: Make Rails/BulkChangeTable aware of string table name. ([wata727][])
  • #5467: Fix a false negative for Style/MultipleComparison when multiple comparison is not part of a conditional. ([koic][])
  • #6042: Fix Lint/RedundantWithObject error on missing parameter to each_with_object. ([Vasfed][])
... (truncated)
Commits
  • 8a5be5f Cut 0.58.2
  • 18a77be Make MagicComment aware of indented Ruby's magic comments
  • 05d9673 [Fix #6115] Fix a false positive for Lint/OrderedMagicComments
  • 58f2f8d Add a favicon to the manual
  • 631352e Merge pull request #6120 from jaredbeck/remove_redundant_ru_default
  • ebf8f98 Remove redundant Include of config.ru in default.yml
  • d714e24 Merge pull request #6118 from pocke/cache-key
  • 6c348b2 Remove pwd from cache key
  • d437a2e [Fix #6105] Support {a,b} glob patterns in PathUtil
  • f4f0c01 Allow ip as method parameter in default config
  • 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.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge
  • @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.51.0 to 0.58.2.
- [Release notes](https://github.com/rubocop-hq/rubocop/releases)
- [Changelog](https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v0.51.0...v0.58.2)

Signed-off-by: dependabot[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Aug 26, 2018
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

1 participant