1
0
mirror of https://github.com/redis/node-redis.git synced 2025-12-11 09:22:35 +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: Node Redis is supported with the following versions of Redis:
| Version | Supported | See [Supported Redis Versions](https://github.com/redis/node-redis/blob/master/SUPPORTED_REDIS_VERSIONS.md).
| ------- | ------------------ |
| 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.
## Migration ## 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. 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 | See [Supported Redis Versions](https://github.com/redis/node-redis/blob/master/SUPPORTED_REDIS_VERSIONS.md).
|---------|--------------------|
| 4.0.z | :heavy_check_mark: |
| 3.1.z | :heavy_check_mark: |
| < 3.1 | :x: |
## Reporting a Vulnerability ## 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.