1
0
mirror of https://github.com/redis/node-redis.git synced 2025-12-09 21:21:11 +03:00

docs: extract supported Redis versions into SUPPORTED_REDIS_VERSIONS.md (#3131)

This commit is contained in:
Nikolay Karadzhov
2025-11-12 11:53:14 +02:00
committed by GitHub
parent c9f8cbcad5
commit bcf8d2b36b
3 changed files with 15 additions and 14 deletions

View File

@@ -304,15 +304,7 @@ The Node Redis client class is an Nodejs EventEmitter and it emits an event each
Node Redis is supported with the following versions of Redis:
| Version | Supported |
| ------- | ------------------ |
| 8.2.z | :heavy_check_mark: |
| 8.0.z | :heavy_check_mark: |
| 7.4.z | :heavy_check_mark: |
| 7.2.z | :heavy_check_mark: |
| < 7.2 | :x: |
> Node Redis should work with older versions of Redis, but it is not fully tested and we cannot offer support.
See [Supported Redis Versions](https://github.com/redis/node-redis/blob/master/SUPPORTED_REDIS_VERSIONS.md).
## Migration

View File

@@ -4,11 +4,7 @@
Node Redis is generally backwards compatible with very few exceptions, so we recommend users to always use the latest version to experience stability, performance and security.
| Version | Supported |
|---------|--------------------|
| 4.0.z | :heavy_check_mark: |
| 3.1.z | :heavy_check_mark: |
| < 3.1 | :x: |
See [Supported Redis Versions](https://github.com/redis/node-redis/blob/master/SUPPORTED_REDIS_VERSIONS.md).
## Reporting a Vulnerability

View File

@@ -0,0 +1,13 @@
# Supported Redis Versions
Node Redis is supported with the following versions of Redis:
| Version | Supported |
| ------- | ------------------ |
| 8.2.z | :heavy_check_mark: |
| 8.0.z | :heavy_check_mark: |
| 7.4.z | :heavy_check_mark: |
| 7.2.z | :heavy_check_mark: |
| < 7.2 | :x: |
> Node Redis should work with older versions of Redis, but it is not fully tested and we cannot offer support.