Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 11, 2025

This PR contains the following updates:

Package Change Age Confidence
redis 4.7.1 -> 5.10.0 age confidence

Release Notes

redis/node-redis (redis)

v5.10.0

Compare Source

Changes

🚀 New Features

  • Add MSETEX command support (#​3116)
  • Add CLAIM attribute to XREADGROUP command (#​3122)
  • Add index/query doc page examples (#​3109)

🧪 Experimental Features

🐛 Bug Fixes

  • Fix dist/package.json version bumping in release process (#​3125)
  • Prevent false-ready state when socket errors during handshake (#​3128)
  • Don't parse number properties in XREADGROUP (#​3133)

🧰 Maintenance

  • Apply proxy improvements (#​3121)
  • Mark 8.4 features as experimental (#​3134)
  • Extract supported Redis versions into SUPPORTED_REDIS_VERSIONS.md (#​3131)
  • Bump test container image to 8.4.0 (#​3139)

Contributors

We'd like to thank all the contributors who worked on this release!

Full Changelog: https://github.com/redis/node-redis/compare/redis@5.9.0...redis@5.10.0

v5.9.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/redis/node-redis/compare/redis@5.8.3...redis@5.9.0

v5.8.3

Compare Source

What's Changed

Full Changelog: https://github.com/redis/node-redis/compare/redis@5.8.2...redis@5.8.3

v5.8.2

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/redis/node-redis/compare/redis@5.8.1...redis@5.8.2

v5.8.1

Compare Source

What's Changed

Full Changelog: https://github.com/redis/node-redis/compare/redis@5.8.0...redis@5.8.1

v5.8.0

Compare Source

v5.7.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/redis/node-redis/compare/redis@5.6.1...redis@5.7.0

v5.6.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/redis/node-redis/compare/redis@5.6.0...redis@5.6.1

v5.6.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/redis/node-redis/compare/redis@5.5.6...redis@5.6.0

v5.5.6

Compare Source

Note: During our efforts to automate the release process, we inadvertently bumped the version from 5.1.1 to 5.5.5, skipping a few minor versions. No features or changes were actually released in those skipped versions — 5.5.6 is the first release since 5.1.1 with actual changes. We’re now back on track, and the automation is in place moving forward.

What's Changed

New Contributors

Full Changelog: https://github.com/redis/node-redis/compare/redis@5.1.1...redis@5.5.6

v5.5.5

Compare Source

v5.1.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/redis/node-redis/compare/redis@5.1.0...redis@5.1.1

v5.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/redis/node-redis/compare/redis@5.0.1...redis@5.1.0

v5.0.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/redis/node-redis/compare/redis@5.0.0...redis@5.0.1

v5.0.0

Compare Source

Redis Node.js Client Release Notes

🚀 New Features

  • EntraID added support for azure identity by @​bobymicroby in #​2901
  • Added HGETEX, HSETEX, HGETDEL hash field expiration commands by @​htemelski in #​2907
  • feat(auth): add Entra ID identity provider integration for Redis client authentication by @​bobymicroby in #​2877
  • RESP3 support : Node Redis v5 adds support for RESP3, the new Redis serialization protocol introduced in Redis 6.0. RESP3 offers richer data types and improved type handling compared to RESP2
  • Sentinel: Redis Sentinel provides high availability for Redis through monitoring, automatic failover, and client-side support.
  • Type mapping: Version five allows you configuring the type mapping. Responses can be mapped to objects, arrays, or maps. Likewise, numeric formats can be mapped to either strings or numbers.

🛠️ Improvements

BREAKING CHANGES

  • Removed graph module by @​bobymicroby in #​2897
  • 'FT.PROFILE' now returns untyped (as-is) response by @​bobymicroby in #​2893
  • Introduced a client-side default dialect for Redis' search and query capabilities. By default, the client now overrides the server-side dialect with version 2, automatically appending DIALECT 2 to commands like FT.AGGREGATE and FT.SEARCH.
    Important: Be aware that the query dialect may impact the results returned. If needed, you can revert to a different dialect version by passing an option to the search commands. You can find further details in the query dialect documentation. by @​htemelski in #​2895
client.ft.search('index', '*', {DIALECT: 1})
  • Client Configuration:

    • keepAlive option has been split into keepAlive (boolean) and keepAliveInitialDelay (number)
    • Legacy mode is now accessed via .legacy() method instead of { legacyMode: true }
  • Command Options:

    • New API uses "proxy client" to store options instead of passing them directly to commands
    • Example: client.withCommandOptions({ ... }).get('key') instead of client.get(client.commandOptions({ ... }), 'key')
  • Connection Management:

    • client.QUIT/quit() is replaced by client.close()
    • client.disconnect() has been renamed to client.destroy()
  • Scan Iterators:

    • Now yield collections of items instead of individual items
    • Example: for await (const keys of client.scanIterator()) { ... } returns arrays of keys
  • Isolation Pool:

    • Superseded by RedisClientPool for better separation of concerns
  • Cluster Multi:

    • cluster.multi().addCommand() now requires isReadonly parameter for replica execution support
  • Boolean to Number Types:

    • Many commands now return numbers (0/1) instead of booleans for better Redis protocol alignment
    • Affects: COPY, EXPIRE, EXPIREAT, HEXISTS, HSETNX, MOVE, PEXPIRE, PEXPIREAT, PFADD, RENAMENX, SETNX, etc.
  • API Changes:

    • Many commands have updated parameter names and return types
    • Enums replaced with constants (e.g., RedisFlushModesREDIS_FLUSH_MODES)
    • Module-specific commands (JSON, Search, Time Series) have parameter restructuring

Full migration details: https://github.com/redis/node-redis/blob/master/docs/v4-to-v5.md

New Contributors


Configuration

📅 Schedule: Branch creation - "on Sunday" (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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from xuhdev as a code owner May 11, 2025 02:12
@renovate renovate bot force-pushed the renovate/redis-5.x branch 3 times, most recently from b6270e3 to 955709d Compare May 18, 2025 04:02
@renovate renovate bot force-pushed the renovate/redis-5.x branch 2 times, most recently from b381919 to ab7849f Compare May 27, 2025 17:09
@renovate renovate bot force-pushed the renovate/redis-5.x branch 2 times, most recently from 31a9afb to 25cbbb9 Compare June 4, 2025 15:41
@renovate renovate bot force-pushed the renovate/redis-5.x branch 4 times, most recently from e4151a2 to ee263ad Compare June 15, 2025 02:05
@renovate renovate bot force-pushed the renovate/redis-5.x branch from ee263ad to 8b71e5e Compare June 22, 2025 07:26
@renovate renovate bot force-pushed the renovate/redis-5.x branch from 8b71e5e to 64f964c Compare June 29, 2025 20:12
@renovate renovate bot force-pushed the renovate/redis-5.x branch 2 times, most recently from 8a72000 to c4e8e21 Compare July 15, 2025 17:50
@renovate renovate bot force-pushed the renovate/redis-5.x branch 2 times, most recently from ea290fd to 7df2aca Compare August 3, 2025 23:12
@renovate renovate bot force-pushed the renovate/redis-5.x branch 2 times, most recently from 9536d8d to 3c62183 Compare August 12, 2025 10:45
@renovate renovate bot force-pushed the renovate/redis-5.x branch 2 times, most recently from 5d75fe3 to 475c336 Compare August 20, 2025 18:46
@renovate renovate bot force-pushed the renovate/redis-5.x branch from 475c336 to c0e53f4 Compare August 27, 2025 12:08
@renovate renovate bot force-pushed the renovate/redis-5.x branch 3 times, most recently from 61b9ada to 3ad2da9 Compare September 28, 2025 05:44
@renovate renovate bot force-pushed the renovate/redis-5.x branch 3 times, most recently from 30872c7 to a2139a2 Compare October 9, 2025 15:31
@renovate renovate bot force-pushed the renovate/redis-5.x branch from a2139a2 to 6be0920 Compare October 12, 2025 08:14
@renovate renovate bot force-pushed the renovate/redis-5.x branch 4 times, most recently from 21919f2 to 9b803fb Compare October 19, 2025 06:55
@renovate renovate bot force-pushed the renovate/redis-5.x branch 2 times, most recently from 25cce86 to f866fbc Compare October 27, 2025 00:53
@renovate renovate bot force-pushed the renovate/redis-5.x branch 6 times, most recently from aa83968 to 274e190 Compare November 26, 2025 18:30
@renovate renovate bot force-pushed the renovate/redis-5.x branch 2 times, most recently from 65964df to 4566556 Compare December 7, 2025 06:22
@renovate renovate bot force-pushed the renovate/redis-5.x branch from 4566556 to 93cec2d Compare December 13, 2025 04:45
@renovate renovate bot force-pushed the renovate/redis-5.x branch from 93cec2d to a55dfdf Compare December 13, 2025 04:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant