From 04fd609bf617279cf8c7947f156883ce920b80be Mon Sep 17 00:00:00 2001 From: Kaitlyn Michael Date: Tue, 14 Oct 2025 14:29:04 -0500 Subject: [PATCH 1/9] initial rough draft --- .../configuration/advanced-capabilities.md | 20 +++- .../rc/databases/version-management.md | 103 ++++++++++++++++++ 2 files changed, 121 insertions(+), 2 deletions(-) create mode 100644 content/operate/rc/databases/version-management.md diff --git a/content/operate/rc/databases/configuration/advanced-capabilities.md b/content/operate/rc/databases/configuration/advanced-capabilities.md index 3c18048035..4efbf58704 100644 --- a/content/operate/rc/databases/configuration/advanced-capabilities.md +++ b/content/operate/rc/databases/configuration/advanced-capabilities.md @@ -17,7 +17,7 @@ Available options depend on your database plan and **Type**. ## Redis Cloud Essentials {#essentials} -All Redis Cloud Essentials databases with versions prior to Redis 8.0 support [Redis Stack]({{< relref "/operate/oss_and_stack/" >}}), which enables the most frequently used capabilities. +All Redis Cloud Essentials databases with versions prior to Redis 8.0 support [Redis Stack]({{< relref "/operate/oss_and_stack/" >}}), which enables the most frequently used capabilities. {{For Essentials, the Type setting in the General section includes an option for Redis.}} @@ -27,12 +27,28 @@ When the database **Type** is set to _Redis_, the Advanced capabilities section Starting with Redis 8.0, all advanced capabilities provided by Redis Stack are included in Redis by default. -Redis Cloud is updated on a regular basis, which includes the advanced capabilities supported by the service. Versions displayed by the Redis Cloud console may vary from those shown above. For the latest details of any capability, see [Redis Stack and Redis Enterprise]({{< relref "/operate/oss_and_stack/stack-with-enterprise" >}}). +### Version management for Essentials + +- **Auto-upgrades**: Minor version auto-upgrades are enabled by default and cannot be disabled +- **Latest versions**: All new databases automatically use the latest available Redis version +- **Notifications**: You receive notifications when new database versions become available + +For more information about Redis Cloud version management, see [Redis version management]({{< relref "/operate/rc/databases/version-management" >}}). + +Redis Cloud is updated on a regular basis, which includes the advanced capabilities supported by the service. Versions displayed by the Redis Cloud console may vary from those shown above. For the latest details of any capability, see [Redis Stack and Redis Enterprise]({{< relref "/operate/oss_and_stack/stack-with-enterprise" >}}). ## Redis Cloud Pro {#pro} By default, Redis Cloud Pro databases load all supported advanced capabilities. You can choose to load specific capabilities when you create your database. To choose which capabilities to load for your Pro database, [create it with custom settings]({{< relref "/operate/rc/databases/create-database/create-pro-database-new" >}}) and select **More options** when adding your database in the **Sizing tab** to view advanced capability settings. +### Version management for Pro + +- **Auto-upgrades**: Minor version auto-upgrades are enabled by default but can be disabled +- **Manual control**: You can upgrade to any available version at any time +- **Maintenance windows**: Automatic upgrades occur during your defined maintenance window + +For more information about Redis Cloud version management, see [Redis version management]({{< relref "/operate/rc/databases/version-management" >}}). + {{For Pro databases, you can select the capabilities included in your database.}} You can select more than one advanced capability for a database, though there are limits: diff --git a/content/operate/rc/databases/version-management.md b/content/operate/rc/databases/version-management.md new file mode 100644 index 0000000000..eb43ca5937 --- /dev/null +++ b/content/operate/rc/databases/version-management.md @@ -0,0 +1,103 @@ +--- +Title: Redis version management +alwaysopen: false +categories: +- docs +- operate +- rc +description: Describes Redis Cloud version management policy, supported versions, and upgrade options. +linkTitle: Version management +weight: 36 +tocEmbedHeaders: true +--- + +Redis Cloud balances customer control with automated maintenance to ensure your databases run secure, stable, and performant Redis versions. + +{{< note >}} +**We strongly recommend using the latest available version** to benefit from the newest features, performance improvements, and security updates. +{{< /note >}} + +## Supported versions + +| Version | Type | Status | EOL Date | +|---------|------|--------|----------| +| **Redis 8.2** | STS | GA (October 2025) | TBD | +| **Redis 8.0** | STS | Preview | May 1, 2026 | +| **Redis 7.4** | LTS | GA | TBD | +| **Redis 7.2** | LTS | GA | TBD | +| **Redis 6.2** | LTS | GA | Nov 2025* | + +*Redis 6.2 EOL announced one month after Redis 8.2 GA, with EOL 18 months later. + +**LTS (Long-Term Support)**: Final minor release of a major version with extended support. +**STS (Short-Term Support)**: All other minor releases, supported for 6 months after the next minor release. + +## New version policy (Redis 8.2+) + +Starting October 2025: + +- **You select**: Major version only (e.g., Redis 8) +- **We manage**: Minor versions automatically within your selected major +- **You control**: Opt out of auto-upgrades if preferred; major upgrades always require your action + +## How it works + +### Version selection + +**New databases**: Select major version only (Redis 6, 7, or 8). You get the latest minor automatically. + +**Minor upgrades**: +- **Redis 8+**: Auto-upgrade enabled by default (can opt out for Pro) +- **Redis 7 and earlier**: Manual upgrades only + +### Plan differences + +| Feature | Essentials | Pro | +|---------|------------|-----| +| Auto minor upgrades | Always on | Default on, can disable | +| Manual upgrades | No | Yes | +| Maintenance window | Standard | Configurable | + +{{< note >}} +If you opt out of auto-upgrades and reach EOL, Redis Cloud will force upgrade after notifications. +{{< /note >}} + +## Upgrading databases + +### Manual upgrades (Pro) + +1. Select your database > **More actions > Version upgrade** +2. Choose target version > **Upgrade** + +{{< note >}} +Before upgrading: [Back up your data]({{< relref "/operate/rc/databases/back-up-data" >}}), review [breaking changes]({{< relref "/operate/rc/changelog/version-release-notes" >}}), and plan for off-peak hours. +{{< /note >}} + +### Auto-upgrade settings (Pro) + +**Enable/disable**: Database details > **Configuration** > **General** > **Auto-upgrade minor versions** + +**Maintenance windows**: Subscription details > **Maintenance** > Set preferred window + +## Compatibility + +Redis follows [Semantic Versioning](https://semver.org/): **MAJOR.MINOR.PATCH** + +Redis Cloud guarantees: +- No breaking changes in minor releases +- No performance regressions in minor releases +- Backwards compatibility within major versions + +## FAQ + +**Can I prevent auto-upgrades?** +Pro users can opt out of minor auto-upgrades for Redis 8+. Major upgrades always require your action. + +**What if I don't upgrade before EOL?** +Redis Cloud will force upgrade after notifications to ensure security and support. + +**Can I downgrade?** +No automatic downgrades. Restore from backup if needed. + +**How do I identify LTS vs STS?** +Check the [supported versions table](#supported-versions) or database creation interface. From 866bc95790c8a6daf22db36860bdeb8531622ce2 Mon Sep 17 00:00:00 2001 From: Kaitlyn Michael Date: Wed, 15 Oct 2025 10:05:14 -0500 Subject: [PATCH 2/9] copy edits --- .../operate/rc/databases/version-management.md | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/content/operate/rc/databases/version-management.md b/content/operate/rc/databases/version-management.md index eb43ca5937..baef7c6896 100644 --- a/content/operate/rc/databases/version-management.md +++ b/content/operate/rc/databases/version-management.md @@ -21,14 +21,13 @@ Redis Cloud balances customer control with automated maintenance to ensure your | Version | Type | Status | EOL Date | |---------|------|--------|----------| -| **Redis 8.2** | STS | GA (October 2025) | TBD | +| **Redis 8.2** | STS | GA | TBD | | **Redis 8.0** | STS | Preview | May 1, 2026 | | **Redis 7.4** | LTS | GA | TBD | | **Redis 7.2** | LTS | GA | TBD | | **Redis 6.2** | LTS | GA | Nov 2025* | -*Redis 6.2 EOL announced one month after Redis 8.2 GA, with EOL 18 months later. - +**EOL (End of life)**: Databases on EOL versions are not supported. **LTS (Long-Term Support)**: Final minor release of a major version with extended support. **STS (Short-Term Support)**: All other minor releases, supported for 6 months after the next minor release. @@ -37,7 +36,7 @@ Redis Cloud balances customer control with automated maintenance to ensure your Starting October 2025: - **You select**: Major version only (e.g., Redis 8) -- **We manage**: Minor versions automatically within your selected major +- **We manage**: Minor versions automatically within your selected major version - **You control**: Opt out of auto-upgrades if preferred; major upgrades always require your action ## How it works @@ -66,8 +65,8 @@ If you opt out of auto-upgrades and reach EOL, Redis Cloud will force upgrade af ### Manual upgrades (Pro) -1. Select your database > **More actions > Version upgrade** -2. Choose target version > **Upgrade** +1. Select your database: **More actions** > **Version upgrade** +2. Choose target version: **Upgrade** {{< note >}} Before upgrading: [Back up your data]({{< relref "/operate/rc/databases/back-up-data" >}}), review [breaking changes]({{< relref "/operate/rc/changelog/version-release-notes" >}}), and plan for off-peak hours. @@ -75,9 +74,9 @@ Before upgrading: [Back up your data]({{< relref "/operate/rc/databases/back-up- ### Auto-upgrade settings (Pro) -**Enable/disable**: Database details > **Configuration** > **General** > **Auto-upgrade minor versions** +**Enable/disable**: **Database details** > **Configuration** > **General** > **Auto-upgrade minor versions** -**Maintenance windows**: Subscription details > **Maintenance** > Set preferred window +**Maintenance windows**: **Subscription details** > **Maintenance** > **Set preferred window** ## Compatibility From 78a62d34c10291313a7ae5c2319beb3ca02e22ab Mon Sep 17 00:00:00 2001 From: Kaitlyn Michael Date: Wed, 15 Oct 2025 10:25:13 -0500 Subject: [PATCH 3/9] add plans to support table --- .../rc/databases/version-management.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/content/operate/rc/databases/version-management.md b/content/operate/rc/databases/version-management.md index baef7c6896..2e7b8d36fa 100644 --- a/content/operate/rc/databases/version-management.md +++ b/content/operate/rc/databases/version-management.md @@ -19,17 +19,18 @@ Redis Cloud balances customer control with automated maintenance to ensure your ## Supported versions -| Version | Type | Status | EOL Date | -|---------|------|--------|----------| -| **Redis 8.2** | STS | GA | TBD | -| **Redis 8.0** | STS | Preview | May 1, 2026 | -| **Redis 7.4** | LTS | GA | TBD | -| **Redis 7.2** | LTS | GA | TBD | -| **Redis 6.2** | LTS | GA | Nov 2025* | - -**EOL (End of life)**: Databases on EOL versions are not supported. +| Version | Type | Status | EOL Date | Plans | +|---------|------|--------|----------|-------| +| **Redis 8.2** | STS | GA | TBD | Essentials, Pro | +| **Redis 8.0** | STS | *Preview | May 1, 2026 | Essentials | +| **Redis 7.4** | LTS | GA | TBD | Essentials, Pro | +| **Redis 7.2** | LTS | *GA | TBD | Essentials, Pro | +| **Redis 6.2** | LTS | GA | Nov 2025* | Essentials, Pro | + +**EOL (End of life)**: Databases on EOL versions are not supported. **LTS (Long-Term Support)**: Final minor release of a major version with extended support. **STS (Short-Term Support)**: All other minor releases, supported for 6 months after the next minor release. +*7.2 and 8.0 versions are not available for new databases. ## New version policy (Redis 8.2+) From 114c05d9d64a146494af57caeb67035e5d1f24f8 Mon Sep 17 00:00:00 2001 From: Kaitlyn Michael Date: Wed, 15 Oct 2025 10:29:14 -0500 Subject: [PATCH 4/9] EOL auto-upgrade --- content/operate/rc/databases/version-management.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/operate/rc/databases/version-management.md b/content/operate/rc/databases/version-management.md index 2e7b8d36fa..932fcf949c 100644 --- a/content/operate/rc/databases/version-management.md +++ b/content/operate/rc/databases/version-management.md @@ -27,7 +27,7 @@ Redis Cloud balances customer control with automated maintenance to ensure your | **Redis 7.2** | LTS | *GA | TBD | Essentials, Pro | | **Redis 6.2** | LTS | GA | Nov 2025* | Essentials, Pro | -**EOL (End of life)**: Databases on EOL versions are not supported. +**EOL (End of life)**: Databases on EOL versions are not supported. If auto-upgrades are enabled, Redis Cloud will automatically upgrade your database to the following version. **LTS (Long-Term Support)**: Final minor release of a major version with extended support. **STS (Short-Term Support)**: All other minor releases, supported for 6 months after the next minor release. *7.2 and 8.0 versions are not available for new databases. From db4819806d58c82594f42d5189142662f1c5f9bf Mon Sep 17 00:00:00 2001 From: Kaitlyn Michael Date: Wed, 15 Oct 2025 10:36:02 -0500 Subject: [PATCH 5/9] EOL details --- content/operate/rc/databases/version-management.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/content/operate/rc/databases/version-management.md b/content/operate/rc/databases/version-management.md index 932fcf949c..9760b2a2b2 100644 --- a/content/operate/rc/databases/version-management.md +++ b/content/operate/rc/databases/version-management.md @@ -23,14 +23,14 @@ Redis Cloud balances customer control with automated maintenance to ensure your |---------|------|--------|----------|-------| | **Redis 8.2** | STS | GA | TBD | Essentials, Pro | | **Redis 8.0** | STS | *Preview | May 1, 2026 | Essentials | -| **Redis 7.4** | LTS | GA | TBD | Essentials, Pro | -| **Redis 7.2** | LTS | *GA | TBD | Essentials, Pro | -| **Redis 6.2** | LTS | GA | Nov 2025* | Essentials, Pro | +| **Redis 7.4** | LTS | GA | Apr 30, 2028 | Essentials, Pro | +| **Redis 7.2** | LTS | *GA | Oct 30, 2027 | Essentials, Pro | +| **Redis 6.2** | LTS | GA | 2026 | Pro | **EOL (End of life)**: Databases on EOL versions are not supported. If auto-upgrades are enabled, Redis Cloud will automatically upgrade your database to the following version. -**LTS (Long-Term Support)**: Final minor release of a major version with extended support. +**LTS (Long-Term Support)**: Final minor release of a major version with 5-year extended support. **STS (Short-Term Support)**: All other minor releases, supported for 6 months after the next minor release. -*7.2 and 8.0 versions are not available for new databases. +*Redis 8.0 is not available for new databases. ## New version policy (Redis 8.2+) From 2e96790785a358e122ef12c964db2b467000bac2 Mon Sep 17 00:00:00 2001 From: Kaitlyn Michael Date: Wed, 15 Oct 2025 16:12:57 -0500 Subject: [PATCH 6/9] reorganize version management page --- .../rc/databases/version-management.md | 116 ++++++++++-------- 1 file changed, 68 insertions(+), 48 deletions(-) diff --git a/content/operate/rc/databases/version-management.md b/content/operate/rc/databases/version-management.md index 9760b2a2b2..c88d334176 100644 --- a/content/operate/rc/databases/version-management.md +++ b/content/operate/rc/databases/version-management.md @@ -11,82 +11,102 @@ weight: 36 tocEmbedHeaders: true --- -Redis Cloud balances customer control with automated maintenance to ensure your databases run secure, stable, and performant Redis versions. +Redis Cloud gives you control over major version upgrades, while minor version upgrades are managed automatically to simplify operations and reduce the risk of compatibility issues. -{{< note >}} -**We strongly recommend using the latest available version** to benefit from the newest features, performance improvements, and security updates. -{{< /note >}} +## Version policy -## Supported versions +Starting with Redis 8.2 (October 2025), Redis Cloud manages minor version upgrades automatically: -| Version | Type | Status | EOL Date | Plans | -|---------|------|--------|----------|-------| -| **Redis 8.2** | STS | GA | TBD | Essentials, Pro | -| **Redis 8.0** | STS | *Preview | May 1, 2026 | Essentials | -| **Redis 7.4** | LTS | GA | Apr 30, 2028 | Essentials, Pro | -| **Redis 7.2** | LTS | *GA | Oct 30, 2027 | Essentials, Pro | -| **Redis 6.2** | LTS | GA | 2026 | Pro | +- **You choose the major version** (7.8) when creating a database +- **We automatically upgrade minor versions** within that major version (7.8.2 → 7.8.4 → 7.8.6) +- **You control major upgrades** (7.8 → 8.2) - these always require your explicit action +- **You can opt out** of automatic minor upgrades (Pro plans only) + +### Version types + +In the Redis versioning scheme: + - **major versions** are represented by the first two numbers (e.g., 7.4) + - **minor versions** are represented by the third number (e.g., 7.4.2) + +## Version support models + +Redis Cloud uses two version support models: + +### LTS (Long-Term Support) + +LTS versions are the final minor release of each major version and receive **5 years of extended support**. These versions are ideal for: + +- Production environments requiring stability +- Applications with infrequent upgrade cycles +- Enterprise deployments with strict change management + +**Current LTS versions**: Redis 6.2, 7.2, 7.4 + +### STS (Short-Term Support) -**EOL (End of life)**: Databases on EOL versions are not supported. If auto-upgrades are enabled, Redis Cloud will automatically upgrade your database to the following version. -**LTS (Long-Term Support)**: Final minor release of a major version with 5-year extended support. -**STS (Short-Term Support)**: All other minor releases, supported for 6 months after the next minor release. -*Redis 8.0 is not available for new databases. +STS versions include all minor releases except the final one in each major version. These versions: -## New version policy (Redis 8.2+) +- Receive support for **6 months** after the next minor release +- Provide access to the latest features and improvements +- Are automatically upgraded when they reach end-of-life -Starting October 2025: +**Current STS versions**: Redis 8.0, 8.2 -- **You select**: Major version only (e.g., Redis 8) -- **We manage**: Minor versions automatically within your selected major version -- **You control**: Opt out of auto-upgrades if preferred; major upgrades always require your action +### End-of-life (EOL) -## How it works +When a version reaches EOL: +- Technical support is no longer provided +- Security updates are not available +- Databases are automatically upgraded to the next supported version (if auto-upgrades are enabled) -### Version selection +## How version selection works -**New databases**: Select major version only (Redis 6, 7, or 8). You get the latest minor automatically. +### For new databases -**Minor upgrades**: -- **Redis 8+**: Auto-upgrade enabled by default (can opt out for Pro) -- **Redis 7 and earlier**: Manual upgrades only +When creating a database, you select the **major version only**. Redis Cloud automatically provides the latest minor version within that major version. + +### For existing databases + +- **Redis 8+**: Minor versions are managed automatically (with opt-out available for Pro) +- **Redis 7 and earlier**: You control all version upgrades manually ### Plan differences | Feature | Essentials | Pro | |---------|------------|-----| -| Auto minor upgrades | Always on | Default on, can disable | +| Auto minor upgrades (Redis 8+) | Always enabled | Default enabled, can disable | | Manual upgrades | No | Yes | | Maintenance window | Standard | Configurable | +## Supported versions + {{< note >}} -If you opt out of auto-upgrades and reach EOL, Redis Cloud will force upgrade after notifications. +**We strongly recommend using the latest available version** to benefit from the newest features, performance improvements, and security updates. {{< /note >}} -## Upgrading databases - -### Manual upgrades (Pro) - -1. Select your database: **More actions** > **Version upgrade** -2. Choose target version: **Upgrade** +| Version | Type | Status | EOL Date | Plans | +|---------|------|--------|----------|-------| +| **Redis 8.2** | STS | GA | TBD | Essentials, Pro | +| **Redis 8.0** | STS | *Preview | May 1, 2026 | Essentials | +| **Redis 7.4** | LTS | GA | Apr 30, 2028 | Essentials, Pro | +| **Redis 7.2** | LTS | *GA | Oct 30, 2027 | Essentials, Pro | +| **Redis 6.2** | LTS | GA | 2026 | Pro | -{{< note >}} -Before upgrading: [Back up your data]({{< relref "/operate/rc/databases/back-up-data" >}}), review [breaking changes]({{< relref "/operate/rc/changelog/version-release-notes" >}}), and plan for off-peak hours. -{{< /note >}} +*Redis 8.0 is not available for new databases. -### Auto-upgrade settings (Pro) +## Manual upgrades -**Enable/disable**: **Database details** > **Configuration** > **General** > **Auto-upgrade minor versions** +### Before upgrading -**Maintenance windows**: **Subscription details** > **Maintenance** > **Set preferred window** +- Review the [breaking changes]({{< relref "/operate/rc/changelog/version-release-notes" >}}) for your target version to ensure compatibility with your applications. +- [Back up your data]({{< relref "/operate/rc/databases/back-up-data" >}}), review [breaking changes]({{< relref "/operate/rc/changelog/version-release-notes" >}}), and plan for off-peak hours. -## Compatibility +Redis Cloud Pro users can upgrade their databases at any time: -Redis follows [Semantic Versioning](https://semver.org/): **MAJOR.MINOR.PATCH** +1. Select your database: **More actions** > **Version upgrade** +2. Choose target version: **Upgrade** -Redis Cloud guarantees: -- No breaking changes in minor releases -- No performance regressions in minor releases -- Backwards compatibility within major versions +For information about automatic minor version upgrades and configuration options, see [Database configuration]({{< relref "/operate/rc/databases/view-edit-database" >}}). ## FAQ @@ -100,4 +120,4 @@ Redis Cloud will force upgrade after notifications to ensure security and suppor No automatic downgrades. Restore from backup if needed. **How do I identify LTS vs STS?** -Check the [supported versions table](#supported-versions) or database creation interface. +Check the [supported versions table](#supported-versions). From 2165dc0b370da86d1545d8069aca7d794a90ed35 Mon Sep 17 00:00:00 2001 From: Kaitlyn Michael Date: Wed, 15 Oct 2025 16:20:36 -0500 Subject: [PATCH 7/9] clarify examples --- content/operate/rc/databases/version-management.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/operate/rc/databases/version-management.md b/content/operate/rc/databases/version-management.md index c88d334176..e75dcfbde5 100644 --- a/content/operate/rc/databases/version-management.md +++ b/content/operate/rc/databases/version-management.md @@ -17,9 +17,9 @@ Redis Cloud gives you control over major version upgrades, while minor version u Starting with Redis 8.2 (October 2025), Redis Cloud manages minor version upgrades automatically: -- **You choose the major version** (7.8) when creating a database -- **We automatically upgrade minor versions** within that major version (7.8.2 → 7.8.4 → 7.8.6) -- **You control major upgrades** (7.8 → 8.2) - these always require your explicit action +- **You choose the major version** (e.g., 8.2) when creating a database +- **We automatically upgrade minor versions** within that major version (e.g., 8.2.1 → 8.2.2 → 8.2.3) +- **You control major upgrades** (e.g., 8.2 → 8.4) - these always require your explicit action - **You can opt out** of automatic minor upgrades (Pro plans only) ### Version types From 1f2ea58093d94f2f87c63083de703be72d0e0061 Mon Sep 17 00:00:00 2001 From: Kaitlyn Michael Date: Wed, 15 Oct 2025 16:23:37 -0500 Subject: [PATCH 8/9] copy edits --- .../rc/databases/configuration/advanced-capabilities.md | 4 ++-- content/operate/rc/databases/version-management.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/content/operate/rc/databases/configuration/advanced-capabilities.md b/content/operate/rc/databases/configuration/advanced-capabilities.md index 4efbf58704..bcf7b04991 100644 --- a/content/operate/rc/databases/configuration/advanced-capabilities.md +++ b/content/operate/rc/databases/configuration/advanced-capabilities.md @@ -29,7 +29,7 @@ Starting with Redis 8.0, all advanced capabilities provided by Redis Stack are i ### Version management for Essentials -- **Auto-upgrades**: Minor version auto-upgrades are enabled by default and cannot be disabled +- **Minor version auto-upgrades**: Enabled by default for Redis 8+ and cannot be disabled - **Latest versions**: All new databases automatically use the latest available Redis version - **Notifications**: You receive notifications when new database versions become available @@ -43,7 +43,7 @@ By default, Redis Cloud Pro databases load all supported advanced capabilities. ### Version management for Pro -- **Auto-upgrades**: Minor version auto-upgrades are enabled by default but can be disabled +- **Minor version auto-upgrades**: Enabled by default for Redis 8+ but can be disabled - **Manual control**: You can upgrade to any available version at any time - **Maintenance windows**: Automatic upgrades occur during your defined maintenance window diff --git a/content/operate/rc/databases/version-management.md b/content/operate/rc/databases/version-management.md index e75dcfbde5..b9bcdbb8b7 100644 --- a/content/operate/rc/databases/version-management.md +++ b/content/operate/rc/databases/version-management.md @@ -74,7 +74,7 @@ When creating a database, you select the **major version only**. Redis Cloud aut | Feature | Essentials | Pro | |---------|------------|-----| -| Auto minor upgrades (Redis 8+) | Always enabled | Default enabled, can disable | +| Minor version auto-upgrades (Redis 8+) | Always enabled | Default enabled, can disable | | Manual upgrades | No | Yes | | Maintenance window | Standard | Configurable | @@ -106,12 +106,12 @@ Redis Cloud Pro users can upgrade their databases at any time: 1. Select your database: **More actions** > **Version upgrade** 2. Choose target version: **Upgrade** -For information about automatic minor version upgrades and configuration options, see [Database configuration]({{< relref "/operate/rc/databases/view-edit-database" >}}). +For information about minor version auto-upgrades and configuration options, see [Database configuration]({{< relref "/operate/rc/databases/view-edit-database" >}}). ## FAQ **Can I prevent auto-upgrades?** -Pro users can opt out of minor auto-upgrades for Redis 8+. Major upgrades always require your action. +Pro users can opt out of minor version auto-upgrades for Redis 8+. Major upgrades always require your action. **What if I don't upgrade before EOL?** Redis Cloud will force upgrade after notifications to ensure security and support. From 6e79765a4a345b33ea0a8062cd7918aba4a2be10 Mon Sep 17 00:00:00 2001 From: Kaitlyn Michael Date: Thu, 16 Oct 2025 12:41:56 -0500 Subject: [PATCH 9/9] feedback revisions --- .../configuration/advanced-capabilities.md | 8 +-- .../operate/rc/databases/upgrade-version.md | 6 ++- .../rc/databases/version-management.md | 52 ++++++++++++------- 3 files changed, 43 insertions(+), 23 deletions(-) diff --git a/content/operate/rc/databases/configuration/advanced-capabilities.md b/content/operate/rc/databases/configuration/advanced-capabilities.md index bcf7b04991..b4216c4811 100644 --- a/content/operate/rc/databases/configuration/advanced-capabilities.md +++ b/content/operate/rc/databases/configuration/advanced-capabilities.md @@ -29,7 +29,8 @@ Starting with Redis 8.0, all advanced capabilities provided by Redis Stack are i ### Version management for Essentials -- **Minor version auto-upgrades**: Enabled by default for Redis 8+ and cannot be disabled +- **Minor version auto-upgrades**: Always enabled for Redis 8+, upgrades to latest minor version during maintenance windows +- **Major version upgrades**: Customer controlled, never automatic - **Latest versions**: All new databases automatically use the latest available Redis version - **Notifications**: You receive notifications when new database versions become available @@ -43,9 +44,10 @@ By default, Redis Cloud Pro databases load all supported advanced capabilities. ### Version management for Pro -- **Minor version auto-upgrades**: Enabled by default for Redis 8+ but can be disabled +- **Minor version auto-upgrades**: Enabled by default for Redis 8+ but can be disabled, occur during maintenance windows +- **Major version upgrades**: Customer controlled, never automatic - **Manual control**: You can upgrade to any available version at any time -- **Maintenance windows**: Automatic upgrades occur during your defined maintenance window +- **Forced upgrades**: If auto-upgrades disabled and version reaches EOL, automatic upgrade during maintenance windows For more information about Redis Cloud version management, see [Redis version management]({{< relref "/operate/rc/databases/version-management" >}}). diff --git a/content/operate/rc/databases/upgrade-version.md b/content/operate/rc/databases/upgrade-version.md index 98a538e505..e4a5458d82 100644 --- a/content/operate/rc/databases/upgrade-version.md +++ b/content/operate/rc/databases/upgrade-version.md @@ -14,7 +14,11 @@ Database version upgrade options depend on your plan type. ## Redis Cloud Essentials -All new Redis Cloud Essentials databases are on the latest available version of Redis. Redis will notify Redis Cloud Essentials users when a new database version is available. +All new Redis Cloud Essentials databases are on the latest available version of Redis. + +For Redis 8+, minor version auto-upgrades are always enabled and occur automatically during maintenance windows when new versions become available. Major version upgrades require customer action. + +For Redis 7 and earlier versions, Redis will notify users when new database versions are available, but upgrades must be done manually. ## Redis Cloud Pro diff --git a/content/operate/rc/databases/version-management.md b/content/operate/rc/databases/version-management.md index b9bcdbb8b7..86272bbeac 100644 --- a/content/operate/rc/databases/version-management.md +++ b/content/operate/rc/databases/version-management.md @@ -11,22 +11,34 @@ weight: 36 tocEmbedHeaders: true --- -Redis Cloud gives you control over major version upgrades, while minor version upgrades are managed automatically to simplify operations and reduce the risk of compatibility issues. +Redis Cloud provides comprehensive version management that balances automatic updates for security and performance with customer control over major changes. -## Version policy +## Redis versioning and upgrade policy -Starting with Redis 8.2 (October 2025), Redis Cloud manages minor version upgrades automatically: +### Version structure -- **You choose the major version** (e.g., 8.2) when creating a database -- **We automatically upgrade minor versions** within that major version (e.g., 8.2.1 → 8.2.2 → 8.2.3) -- **You control major upgrades** (e.g., 8.2 → 8.4) - these always require your explicit action -- **You can opt out** of automatic minor upgrades (Pro plans only) +Redis uses a **MAJOR.MINOR.PATCH** versioning scheme: -### Version types +- **Major versions**: Significant changes that may include breaking changes (e.g., Redis 7 → Redis 8) +- **Minor versions**: New features and improvements within a major version (e.g., 8.2 → 8.4 → 8.6) +- **Patch versions**: Bug fixes and security updates (e.g., 8.2.1 → 8.2.2) -In the Redis versioning scheme: - - **major versions** are represented by the first two numbers (e.g., 7.4) - - **minor versions** are represented by the third number (e.g., 7.4.2) +### Upgrade policies + +#### Minor version upgrades (8.2 → 8.4 → 8.6) {#minor-upgrades} + +Starting with Redis 8.2 (October 2025): + +- **Automatic upgrades**: Redis Cloud automatically upgrades to new minor versions when available +- **Maintenance windows**: All upgrades occur during your subscription's configured maintenance windows +- **Customer control**: Pro users can opt out of automatic minor upgrades +- **Forced upgrades**: If auto-upgrade is disabled and a version reaches EOL, Redis Cloud will force upgrade during maintenance windows + +#### Major version upgrades (7.4 → 8.2) {#major-upgrades} + +- **Customer control**: Always require explicit customer action +- **No automatic upgrades**: Redis Cloud never automatically upgrades major versions +- **Customer timing**: You choose when to upgrade to a new major version ## Version support models @@ -55,26 +67,28 @@ STS versions include all minor releases except the final one in each major versi ### End-of-life (EOL) When a version reaches EOL: + - Technical support is no longer provided - Security updates are not available -- Databases are automatically upgraded to the next supported version (if auto-upgrades are enabled) +- Databases with auto-upgrades disabled are automatically upgraded to the next supported version during maintenance windows ## How version selection works ### For new databases -When creating a database, you select the **major version only**. Redis Cloud automatically provides the latest minor version within that major version. +When creating a database, you select the version (e.g., Redis 8.2). Redis Cloud automatically provides the latest patch version within that version. ### For existing databases -- **Redis 8+**: Minor versions are managed automatically (with opt-out available for Pro) -- **Redis 7 and earlier**: You control all version upgrades manually +- **Redis 8+**: Minor version auto-upgrades are available (with opt-out for Pro users) +- **Redis 7 and earlier**: Auto-upgrade for minor versions is not supported; all upgrades must be done manually ### Plan differences | Feature | Essentials | Pro | |---------|------------|-----| -| Minor version auto-upgrades (Redis 8+) | Always enabled | Default enabled, can disable | +| Minor version auto-upgrades (Redis 8+) | Always enabled, upgrades to latest minor version | Default enabled, can disable | +| Major version upgrades | Customer controlled | Customer controlled | | Manual upgrades | No | Yes | | Maintenance window | Standard | Configurable | @@ -89,7 +103,7 @@ When creating a database, you select the **major version only**. Redis Cloud aut | **Redis 8.2** | STS | GA | TBD | Essentials, Pro | | **Redis 8.0** | STS | *Preview | May 1, 2026 | Essentials | | **Redis 7.4** | LTS | GA | Apr 30, 2028 | Essentials, Pro | -| **Redis 7.2** | LTS | *GA | Oct 30, 2027 | Essentials, Pro | +| **Redis 7.2** | STS | *GA | Oct 30, 2027 | Essentials, Pro | | **Redis 6.2** | LTS | GA | 2026 | Pro | *Redis 8.0 is not available for new databases. @@ -110,8 +124,8 @@ For information about minor version auto-upgrades and configuration options, see ## FAQ -**Can I prevent auto-upgrades?** -Pro users can opt out of minor version auto-upgrades for Redis 8+. Major upgrades always require your action. +**Can I prevent minor version auto-upgrades?** +Pro users can opt out of minor version auto-upgrades for Redis 8+. If disabled and a version reaches EOL, Redis Cloud will force upgrade during maintenance windows. Major upgrades always require your action. **What if I don't upgrade before EOL?** Redis Cloud will force upgrade after notifications to ensure security and support.