chore(deps): update dependency redis to v6 - #655
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/redis-6.x
branch
from
June 24, 2026 18:00
75af090 to
872ffcb
Compare
renovate
Bot
force-pushed
the
renovate/redis-6.x
branch
from
July 1, 2026 22:15
872ffcb to
b052e0f
Compare
renovate
Bot
force-pushed
the
renovate/redis-6.x
branch
from
July 31, 2026 21:27
b052e0f to
92c1169
Compare
renovate
Bot
force-pushed
the
renovate/redis-6.x
branch
from
August 12, 2026 00:05
92c1169 to
0e6b12c
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:
^5.12.1→^6.2.1Release Notes
redis/node-redis (redis)
v6.2.1Compare Source
What's Changed
New Contributors
Full Changelog: https://github.com/redis/node-redis/compare/redis@6.2.0...redis@6.2.1
v6.2.0Compare Source
6.2.0
✨ Highlights
Cluster commands now follow the server's request/response policies. node-redis reads each command's routing policy from the server's
COMMANDmetadata and routes and aggregates accordingly, so the cluster client behaves much more like a single server. Multi-key commands that span hash slots —MGET,MSET,DEL,EXISTS,TOUCH,UNLINK— are transparently split per slot and their replies reassembled in caller order, so cross-slot calls that previously failed withCROSSSLOTnow just work. Fan-out commands such asKEYS,DBSIZE,FLUSHALL,PING,WAIT,SCRIPT EXISTSandCONFIG SETrun across every shard (or every node) and their replies are aggregated per the server's policy,SCANwalks the whole cluster behind a per-client virtual cursor, andRANDOMKEY/FT.CURSORget correct cluster-aware routing. Replica read-scaling was also aligned with the server flags, so read-only keyless commands (DBSIZE,KEYS,SCAN,RANDOMKEY, and the RediSearch / time-series reads) can be served from replicas again.sendCommandpath: a table-recognized command sent raw — e.g.cluster.sendCommand(['DBSIZE'])— now follows its policy (fan-out and aggregate) instead of hitting a single node. Callers who relied on raw commands for per-node operations should target a specific node withcluster.nodeClient(node).sendCommand(...).This release also brings a broad wave of new command coverage across the client and modules. The time-series package gains the most: new
TS.NRANGE/TS.NREVRANGEmulti-key pivot commands, aTS.READcursor reader,TS.QUERYLABELS,EXCLUDEEMPTYonMRANGE/MREVRANGE, and multi-aggregator support. RediSearch addsFT.ALIASLIST, aCOLLECTreducer forFT.AGGREGATE, HNSWRERANK, timeout warnings on theFT.SEARCHfamily, and the full set of stemmer languages. The core client addsSUNIONCARD/SDIFFCARD,LMOVEM/BLMOVEM,ZREVRANK WITHSCORE,COMMAND DOCS, andXREAD MAXCOUNT/MAXSIZE. A large batch of correctness fixes lands for zero-valued optional arguments (LIMIT 0,DB 0,SAMPLES 0,ENTRIESREAD 0,IDLETIME/FREQ 0,ENTRIESADDED 0) that were previously dropped from the wire, alongside several cluster and sentinel connection-lifecycle fixes.The new HIMPORT command family (managed fieldset lifecycle) ships as experimental — see the warning below.
🚀 New Features
COMMAND DOCSsupport (#3362) — @Hashim1999164LMOVEMandBLMOVEMcommands (#3340) — @nkaradzhovSUNIONCARDandSDIFFCARDset-cardinality commands (#3336) — @nkaradzhovzRevRankWithScore(#3279) — @raashish1601MAXCOUNT/MAXSIZEoptions (#3335) — @nkaradzhovFT.SEARCHfamily (#3338) — @nkaradzhovFT.ALIASLIST(#3351) — @nkaradzhovRERANKparameter for HNSW vector fields (#3356) — @nkaradzhovCOLLECTreducer toFT.AGGREGATE(#3310) — @nkaradzhovTS.NRANGE/TS.NREVRANGEmulti-key pivot commands (#3337) — @nkaradzhovTS.NRANGE/TS.NREVRANGE(#3360) — @nkaradzhovTS.QUERYLABELS(LABELSandVALUESforms) (#3354) — @nkaradzhovEXCLUDEEMPTYtoTS.MRANGE/TS.MREVRANGE(#3352) — @nkaradzhovTS.READcursor-read command (#3322) — @nkaradzhovGET,MGET, andARRPOP(#3205) — @JeanSamGirard🐛 Bug Fixes
extractAllCommandsdrain the write queue (#3364) — @GiHoon1123connect()instead of hanging when the resolved master is unreachable (#3331) — @GiHoon1123XADD/XTRIMwithLIMIT 0must emit the argument (#3342) — @Develop-KIMXGROUP CREATE/SETIDwithENTRIESREAD 0must emit the argument (#3333) — @Develop-KIMXSETIDwithENTRIESADDED 0must emit the argument (#3324) — @spokodevMEMORY USAGEmust emitSAMPLESwhen 0 (#3328) — @Develop-KIMRESTOREwithIDLETIME/FREQ 0must emit the argument (#3323) — @spokodevGETEX PXATwith aDatemust encode milliseconds (#3317) — @spokodevCOPYwithDB 0must emit theDBargument (#3318) — @spokodevFT.CREATEscores (#3355) — @alencristenhScanValuesIteratornow yields values instead of field names (#3344) — @winklemad🧰 Maintenance
GITHUB_TOKENtocontents: read(#3291) — @arpitjain099FT.SEARCH(#3339) — @nkaradzhovXCLAIM JUSTID(#3376) — @Piyush0049LATENCY LATESTtest (#3326) — @nkaradzhovrootNodesconfig is not inherited by node connections (#3327) — @nkaradzhovendevent description to referenceclose()anddestroy()(#3332) — @Wnayarjws(#3372),on-headers/express-session(#3371),uuid/nyc(#3370),esbuild/tsx(#3309) — @dependabotNew Contributors
Full Changelog: https://github.com/redis/node-redis/compare/redis@6.1.0...redis@6.2.0
v6.1.0Compare Source
What's Changed
New Contributors
Full Changelog: https://github.com/redis/node-redis/compare/redis@6.0.1...redis@6.1.0
v6.0.1Compare Source
What's Changed
New Contributors
Full Changelog: https://github.com/redis/node-redis/compare/redis@6.0.0...redis@6.0.1
v6.0.0Compare Source
Changes
This is the first major release of node-redis since 5.x. The headline change is RESP3 by default, alongside broader Redis 8.8 command coverage, pubsub/cluster reliability fixes, and a bumped minimum Node.js version.
Key changes
🔥 Breaking Changes
See the v5 → v6 migration guide for migration steps.
keepAliveInitialDelay(30s) andcommandTimeout(5s) (#3292)🔒 Security
@azure/msal-nodeto 5.x to drop vulnerable transitiveuuid(CVE-2026-41907) (#3269)🚀 New Features
CLIENT UNBLOCKcommand (#3266)XNACKcommand with options (#3238)INCREXandINCREXBYFLOATcommands (#3288)COUNTaggregator toZINTER/ZINTERSTORE/ZUNION/ZUNIONSTORE(#3243)FPHAoption toJSON.SET(#3235)duplicate()method toRedisSentinel(#3212)unix://URLs inparseURL(#3271)RedisClient,RedisCluster,RedisSentineland pool classes (#3251)🐛 Bug Fixes
LOAD *inFT.AGGREGATE(#3241)@azure/msal-nodeto 5.x to drop vulnerableuuidtransitive (#3269)📚 Documentation
🧰 Maintenance
min-release-agecooldown to.npmrc(#3286)basic-ftp(#3225),tmpand@inquirer/editor(#3294)👥 New Contributors
We'd like to thank all the contributors who worked on this release!
@Rohan5commit, @opensourcezeal, @aarond-sp, @claygeo, @raashish1601, @watersRand, @PavelPashov, @elimelt, @nkaradzhov
Full Changelog: https://github.com/redis/node-redis/compare/redis@5.12.1...redis@6.0.0
Configuration
📅 Schedule: (in timezone Europe/Amsterdam)
🚦 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 this update again.
This PR was generated by Mend Renovate. View the repository job log.