From 904b872e85e0872c348b9414a5b43738643f4d65 Mon Sep 17 00:00:00 2001 From: Nikolay Karadzhov Date: Fri, 7 Nov 2025 16:19:19 +0200 Subject: [PATCH] docs: extract supported Redis versions into SUPPORTED_REDIS_VERSIONS.md --- README.md | 10 +--------- SECURITY.md | 6 +----- SUPPORTED_REDIS_VERSIONS.md | 13 +++++++++++++ 3 files changed, 15 insertions(+), 14 deletions(-) create mode 100644 SUPPORTED_REDIS_VERSIONS.md diff --git a/README.md b/README.md index e6332764e4c..f8de583c934 100644 --- a/README.md +++ b/README.md @@ -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_sVERSIONS.md). ## Migration diff --git a/SECURITY.md b/SECURITY.md index f96aa68dc12..17255f023ab 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -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_sVERSIONS.md). ## Reporting a Vulnerability diff --git a/SUPPORTED_REDIS_VERSIONS.md b/SUPPORTED_REDIS_VERSIONS.md new file mode 100644 index 00000000000..35ef0e4187e --- /dev/null +++ b/SUPPORTED_REDIS_VERSIONS.md @@ -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.