This repository was archived by the owner on Aug 4, 2026. It is now read-only.
Update bundler non-major dependencies - #1503
Closed
renovate[bot] wants to merge 1 commit into
Closed
Conversation
renovate
Bot
force-pushed
the
renovate/bundler-minor-patch
branch
from
July 11, 2026 10:59
0efa988 to
6c3a012
Compare
renovate
Bot
force-pushed
the
renovate/bundler-minor-patch
branch
from
July 14, 2026 21:50
6c3a012 to
c37f6cd
Compare
renovate
Bot
force-pushed
the
renovate/bundler-minor-patch
branch
from
July 15, 2026 21:55
c37f6cd to
a73da47
Compare
renovate
Bot
force-pushed
the
renovate/bundler-minor-patch
branch
from
July 16, 2026 20:12
a73da47 to
a6d8257
Compare
renovate
Bot
force-pushed
the
renovate/bundler-minor-patch
branch
from
July 20, 2026 21:14
a6d8257 to
0363102
Compare
renovate
Bot
force-pushed
the
renovate/bundler-minor-patch
branch
from
July 23, 2026 20:38
0363102 to
1321ca4
Compare
renovate
Bot
force-pushed
the
renovate/bundler-minor-patch
branch
from
August 2, 2026 18:42
1321ca4 to
fce8fce
Compare
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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:
5.0.5→5.0.66.0.3→6.0.40.14.0→0.15.0v1.4→v1.50.6.4.1→0.6.61.88.1→1.88.22.35.5→2.36.01.2.7→1.2.84.2.1→4.3.0Release Notes
petergoldstein/dalli (dalli)
v5.0.6Compare Source
==========
Performance:
Skip the cas-return flag on quiet
meta_setrequests (#1131)msresponse entirely, so the CAS requested by thecflag can never be read; sending it only added two bytes to every requestDalli::Client#multiblocks and the pipelined setterReduce allocations in
KeyRegularizerand multi-key request paths (#1120)KeyRegularizer#encodeinto separateneeds_encoding?andencodecalls so the common happy path avoids allocating an intermediate array for the two-element return valuemulti_get/multi_set/multi_deletecommand generation intoRequestFormatterto share its key-encoding helpersReduce allocations in
ResponseBufferpipelined getk parsing (#1117)process_single_getk_responsewas building a fresh array to return results alongside the updated offset; refactored to store the offset as the last element of the existing tokens array and pop it, saving one allocation per responseEnable frozen string literals in
RequestFormatter(#1118)get_multi_casbenchmark (562 MB → 550 MB total allocated)Reduce allocations in
ResponseProcessor#value_from_tokens(#1113)token[1..].to_iwas allocating a new string for every token parsed; replaced with in-placeslice!followed by a token reset to avoid poisoning subsequent token comparisonsget_multi_casworkloads (a hotspot for IdentityCache)Reduce allocations in common operation paths (#1111)
Symbol#nameoverSymbol#to_sto return a frozen string without allocation...) inClient#performandThreadsafe#requestto avoid splat array allocationmatch?inKeyRegularizer#encodeto avoidMatchDataobject allocationgetworkloadFix pathological memory behavior in
ResponseBuffer(#1114)compact_if_neededwas intended to reclaim memory by slicing off consumed bytes, butbuffer.byteslice(@​offset..)on an unfrozen string causes Ruby to allocate a hidden third string as the copy-on-write owner rather than freeing the originalread/read_nonblock, avoiding reallocation on each response readget_multi_casbenchmark over 10,000 iterationsResponseBuffer(#1115)Features:
delete_multinow returns the number of keys found and deleted (#1126)NF, so any response received before the terminator is a key that was not deletedRetryableNetworkError) network errors, so both paths behave consistently; the returned count is best-effort and may under-report if a network error triggers a retry, since keys deleted before the error are not recountedBug Fixes:
Raise instead of returning a truncated value when the peer closes mid-response (#1135)
IO#read(count)on a blocking socket accumulates across TCP chunks and hands back a shorter buffer (ornil) in only one case: the stream hit EOF. That short buffer was passed through as the response body, so a memcached restart, proxy drop, or load balancer timeout partway through a response could surface a truncated but still decodable value to the caller, indistinguishable from a real oneSocket#readfull, which enforces the same contractTear down the connection when a non-
StandardErroraborts a request (#1136)Async::StopandThread#killdescend fromExceptionrather thanStandardError, so the rescue clauses inProtocol::Base#requestnever saw them; a scheduler cancelling a fiber parked on a response read skippedcloseentirely, leaving the connection marked as having a request in progress with partial response bytes still unread on the wire, and returning that half-used client to the pool underconnection_poolProtocol::Base#requestnow closes in anensureunless the request ran to completion, andConnectionManager#closeperforms its state cleanup in anensureso a second cancellation landing inside@sock.closecannot leave the socket non-nil with the request still marked in progressDalli::DalliErrorandDalli::MarshalErrornow close the connection at the point of failure rather than at the start of the next request; those paths already left the request in progress andConnectionManager#confirm_ready!closed on the next call, so this changes when the close happens rather than adding oneFix
ResponseBuffercompaction logic (#1119)COMPACT_THRESHOLDwas removed in #1116 as apparently unused, but the constant was referenced by the compaction guard; its absence silently disabled buffer compactionString#bytesplice(backed bymemmove) for true in-place compactionMaintenance:
Scope
StrictWarningsto Dalli's own source (#1134)-wand prepends a hook toWarning.singleton_classthat turns warnings into failures, but that hook is global: a warning emitted while loading any third-party gem aborted the whole suite before a single test ranjson2.21.2's pure-Ruby generator (used on JRuby, where the C extension is unavailable) warnsmethod redefined; discarding old to_hashat require time, which took thejruby-10CI job red with no change to Dallilib/andtest/; attribution prefers the location Ruby embeds in the message, since the stack at that point describes the require chain rather than the offending codeKernel#warncallers also required walking the stack rather than indexing it (Ruby 3.3/3.4 push an<internal:warning>frame that 4.0 does not), skipping RubyGems'Kernel#warnshim (active on JRuby but not CRuby), and resolving relative backtrace pathsMake raw and namespace fast path tests actually use those options (#1129)
rawandnamespacevariants passed those options to the helper that starts memcached, which configures the client the tests then discarded, so neither option was ever exercisedBenchmark
set_multiand add adelete_multitarget (#1132)set_multireports that were commented out pending the arrival ofset_multi, resolving the accompanying TODOdelete_multitarget comparing the pipelined path against N single deletesBump CI memcached to 1.6.41 and run benchmarks on pull requests (#1133)
Disable RuboCop metrics cops (#1128)
Remove
PIDCachemodule (#1125)Process.pidis cached natively by Ruby 3.3+ (via https://bugs.ruby-lang.org/issues/19443), making the manual cache unnecessary now that Dalli requires Ruby 3.3+Remove unused
COMPACT_THRESHOLDconstant fromResponseBuffer(#1116)Use
String#byteindexinstead ofString#indexwhen searching for the response terminator ingetk_response_from_buffer(#1112)byteslice;byteindexmakes the intent explicit, though both return the same value since the buffer encoding is alwaysBINARYMake single-server fast path tests actually exercise the fast path (#1127)
single_server_clienttest helper that builds a client with a single address, and uses it in the affectedget_multi,set_multi, anddelete_multitestsroidrage/lograge (lograge)
v0.15.0Compare Source
require 'logger'to fix loading on Ruby 3.4+ where it is no longer autoloaded #399add_runtime_dependencywithadd_dependencyin the gemspec #399mitlibraries/mitlibraries-theme (mitlibraries-theme)
v1.5: Rails 8.xCompare Source
What's Changed
New Contributors
Full Changelog: MITLibraries/mitlibraries-theme@v1.4...v1.5
ruby/net-imap (net-imap)
v0.6.6Compare Source
What's Changed
Fixed
This bug was introduced by v0.6.5 as part of #712.
It causes some valid string arguments (which should be sent as IMAP
literalvalues) to raise aDataFormatErrorexception (without sending).Full Changelog: ruby/net-imap@v0.6.5...v0.6.6
v0.6.5Compare Source
What's Changed
Added
#disconnectby @nevans in #689#utf8_enabled?by @nevans in #715Adds
#enabledand#enabled?methods.Fixed
Other Changes
#starttlsreceiver thread errors with caller's backtrace by @nevans in #711handle_responsefromreceive_responsesby @nevans in #695Miscellaneous
Full Changelog: ruby/net-imap@v0.6.4.1...v0.6.5
rubocop/rubocop (rubocop)
v1.88.2Compare Source
Bug fixes
Lint/ToJSON, which did not flag singletondef self.to_jsondefinitions. ([@bbatsov][])Lint/UnreachableCode, which only flagged the first statement after a flow-of-control statement instead of every unreachable statement that followed it. ([@bbatsov][])Lint/UselessNumericOperation, which only flagged bare method-call receivers and ignored local variables, instance/class/global variables, and constants (e.g.@x + 0,CONST * 1). ([@bbatsov][])Lint/Voidwhere safe-navigation calls to nonmutating methods (e.g.x&.sort) were not flagged whenCheckForMethodsWithNoSideEffectsis enabled. ([@bbatsov][])Style/ArrayIntersectwith the block form usinginclude?(e.g.array1.any? { |e| array2.include?(e) }), which was only detected formember?. ([@bbatsov][])Style/CollectionCompact, which did not flaggrep_v(nil)/grep_v(NilClass)on a safe-navigation call (e.g.array&.grep_v(nil)). ([@bbatsov][])Style/DefWithParentheseswith a single-line definition whose body follows a semicolon (e.g.def foo(); end), where the parentheses can be safely omitted. ([@bbatsov][])Style/MixinUsagewhen including multiple modules in one statement. ([@bbatsov][])Style/ModuleFunctionwhen the module body is a single statement. ([@bbatsov][])Style/RedundantCurrentDirectoryInPathwith double-quoted strings containing interpolation. ([@bbatsov][])Style/RedundantHeredocDelimiterQuoteswith double-quoted delimiters whose body contains interpolation or escapes. ([@bbatsov][])Gemspec/DuplicatedAssignmentwith multiple specifications. ([@bbatsov][])Layout/CommentIndentationwith a comment above an inline access modifier (e.g.private def foo) whenLayout/AccessModifierIndentationis configured withEnforcedStyle: outdent. ([@grk][])Style/InvertibleUnlessConditionwith a multi-statement begin condition. ([@bbatsov][])Style/ArgumentsForwardingandStyle/MethodDefParentheseswhen autocorrection conflicts while adding parentheses to method definition arguments. ([@koic][])Lint/ToJSONthat produced invalid Ruby (def to_json(*_args)()) when the method had explicit empty parentheses. ([@bbatsov][])Style/MethodCallWithoutArgsParentheseswhen empty parentheses span multiple lines and the method call has a block. ([@koic][])Style/HashConversionwith a splat argument, which previously produced an invalid hash literal. ([@bbatsov][])Style/HashLookupMethodwith safe navigation, where the suggested bracket form would be the unreadablehash&.[](key). ([@bbatsov][])Style/IdenticalConditionalBranchesthat hoisted the moved expression to column zero instead of matching the surrounding indentation. ([@bbatsov][])Style/InvertibleUnlessConditionwith mixed&&/||conditions, which lost the required parentheses when inverting. ([@bbatsov][])Style/TrivialAccessorswhenAllowPredicates: falseis set and a trivial reader is defined as a predicate class method. ([@koic][])Layout/LineLengthwithSplitStringswhen an over-long string is indented under a multi-line parent. ([@bbatsov][])Style/MissingRespondToMissingwhenmethod_missingis defined at the top level or alongside sibling classes. ([@bbatsov][])Layout/ElseAlignmentwhen usingelsewithin a block that is part of a larger expression. ([@koic][])Layout/MultilineMethodCallIndentationwhen a method chain is nested inside a parenthesized argument list or a grouped expression within a hash pair value. ([@koic][])Style/StructInheritanceautocorrect dropping leading indentation when class is inside a module or namespace. ([@amckinnie][])Style/DocumentationMethodignoringAllowedMethodsfor inline modifier defs. ([@bbatsov][])Style/LambdaCallwhen the argument list contains a comment, which the autocorrect would have dropped. ([@bbatsov][])Changes
on_new_investigation,on_investigation_end, andon_other_fileonly to cops that refine them, and by skippingafter_*dispatch when no cop needs it. ([@bbatsov][])Lint/Debuggerperformance on code without debugger calls. ([@bbatsov][])Lint/NumericOperationWithConstantResultautocorrect as unsafe because it drops the operands, discarding their side effects and silencing cases where the result is not actually constant (e.g.x / xraises whenxis0). ([@bbatsov][])AllowedPatterns,ForbiddenPatterns, andAllowedMethodsby compiling the configured patterns only once. ([@bbatsov][])Style/IfUnlessModifierand other modifier cops on files with many comments or conditionals. ([@bbatsov][])rubocop/rubocop-rails (rubocop-rails)
v2.36.0Compare Source
Bug fixes
Rails/EagerEvaluationLogMessagewhen the interpolated string is passed toRails.logger.debugas the sole body of an enclosing block such aseachortap. ([@conwayje][])Rails/ReversibleMigrationwhen usingremove_indexwithout a column inside achange_tableblock. ([@ilianah][])Rails/SafeNavigationwhen usingtry/try!with a symbol to proc such asfoo.try(&:bar). ([@koic][])Rails/LinkToBlankwhenStyle/TrailingCommaInArgumentswithEnforcedStyleForMultiline: consistent_commaadds a trailing comma, which produced a duplicate comma. ([@koic][])MigratedSchemaVersionsetting so it works for all cops. ([@lovro-bikic][])Changes
Rails/SafeNavigationwhen usingtry/try!with operator methods such as[],[]=, and==. ([@koic][])ahorek/terser-ruby (terser)
v1.2.8Compare Source
rails/web-console (web-console)
v4.3.0Compare Source
Configuration
📅 Schedule: (UTC)
* 0-4,22-23 * * 1-5)* * * * 0,6)🚦 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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.