Skip to content

Update rubocop requirement to 0.58.0#70

Closed
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/bundler/rubocop-0.58.0
Closed

Update rubocop requirement to 0.58.0#70
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/bundler/rubocop-0.58.0

Conversation

@dependabot-preview
Copy link
Copy Markdown

Updates the requirements on rubocop to permit the latest version.

Release notes

Sourced from rubocop's releases.

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][])
  • 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][])
  • #6056: Support string timestamps in Rails/CreateTableWithTimestamps cop. ([drn][])
  • #6052: Fix a false positive for Style/SymbolProc when using block with adding a comma after the sole argument. ([koic][])
  • #2743: Support << as a kind of assignment operator in Layout/EndAlignment. ([jonas054][])
  • #6067: Prevent auto-correct error for Performance/InefficientHashSearch when a method by itself and include? method are method chaining. ([koic][])

Changes

  • #6006: Remove rake repl task. ([koic][])
  • #5990: Drop support for MRI 2.1. ([drenmi][])
  • #3299: Lint/UselessAccessModifier now warns when private_class_method is used without arguments. ([Darhazer][])
  • #6026: Exclude refine by default from Metrics/BlockLength cop. ([kddeisz][])
  • #4882: Use IndentationWidth of Layout/Tab for other cops. ([AlexWayfer][])

[dvandersluis]: https://github.com/dvandersluis
[leklund]: https://github.com/leklund
[rrosenblum]: https://github.com/rrosenblum
[wata727]: https://github.com/wata727
[tatsuyafw]: https://github.com/tatsuyafw
[koic]: https://github.com/koic
[r7kamura]: https://github.com/r7kamura
[Vasfed]: https://github.com/Vasfed
[drn]: https://github.com/drn
[jonas054]: https://github.com/jonas054
[drenmi]: https://github.com/drenmi
[Darhazer]: https://github.com/Darhazer
[kddeisz]: https://github.com/kddeisz
[AlexWayfer]: https://github.com/AlexWayfer

Changelog

Sourced from rubocop's changelog.

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][])
  • #6056: Support string timestamps in Rails/CreateTableWithTimestamps cop. ([drn][])
  • #6052: Fix a false positive for Style/SymbolProc when using block with adding a comma after the sole argument. ([koic][])
  • #2743: Support << as a kind of assignment operator in Layout/EndAlignment. ([jonas054][])
  • #6067: Prevent auto-correct error for Performance/InefficientHashSearch when a method by itself and include? method are method chaining. ([koic][])

Changes

  • #6006: Remove rake repl task. ([koic][])
  • #5990: Drop support for MRI 2.1. ([drenmi][])
  • #3299: Lint/UselessAccessModifier now warns when private_class_method is used without arguments. ([Darhazer][])
  • #6026: Exclude refine by default from Metrics/BlockLength cop. ([kddeisz][])
  • #4882: Use IndentationWidth of Layout/Tab for other cops. ([AlexWayfer][])

0.57.2 (2018-06-12)

Bug fixes

  • #5968: Prevent Layout/ClosingHeredocIndentation from raising an error on << heredocs. ([dvandersluis][])
  • #5965: Prevent Layout/ClosingHeredocIndentation from raising an error on heredocs containing only a newline. ([drenmi][])
  • Prevent a crash in Layout/IndentationConsistency cop triggered by an empty expression string interpolation. ([alexander-lazarov][])
  • #5951: Prevent Style/MethodCallWithArgsParentheses from raising an error in certain cases. ([drenmi][])

0.57.1 (2018-06-07)

Bug fixes

  • #5963: Allow Performance/ReverseEach to apply to any receiver. ([dvandersluis][])
  • #5917: Fix erroneous warning for inherit_mode directive. ([jonas054][])
... (truncated)
Commits

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 merge will merge this PR after your CI passes on it
  • @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 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.

Updates the requirements on [rubocop](https://github.com/rubocop-hq/rubocop) to permit the latest version.
- [Release notes](https://github.com/rubocop-hq/rubocop/releases)
- [Changelog](https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rubocop-hq/rubocop/commits/v0.58.0)

Signed-off-by: dependabot[bot] <support@dependabot.com>
@dependabot-preview
Copy link
Copy Markdown
Author

Superseded by #71.

@dependabot-preview dependabot-preview bot deleted the dependabot/bundler/rubocop-0.58.0 branch July 10, 2018 20:13
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