The first stable RuboCop release ever is finally here! You can read more about this special release here.
New features
#7944: Add MaxUnannotatedPlaceholdersAllowed option to Style/FormatStringToken cop. (@Tietew)
#8379: Handle redundant parentheses around an interpolated expression for Style/RedundantParentheses cop. (@fatkodima)
Bug fixes
#8892: Fix an error for Style/StringConcatenation when correcting nested concatenable parts. (@fatkodima)
#8781: Fix handling of comments in Style/SafeNavigation autocorrection. (@dvandersluis)
#8907: Fix an incorrect auto-correct for Layout/ClassStructure when heredoc constant is defined after public method. (@koic)
#8889: Cops can use new after_<type> callbacks (only for nodes that may have children nodes, like :send and unlike :sym). (@marcandre)
#8906: Fix a false positive for Layout/SpaceAroundOperators when upward alignment. (@koic)
#8585: Fix false positive in Style/RedundantSelf cop with nested self access. (@marcotc)
Changes
#8882: (Potentially breaking) RuboCop assumes that Cop classes do not define new on_<type> methods at runtime (e.g. via extend in initialize). (@marcandre)
#7966: (Breaking) Enable all pending cops for RuboCop 1.0. (@koic)
#8490: (Breaking) Change logic for cop department name computation. Cops inside deep namespaces (5 or more levels deep) now belong to departments with names that are calculated by joining module names starting from the third one with slashes as separators. For example, cop Rubocop::Cop::Foo::Bar::Baz now belongs to Foo/Bar department (previously it was Bar). (@dsavochkin)
#8692: Default changed to disallow Layout/TrailingWhitespace in heredoc. (@marcandre)
#8894: Make Security/Open aware of URI.open. (@koic)
#8901: Fix false positive for Naming/BinaryOperatorParameterName when defining =~. (@zajn)
#8908: Show extension cop versions when using --verbose-version option. (@koic)
#7944: Add MaxUnannotatedPlaceholdersAllowed option to Style/FormatStringToken cop. ([@Tietew][])
#8379: Handle redundant parentheses around an interpolated expression for Style/RedundantParentheses cop. ([@fatkodima][])
Bug fixes
#8892: Fix an error for Style/StringConcatenation when correcting nested concatenable parts. ([@fatkodima][])
#8781: Fix handling of comments in Style/SafeNavigation autocorrection. ([@dvandersluis][])
#8907: Fix an incorrect auto-correct for Layout/ClassStructure when heredoc constant is defined after public method. ([@koic][])
#8889: Cops can use new after_<type> callbacks (only for nodes that may have children nodes, like :send and unlike :sym). ([@marcandre][])
#8906: Fix a false positive for Layout/SpaceAroundOperators when upward alignment. ([@koic][])
#8585: Fix false positive in Style/RedundantSelf cop with nested self access. ([@marcotc][])
Changes
#8882: (Potentially breaking) RuboCop assumes that Cop classes do not define new on_<type> methods at runtime (e.g. via extend in initialize). ([@marcandre][])
#7966: (Breaking) Enable all pending cops for RuboCop 1.0. ([@koic][])
#8490: (Breaking) Change logic for cop department name computation. Cops inside deep namespaces (5 or more levels deep) now belong to departments with names that are calculated by joining module names starting from the third one with slashes as separators. For example, cop Rubocop::Cop::Foo::Bar::Baz now belongs to Foo/Bar department (previously it was Bar). ([@dsavochkin][])
#8692: Default changed to disallow Layout/TrailingWhitespace in heredoc. ([@marcandre][])
#8894: Make Security/Open aware of URI.open. ([@koic][])
#8901: Fix false positive for Naming/BinaryOperatorParameterName when defining =~. ([@zajn][])
#8908: Show extension cop versions when using --verbose-version option. ([@koic][])
0.93.1 (2020-10-12)
Bug fixes
#8782: Fix incorrect autocorrection for Style/TernaryParentheses with defined?. ([@dvandersluis][])
#8867: Rework Lint/RedundantSafeNavigation to be more safe. ([@fatkodima][])
#8864: Fix false positive for Style/RedundantBegin with a postfix while or until. ([@dvandersluis][])
#8869: Fix a false positive for Style/RedundantBegin when using begin for or assignment and method call. ([@koic][])
#8862: Fix an error for Lint/AmbiguousRegexpLiteral when using regexp without method calls in nested structure. ([@koic][])
#8872: Fix an error for Metrics/ClassLength when multiple assignments to constants. ([@koic][])
#8871: Fix a false positive for Style/RedundantBegin when using begin for method argument or part of conditions. ([@koic][])
#8875: Fix an incorrect auto-correct for Style/ClassEqualityComparison when comparing class name. ([@koic][])
#8880: Fix an error for Style/ClassLength when overlapping constant assignments. ([@koic][])
0.93.0 (2020-10-08)
New features
#8796: Add new Lint/HashCompareByIdentity cop. ([@fatkodima][])
#8833: Add new Style/ClassEqualityComparison cop. ([@fatkodima][])
#8668: Add new Lint/RedundantSafeNavigation cop. ([@fatkodima][])
#8842: Add notification about cache being used to debug mode. ([@hatkyinc2][])
#8822: Make Style/RedundantBegin aware of begin without rescue or ensure. ([@koic][])
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 close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor 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)
Updates the requirements on rubocop to permit the latest version.
Release notes
Sourced from rubocop's releases.
Changelog
Sourced from rubocop's changelog.
... (truncated)
Commits
f74c118
Cut RuboCop 1.0!!!8245906
Move a changelog entry89c9628
Fix false positive inStyle/RedundantSelf
cop with nestedself
access (#8...b4873b7
Merge pull request #8911 from koic/fix_an_error_when_occurring_cop_error4673957
Fix a false positive forLayout/SpaceAroundOperators
98e1021
Fix an error when ocurring cop errore0713ad
Merge pull request #8908 from koic/add_extension_versions_when_using_verbose_...96d2809
Show extension cop versions when using--verbose-version
optiondef3600
Addon_after_\<type>
callbacksa6dd18c
Fix an incorrect auto-correct forLayout/ClassStructure
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 close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor 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)