-
Notifications
You must be signed in to change notification settings - Fork 4
Update bundler non-major dependencies to v1.195.0 #1462
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
main
Choose a base branch
from
renovate/bundler-minor-patch
base: main
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.
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
2ed1888
to
7bfee50
Compare
7bfee50
to
63befbf
Compare
36c1d51
to
250e0fd
Compare
1532a35
to
be43441
Compare
e3a062d
to
ad80d32
Compare
43ef4a6
to
dfa38e9
Compare
b61ee4d
to
eefd637
Compare
b02da86
to
c2615b3
Compare
1d461c3
to
c2615b3
Compare
c2615b3
to
82432e9
Compare
b50d734
to
0349f27
Compare
0349f27
to
52ce41e
Compare
e051809
to
9a8168f
Compare
0fc9e0d
to
2aa6ef3
Compare
0d55144
to
7bda389
Compare
7bda389
to
1eeac33
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.191.0
->1.195.0
1.96.0
->1.99.0
2.12.2
->2.13.2
1.5.9
->1.6.0
6.6.0
->6.6.1
1.77.0
->1.79.1
5.6.4
->5.6.5
2.7.1
->2.7.3
Release Notes
aws/aws-sdk-ruby (aws-sdk-s3)
v1.195.0
./build_tools
oraws-sdk-core
's CHANGELOG.md for details.v1.194.0
./build_tools
oraws-sdk-core
's CHANGELOG.md for details.v1.193.0
v1.192.0
aws/aws-sdk-ruby (aws-sdk-sqs)
v1.99.0
./build_tools
oraws-sdk-core
's CHANGELOG.md for details.v1.98.0
v1.97.0
./build_tools
oraws-sdk-core
's CHANGELOG.md for details.rubocop/rubocop (rubocop)
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][])scoutapp/scout_apm_ruby (scout_apm)
v5.6.5
Compare Source
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 is behind base branch, 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.