Rubocop v1.0.0 Release Notes

Release Date: 2020-10-21 // over 3 years ago
  • 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)
    • 0๏ธโƒฃ #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)