Update bundler non-major dependencies to v2.5.11 #898
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:
2.5.9
->2.5.11
1.5.9
->1.6.1
6.6.0
->6.6.1
5.4.0
->5.4.1
1.77.0
->1.80.0
2.32.0
->2.33.3
4.34.0
->4.35.0
2.7.1
->2.7.3
Release Notes
rmosolgo/graphql-ruby (graphql)
v2.5.11
Compare Source
Bug fixes
.authorized?
uses Dataloader #5400v2.5.10
Compare Source
New features
.freeze_schema
for minimal Ractor support #5370Bug fixes
preload: true
#5386.possible_types
: don't return interfaces in this list #5395dataload_association
: fix loading associations with different scopes on the same object #5398redis/redis-rb (redis)
v5.4.1
Compare Source
rubocop/rubocop (rubocop)
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][])v1.79.1
Compare Source
Bug fixes
Style/ArgumentsForwarding
when the method arguments contain*
,**
or&
, and the method call containsself
as the first argument. ([@earlopain][])Layout/EmptyLinesAfterModuleInclusion
whenprepend
is used with block methods. ([@koic][])Style/RedundantParentheses
when parentheses are used around a one-linerescue
expression inside a ternary operator. ([@koic][])Lint/UselessAssignment
when duplicate assignments inif
branch inside a loop. ([@koic][])Lint/UselessAssignment
withretry
inrescue
branch. ([@earlopain][])Style/RedundantParentheses
when parentheses are used around a one-linerescue
expression inside array or hash literals. ([@koic][])Changes
Naming/MethodName
cop to detect offenses withinalias
andalias_method
calls. ([@viralpraxis][])||
toLint/LiteralAsCondition
. ([@zopolis4][])v1.79.0
Compare Source
New features
Layout/EmptyLinesAfterModuleInclusion
. ([@lovro-bikic][])Naming/MethodName
cop to detect offenses withinData
members. ([@viralpraxis][])Bug fixes
Style/ParallelAssignment
when a lambda with parallel assignment is used on the RHS. ([@koic][])Style/AccessorGrouping
separated autocorrect. ([@r7kamura][])Lint/UselessAssignment
when the assignment is inside a loop body. ([@5hun-s][])Style/RedundantParentheses
when using parentheses around arescue
expression on a one-line. ([@koic][])Style/AccessModifierDeclarations
when using a grouped access modifier declaration. ([@girasquid][])Style/SingleLineMethods
when defining a single-line singleton method. ([@koic][])Style/SingleLineMethods
when a single-line method definition contains a modifier. ([@koic][])Naming/MethodName
cop false positives withdefine_method
and operator names. ([@viralpraxis][])Naming/PredicateMethod
ignoring the implicitnil
from missingelse
branches. ([@earlopain][])Style/ItBlockParameter
cop error onalways
style and missing block body. ([@viralpraxis][])Lint/RequireRangeParentheses
to not register false positives when range elements span multiple lines. ([@dvandersluis][])Style/SoleNestedConditional
to properly correct assignments withinand
. ([@dvandersluis][])Changes
tsort
gem to runtime dependency for Ruby 3.5-dev. ([@koic][])Style/ItAssignment
to consider all local variable and method parameter names. ([@dvandersluis][])Layout/SpaceAroundKeyword
to offend for missing whitespace betweenreturn
and opening parenthesis. ([@lovro-bikic][])Layout/SpaceAroundOperators
aware of alternative and as pattern matchings. ([@koic][])Lint/RedundantSafeNavigation
aware of builtin convert methodsto_s
,to_i
,to_f
,to_a
, andto_h
. ([@koic][])InferNonNilReceiver
config toLint/RedundantSafeNavigation
to check previous code paths if the receiver is non-nil. ([@fatkodima][])array1.any? { |elem| array2.member?(elem) }
andarray1.none? { |elem| array2.member?(elem) }
inStyle/ArrayIntersect
. ([@lovro-bikic][])v1.78.0
Compare Source
New features
Naming/MethodName
cop to detect offenses withindefine_method
calls. ([@viralpraxis][])Naming/MethodName
cop to handle offenses withinStruct
members. ([@viralpraxis][])Security/Eval
cop to detectKernel.eval
calls. ([@viralpraxis][])Bug fixes
Style/HashConversion
to avoid syntax error. ([@koic][])Style/SingleLineMethods
. ([@koic][])--format
disables parallelization. ([@r7kamura][])Lint/DuplicateMethods
cop when self-alias trick is used. ([@viralpraxis][])Lint/LiteralAsCondition
when a literal is used inside||
incase
condition. ([@koic][])Style/HashConversion
for nestedHash[]
calls. ([@dvandersluis][])Lint/RedundantTypeConversion
when using parentheses with no arguments or any arguments. ([@koic][])Style/ItBlockParameter
when using a single numbered parameter after multiple numbered parameters in a method chain. ([@koic][])Changes
WaywardPredicates
config toNaming/PredicateMethod
to handle methods that look like predicates but aren't. ([@dvandersluis][])rubocop/rubocop-rails (rubocop-rails)
v2.33.3
Compare Source
Bug fixes
Rails/FindByOrAssignmentMemoization
. ([@earlopain][])v2.33.2
Compare Source
Bug fixes
Rails/ReadWriteAttribute
with a frozen string attribute name. ([@viralpraxis][])v2.33.1
Compare Source
Bug fixes
Rails/TransactionExitStatement
whentransaction
is part of a method chain. ([@earlopain][])Rails/OrderArguments
cop false positives when using column index argument. ([@viralpraxis][])Rails/WhereExists
whenexists?
is given multiple or splat arguments. ([@lovro-bikic][])v2.33.0
Compare Source
New features
Rails/FindByOrAssignmentMemoization
cop. ([@r7kamura][])Rails/OrderArguments
. ([@lovro-bikic][])Bug fixes
Rails/PluckId
andRails/PluckInWhere
. ([@r7kamura][])Rails/EnvLocal
when having preceding conditions. ([@fatkodima][])Rails/Pluck
whenmap
method call is used in a block without a receiver. ([@koic][])Rails/Output
whenp
method is a DSL. ([@koic][])Rails/TransactionExitStatement
whenbreak
is used in loop in transactions. ([@koic][])Rails/IndexWith
has nested offenses. ([@lovro-bikic][])Changes
Lint/UselessMethodDefinition
. ([@r7kamura][])Rails/EnumSyntax
include the lib directory by default. ([@koic][])Rails/IndexWith
as unsafe autocorrect. ([@tejasbubane][])SeleniumHQ/selenium (selenium-webdriver)
v4.35.0
=========================
rubyzip
v3 (#16108)Configuration
📅 Schedule: Branch creation - At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only on Sunday and Saturday ( * * * * 0,6 ) (UTC), 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 these updates again.
This PR was generated by Mend Renovate. View the repository job log.