-
Notifications
You must be signed in to change notification settings - Fork 9
Update dependency rubocop to v1.81.1 #217
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
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/rubocop-1.x-lockfile
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
94567e5
to
6f1c0eb
Compare
6f1c0eb
to
1741e79
Compare
@rultor please, try to merge, since 11 checks have passed |
@renovate[bot] @yegor256 Oops, I failed. You can see the full log here (spent 8min).
|
1741e79
to
bfa17a0
Compare
2dca54d
to
5bffb9a
Compare
5bffb9a
to
0c69b54
Compare
0c69b54
to
1e639b8
Compare
1e639b8
to
b2c81ba
Compare
b2c81ba
to
74aa716
Compare
74aa716
to
afacbad
Compare
f30ca68
to
afacbad
Compare
6898ba1
to
43aad34
Compare
43aad34
to
8bee085
Compare
8bee085
to
1b189b8
Compare
1b189b8
to
da5de71
Compare
da5de71
to
d23ebe3
Compare
d23ebe3
to
7f5d517
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.79.1
->1.81.1
Release Notes
rubocop/rubocop (rubocop)
v1.81.1
Compare Source
Bug fixes
Lint/DeprecatedOpenSSLConstant
whenCipher
appears twice. ([@koic][])Changes
Style/NumberedParameters
andStyle/ItBlockParameter
withEnforcedStyle: allow_single_line
when the block itself is on a single line. ([@earlopain][])v1.81.0
Compare Source
New features
Style/ArrayIntersectWithSingleElement
cop. ([@r7kamura][])EnforcedStyleForMultiline: diff_comma
inStyle/TrailingCommaInArguments
. ([@akouryy][])Bug fixes
Style/NilComparison
cop when using thevar.==(nil)
andvar.===(nil)
syntax. ([@viralpraxis][])Style/ExplicitBlockArgument
when there are two methods that share the same implementation. ([@earlopain][])Style/NumberedParameters
andStyle/ItBlockParameter
when using multiline method chain withEnforcedStyle: allow_single_line
. ([@koic][])Layout/MultilineOperationIndentation
when using indented code on LHS of equality operator in modifier method definition. ([@koic][])Layout/EmptyLineBetweenDefs
forAllowAdjacentOneLineDefs: false
andDefLikeMacros
that take no block. ([@earlopain][])EnforcedStyle: allowed_in_returns
and!!
appears across multiple lines in return position. ([@koic][])Style/RedundantParentheses
when parentheses are used around a one-linerescue
expression as a condition. ([@koic][])Style/RedundantRegexpEscape
when an escaped variable sigil follows#
(e.g.,/#\@​foo/
,/#\@​@​bar/
,/#\$baz/
). ([@koic][])Layout/RescueEnsureAlignment
with a block whose send node is split over multiple lines. ([@dvandersluis][])Style/RedundantFormat
when the format string has a variable width that isn't given as a literal value. ([@dvandersluis][])ParserEngine: parser_prism
is configured in a base config file. ([@sudoremo][])Lint/Void
when using a return value in assignment method definition. ([@koic][])Style/RedundantRegexpArgument
when using escaped single quote character. ([@koic][])Style/UnlessElse
when usingunless
withthen
. ([@koic][]).rubocop.yml
,.rubocop_todo.yml
) change. ([@earlopain][]).rubocop
config file. ([@earlopain][])Layout/LineLength
autocorrection from splitting a block if its receiver contains a heredoc. ([@dvandersluis][])Lint/ShadowedArgument
when assigning inside arescue
block. ([@earlopain][])Changes
positionEncoding
utf-8
andutf-32
. ([@tmtm][])v1.80.2
Compare Source
Bug fixes
Style/SafeNavigation
when using ternary expression with index access call with method chain. ([@koic][])Style/RedundantParentheses
with unary operators andyield
,super
, ordefined?
. ([@earlopain][])Style/RedundantParentheses
with method calls taking argument without parentheses likereturn (x y) if z
. ([@earlopain][])Style/StringConcatenation
when a double-quoted string contains escaped quotes and interpolation. ([@earlopain][])Style/StringConcatenation
when a single-quoted string contains interpolation like'#{foo}'
. ([@earlopain][])Changes
Naming/PredicateMethod
allow theinitialize
method. ([@koic][])v1.80.1
Compare Source
Bug fixes
--display-time
option is used on the CLI. ([@lovro-bikic][])Style/RedundantBegin
usingbegin
with multiple statements withoutrescue
orensure
. ([@koic][])Changes
Layout/EndAlignment
whenend
is not on a separate line. ([@lovro-bikic][])v1.80.0
Compare Source
Bug fixes
Style/BitwisePredicate
when using&
with LHS flags in conjunction with==
for comparisons. ([@koic][])Style/For
with save navigation in the collection. ([@earlopain][])Lint/DuplicateRegexpCharacterClassElement
is enabled. ([@earlopain][])Lint/UselessAssignment
when duplicate assignments appear in nestedif
branches inside a loop and the variable is used outsidewhile
loop. ([@koic][])Naming/MethodName
when an operator method is defined using a string. ([@koic][])Style/RedundantParentheses
whendo
...end
block is wrapped in parentheses as a method argument. ([@koic][])Style/SafeNavigation
. ([@issyl0][])Layout/EmptyLinesAfterModuleInclusion
wheninclude
does not have exactly one argument. ([@issyl0][])Style/SafeNavigation
cop to preserve existing safe navigation in fixed code. ([@martinemde][])Lint/UselessAssignment
withfor
loops when the variable is referenced in the collection. ([@earlopain][])Style/RedundantCondition
with a parenthesised method call in the condition. ([@earlopain][])Changes
Lint/SelfAssignment
to handle indexed assignment with multiple arguments. ([@viralpraxis][])AutoCorrect
andInclude
from configuration parameters. ([@r7kamura][])Style/RedundantBegin
aware ofcase
pattern matching. ([@koic][])Style/ArrayIntersect
. ([@lovro-bikic][])TextDocumentSyncKind.Incremental
. ([@tmtm][])Style/RedundantBegin
to registerbegin
blocks insideif
,unless
,case
,while
anduntil
as redundant. ([@dvandersluis][])v1.79.2
Compare Source
Bug fixes
Layout/EmptyLinesAroundClassBody
when a class body starts with a blank line and defines a multiline superclass. ([@koic][])Layout/EmptyLinesAroundArguments
with multiline strings that contain only whitespace. ([@earlopain][])Layout/EmptyLinesAfterModuleInclusion
when inclusion is called with modifier. ([@r7kamura][])Lint/UselessAssignment
when duplicate assignments appear inif
branch inside a loop and the variable is used outsidewhile
loop. ([@koic][])Style/MapToHash
when usingto_h
with block argument. ([@koic][])Style/MapToSet
when usingto_set
with block argument. ([@koic][])Style/SafeNavigation
when ternary expression with operator method call with method chain. ([@koic][])Changes
Style/RedundantParentheses
. ([@lovro-bikic][])Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.