New features
- #12049: Add new
Style/HashFetchChain
cop to detect chainedfetch
calls that can be replaced with a single call todig
. (@dvandersluis) - #13597: Add new
Style/ItBlockParameter
cop. (@koic) - #13899: Enable reusable Prism parse result for Ruby LSP add-on. (@koic)
- #14015: Support
it
block parameter inLayout
cops. (@koic) - #14017: Support
it
block parameter inLint
cops. (@koic) - #14018: Support
it
block parameter inMetrics
cops. (@koic) - #14013: Support
it
block parameter inStyle
cops. (@koic) - #14025: Support
TargetRubyVersion: 3.5
(experimental). (@earlopain)
Bug fixes
- #14022: Fix an error for
Style/HashFetchChain
when no arguments are given tofetch
. (@koic) - #14028: Fix false negative for
Layout/MultilineMethodParameterLineBreaks
when class method definitions are used. (@vlad-pisanov) - #14027: Fix false negative for
Layout/LineLength
when autocorrecting class method definitions. (@vlad-pisanov) - #8099: Fix infinite loop between
Layout/SpaceAroundOperators
andLayout/HashAlignment
withEnforcedHashRocketStyle
being an array containingtable
. (@dvandersluis) - #14021: Fix handling of long heredoc lines with SplitStrings enabled. (@mauro-oto)
- #13968: Fix
InternalAffairs/RedundantDescribedClassAsSubject
cop error on missingdescribe
. (@viralpraxis) - #14036: Fix false negative for
Lint/ShadowingOuterLocalVariable
when block local variable is used inside a condition. (@lovro-bikic) - #13990: Fix a false positive for
Lint/UselessAssignment
when a variable is reassigned in a different branch. (@eugeneius) - #14012: Fix incorrect autocorrections for
Style/SoleNestedConditional
. (@lovro-bikic) - #14020: Fix comment autocorrection for
Style/IfInsideElse
. (@lovro-bikic)
Changes
- #12358: Add
does
as a forbidden prefix toNaming/PredicateName
. (@dvandersluis) - #13621: Add
ForbiddenIdentifiers
andForbiddenPatterns
config options toNaming/MethodName
cop. (@tejasbubane) - #13986: Add support for
Array#intersection
toStyle/ArrayIntersect
. (@dvandersluis) - #14006: Allow cop renames to trigger warnings instead of fatal errors. (@dvandersluis)
- #13617: Use the
prism
translation layer to analyze Ruby 3.4+ by default. (@earlopain) - #14024: Change
Style/RedundantParentheses
to offend parentheses for chained&&
expressions. (@lovro-bikic) - #14029: Add
AllowConsecutiveConditionals
setting toStyle/Next
to allow consecutive conditional statements. (@vlad-pisanov) - #14016: Update
Style/RedundantFormat
to register offenses when the only argument toformat
orsprintf
is a constant. (@dvandersluis)