Update dependency redis to v6 - #7297
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/redis-6.x
branch
3 times, most recently
from
August 25, 2026 17:49
7be362f to
e541c61
Compare
renovate
Bot
force-pushed
the
renovate/redis-6.x
branch
from
August 25, 2026 21:54
e541c61 to
2cc107f
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 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:
">= 3", "< 5"→">= 3", "< 6.0.1"Release Notes
redis/redis-rb (redis)
v6.0.0Compare Source
Breaking changes
HELLO 3) by default; passprotocol: 2to keep RESP2.GEOPOSandGEOSEARCH/GEORADIUSwithWITHCOORDnow return coordinates asFloatinstead ofString.See specs/migration-resp3.md. (#1351)
New features
FT.*):ft_create,ft_alter,ft_dropindex,ft_info,ft_search,ft_aggregate, vector and hybrid search, suggestions,dictionaries, synonyms, aliases, and spellcheck. Not supported by
Redis::Distributed.(#1356, #1359, #1360, #1361)
json_set,json_get,json_mset,json_mget,json_del,json_forget,json_clear,json_merge,json_arr*,json_obj*,json_str*,json_numincrby,json_toggle,json_type,json_debug_memory. (#1346, #1347, #1348, #1349)lmovemandblmovem(Redis 8.10). (#1363)sunioncardandsdiffcard(Redis 8.10). (#1357)xreadandxreadgroupnow acceptmax_count:andmax_size:(Redis 8.10). (#1358)hexpire,hpexpire,httlandhpttl(Redis 7.4). (#1324, #1325, #1331)hscanandhscan_eachnow acceptnovalues: true(Redis 7.4). (#1327)geosearchandgeosearchstore(Redis 6.2); geo commands are now available onRedis::Distributed. (#1342)geoaddnow acceptsnx:,xx:andch:; geo radius searches acceptcount_any:;xaddaccepts
limit:(Redis 6.2). (#1345)Redis::Distributednow implementshscan,hscan_eachandhstrlen. (#1319)CLIENT SETINFO(lib-name=redis-rb,lib-ver=<version>). Extend the reported name withdriver_info:, or disable withdriver_info: false. See the README "Client identification" section. (#1369)Experimental
himport_prepare,himport_set,himport_discardandhimport_discard_all(Redis 8.10
HIMPORT). Lost fieldsets are re-prepared and retried automatically; disable withhimport_auto_prepare: false. The API may change in a future minor release. See the README"Bulk hash ingestion (HIMPORT)" section. (#1364)
Bug fixes
FloatifyPairsto not re-transform already transformed replies. (#1354)unlinknow returns0for an empty keyset, consistent withdel. (#1316)Maintenance
redis-clientto the exact version0.30.1(previously>= 0.22.0); includes thereply-desynchronization fix from 0.26.4. (#1350, #1352)
redis-rbis now maintained by the Redis Ltd company.redislabs/client-libs-testDocker images; CI now coversMRI 3.2/3.3/3.4/4.0 and TruffleRuby against Redis 7.2–8.10; JRuby removed. (#1317, #1318, #1344)
executablesconfig from the gemspec. (#1322)v5.4.1Compare Source
v5.4.0Compare Source
blmpopmethod to actually useBLMPOP, it was mistakenly issuingLMPOPcommands.xaddnow accepts aminid:argument.zrankandzrevranknow acceptswith_score:argument.Redis#callnow accept a block, allowing to useRedisinstances whereRedisClientis expected.v5.3.0Compare Source
hgetallwhen used inside amultitransaction which is itself inside a pipeline.v5.2.0Compare Source
redis-clientdoes.subscribe_with_timeout. See #1259.exceptionflag inpipelinedallowing failed commands to be returned in the result array when set tofalse.v5.1.0Compare Source
multinow accept awatchkeyword argument likeredis-client. See #1236.bitcountandbitposnow accept ascale:argument on Redis 7+. See #1242expiretimeandpexpiretime. See #1248.v5.0.8Compare Source
Redis#without_reconnectfor sentinel clients. Fix #1212.sentinel_username,sentinel_passwordfor sentinel clients. Bumpredis-clientto>=0.17.0. See #1213v5.0.7Compare Source
redis-client 0.15.0when using Redis Sentinel. Fix #1209.v5.0.6Compare Source
config.read_timeoutin blocking commands rather than an arbitrary 100ms. See #1175.v5.0.5Compare Source
v5.0.4Compare Source
ttlargument to integer inexpire,setexand a few others.v5.0.3Compare Source
OutOfMemoryErroras a subclass ofCommandErrorv5.0.2Compare Source
Redis#closeto properly reset the fork protection check.v5.0.1Compare Source
Redis::Connections.driversmethod to be compatible with older sidekiq versions.v5.0.0Compare Source
subscribe,unsubscribe,psubscribeandpunsubscribefrom a subscribed client. See #1131.MD5for hashing server nodes inRedis::Distributed. This should improve keys distribution among servers. See #1089.saddandsremto now always return an Integer.sadd?andsrem?which always return a Boolean.IDLEparamter inxpending.redis-clusteringcompanion gem.selectno longer record the current database. If the client has to reconnect afterselectwas used, it will reconnect to the original database.Redis.newwill now raise an error if provided unknown options.BLPOP, etc). Timeout now must be passed as an option:r.blpop("key", timeout: 2.5)loggeroption.reconnect_delay_maxandreconnect_delay, you can pass precise sleep durations toreconnect_attemptsinstead.queueandcommitmethods. Usepipelinedinstead.Redis::Future#==.pipelinedandmultisignature. Commands now MUST be called on the block argument, not the original redis instance.Redis.current. You shouldn't assume there is a single global Redis connection, use a connection pool instead,and libaries using Redis should accept a Redis instance (or connection pool) as a config. E.g.
MyLibrary.redis = Redis.new(...).synchronydriver.Redis.exists_returns_integer, it's now always enabled.Configuration
📅 Schedule: (UTC)
🚦 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.