diff --git a/content/develop/whats-new/8-0.md b/content/develop/whats-new/8-0.md index 41887cc04f..41dc2804ae 100644 --- a/content/develop/whats-new/8-0.md +++ b/content/develop/whats-new/8-0.md @@ -70,16 +70,8 @@ Commands from included modules are now covered under standard categories (e.g., Explicit inclusion of new command categories is required to maintain access. #### Redis Query Engine -The following changes affect behavior and validation in the Redis Query Engine: -- Enforces validation for `LIMIT` arguments (offset must be 0 if limit is 0). -- Enforces parsing rules for `FT.CURSOR READ` and `FT.ALIASADD`. -- Parentheses are now required for exponentiation precedence in `APPLY` expressions. -- Invalid input now returns errors instead of empty results. -- Default values revisited for reducers like `AVG`, `COUNT`, `SUM`, `STDDEV`, `QUANTILE`, and others. -- Updates to scoring (`BM25` is now the default instead of `TF-IDF`). -- Improved handling of expired records, memory constraints, and malformed fields. - -For a full list of the Redis Query Engine-related changes, see the [release notes](https://github.com/redis/redis/releases). + +{{}} ### Other changes #### One Redis diff --git a/content/embeds/redis8-breaking-changes-acl.md b/content/embeds/redis8-breaking-changes-acl.md new file mode 100644 index 0000000000..b52be20dfc --- /dev/null +++ b/content/embeds/redis8-breaking-changes-acl.md @@ -0,0 +1,37 @@ +### Potentially breaking changes to ACLs + +{{< note >}} +The following content is relevant to all Redis distributions (RS, RC, and ROS). +{{< /note >}} + +Redis 8 includes Redis Query Engine, as well as JSON, time series, Bloom filter, cuckoo filter, top-k, count-min sketch, and t-digest data types. +The integration of these features into Redis also comes with improvements to Redis [ACL]({{< relref "/operate/oss_and_stack/management/security/acl" >}}) rules. + +{{< warning >}} +These ACL changes may introduce breaking changes for some users, which must be analyzed carefully. +{{< /warning >}} + +#### Extension to the existing ACL categories + +Before Redis 8, the existing ACL categories @read, @write, @dangerous, @admin, @slow, and @fast did not include commands for the Redis Query Engine and the JSON, time series, and probabilistic data structures. + +Starting with Redis 8, Redis includes all Query Engine, JSON, time series, Bloom filter, cuckoo filter, top-k, count-min sketch, and t-digest commands in these existing ACL categories. + +As a result: + +- Existing ACL rules such as `+@read +@write` will allow access to more commands than in previous versions of Redis. Here are some examples: + - A user with `+@read` access will be able to execute `FT.SEARCH`. + - A user with `+@write` access will be able to execute `JSON.SET`. + +- ACL rules such as `+@all -@write` will allow access to fewer commands than previous versions of Redis. For example: + - A user with `+@all -@write` will not be able to execute `JSON.SET`. + +Note that the `@all` category did not change, as it always included all the commands. + +Additionally, ACL rules such as `+@read +JSON.GET` can now be simplified as `+@read` because `JSON.GET` is included in the `@read` category. + +#### Who is affected by this change? + +Users who currently use the Redis Query Engine and/or the JSON, time series, or probabilistic data structures, and use custom ACL rules. + +You should reanalyze your ACL rules to make sure they are aligned with your security and access control requirements. diff --git a/content/embeds/redis8-breaking-changes-rqe.md b/content/embeds/redis8-breaking-changes-rqe.md new file mode 100644 index 0000000000..af116bb317 --- /dev/null +++ b/content/embeds/redis8-breaking-changes-rqe.md @@ -0,0 +1,10 @@ +The following changes affect behavior and validation in the Redis Query Engine: +- Enforces validation for `LIMIT` arguments (offset must be 0 if limit is 0). +- Enforces parsing rules for `FT.CURSOR READ` and `FT.ALIASADD`. +- Parentheses are now required for exponentiation precedence in `APPLY` expressions. +- Invalid input now returns errors instead of empty results. +- Default values revisited for reducers like `AVG`, `COUNT`, `SUM`, `STDDEV`, `QUANTILE`, and others. +- Updates to scoring (`BM25` is now the default instead of `TF-IDF`). +- Improved handling of expired records, memory constraints, and malformed fields. + +For a full list of the Redis Query Engine-related changes, see the [release notes](https://github.com/redis/redis/releases). \ No newline at end of file diff --git a/content/operate/oss_and_stack/stack-with-enterprise/release-notes/redisce/redisos-8.0-release-notes.md b/content/operate/oss_and_stack/stack-with-enterprise/release-notes/redisce/redisos-8.0-release-notes.md index 7d1d82e8ea..41cf9fa34c 100644 --- a/content/operate/oss_and_stack/stack-with-enterprise/release-notes/redisce/redisos-8.0-release-notes.md +++ b/content/operate/oss_and_stack/stack-with-enterprise/release-notes/redisce/redisos-8.0-release-notes.md @@ -130,43 +130,7 @@ For more details, see the release notes for the [8.0-M01](https://github.com/red - [#13958](https://github.com/redis/redis/pull/13958) `XTRIM`, `XADD` - incorrect lag due to trimming stream. - [#13931](https://github.com/redis/redis/pull/13931) `HGETEX` - wrong order of keyspace notifications. -### Potentially breaking changes to ACLs - -{{< note >}} -The following content is relevant to all Redis distributions (RS, RC, and ROS). -{{< /note >}} - -Redis 8 includes Redis Query Engine, as well as JSON, time series, Bloom filter, cuckoo filter, top-k, count-min sketch, and t-digest data types. -The integration of these features into Redis also comes with improvements to Redis [ACL]({{< relref "/operate/oss_and_stack/management/security/acl" >}}) rules. - -{{< warning >}} -These ACL changes may introduce breaking changes for some users, which must be analyzed carefully. -{{< /warning >}} - -### Extension to the existing ACL categories - -Before Redis 8, the existing ACL categories @read, @write, @dangerous, @admin, @slow, and @fast did not include commands for the Redis Query Engine and the JSON, time series, and probabilistic data structures. - -Starting with Redis 8, Redis includes all Query Engine, JSON, time series, Bloom filter, cuckoo filter, top-k, count-min sketch, and t-digest commands in these existing ACL categories. - -As a result: - -- Existing ACL rules such as `+@read +@write` will allow access to more commands than in previous versions of Redis. Here are some examples: - - A user with `+@read` access will be able to execute `FT.SEARCH`. - - A user with `+@write` access will be able to execute `JSON.SET`. - -- ACL rules such as `+@all -@write` will allow access to fewer commands than previous versions of Redis. For example: - - A user with `+@all -@write` will not be able to execute `JSON.SET`. - -Note that the `@all` category did not change, as it always included all the commands. - -Additionally, ACL rules such as `+@read +JSON.GET` can now be simplified as `+@read` because `JSON.GET` is included in the `@read` category. - -### Who is affected by this change? - -Users who currently use the Redis Query Engine and/or the JSON, time series, or probabilistic data structures, and use custom ACL rules. - -You should reanalyze your ACL rules to make sure they are aligned with your security and access control requirements. +{{}} ### Redis 8 introduces the following data structure and processing engine ACL categories. diff --git a/content/operate/rc/changelog/july-2025.md b/content/operate/rc/changelog/july-2025.md new file mode 100644 index 0000000000..463c4ec3e8 --- /dev/null +++ b/content/operate/rc/changelog/july-2025.md @@ -0,0 +1,23 @@ +--- +Title: Redis Cloud changelog (July 2025) +alwaysopen: false +categories: +- docs +- operate +- rc +description: New features, enhancements, and other changes added to Redis Cloud during + July 2025. +highlights: Redis 8.0 preview +linktitle: July 2025 +weight: 72 +tags: +- changelog +--- + +## New features + +### Redis 8.0 preview + +A preview of Redis 8.0 is now available for [Redis Cloud Essentials databases]({{< relref "/operate/rc/databases/create-database/create-essentials-database" >}}) in select regions. + +Redis 8.0 introduces powerful new capabilities, including the beta release of the Vector Set data structure, designed for AI use cases such as semantic search and recommendation systems. For more information on the changes in Redis 8.0, see [What's new in Redis 8.0]({{}}) and review the [breaking changes]({{}}). diff --git a/content/operate/rc/changelog/version-release-notes/7-2.md b/content/operate/rc/changelog/version-release-notes/7-2.md index 44bc96518e..491e5bf2ae 100644 --- a/content/operate/rc/changelog/version-release-notes/7-2.md +++ b/content/operate/rc/changelog/version-release-notes/7-2.md @@ -8,7 +8,7 @@ categories: description: Release notes and breaking changes for Redis 7.2 on Redis Cloud. hideListLinks: true linktitle: Redis 7.2 -weight: 10 +weight: 15 tocEmbedHeaders: true --- diff --git a/content/operate/rc/changelog/version-release-notes/7-4.md b/content/operate/rc/changelog/version-release-notes/7-4.md index 6c25d79c2d..adcc228405 100644 --- a/content/operate/rc/changelog/version-release-notes/7-4.md +++ b/content/operate/rc/changelog/version-release-notes/7-4.md @@ -8,7 +8,7 @@ categories: description: Release notes and breaking changes for Redis 7.4 on Redis Cloud. hideListLinks: true linktitle: Redis 7.4 -weight: 5 +weight: 10 tocEmbedHeaders: true --- diff --git a/content/operate/rc/changelog/version-release-notes/8-0.md b/content/operate/rc/changelog/version-release-notes/8-0.md new file mode 100644 index 0000000000..ef9cab7fd3 --- /dev/null +++ b/content/operate/rc/changelog/version-release-notes/8-0.md @@ -0,0 +1,27 @@ +--- +Title: Redis 8.0 release notes and breaking changes +alwaysopen: false +categories: +- docs +- operate +- rc +description: Release notes and breaking changes for Redis 8.0 on Redis Cloud. +hideListLinks: true +linktitle: Redis 8.0 +weight: 5 +tocEmbedHeaders: true +--- + +Redis 8.0 introduces powerful new capabilities, including the beta release of the Vector Set data structure, designed for AI use cases such as semantic search and recommendation systems. Redis 8 also merges Redis Stack and Redis Community Edition into a single unified distribution: Redis Open Source. For more information on the changes in Redis 8.0, see [What's new in Redis 8.0]({{}}). + +## Breaking changes + +When new versions of Redis Open Source change existing commands, upgrading your database to a new version can potentially break some functionality. Before you upgrade, read the provided list of breaking changes that affect Redis Cloud and update any applications that connect to your database to handle these changes. + +Make sure to review all breaking changes between your current version of Redis and the version you are upgrading to. + +{{}} + +### Redis Query Engine + +{{}} diff --git a/content/operate/rc/databases/create-database/create-essentials-database.md b/content/operate/rc/databases/create-database/create-essentials-database.md index cac1be7b87..b3c96cd443 100644 --- a/content/operate/rc/databases/create-database/create-essentials-database.md +++ b/content/operate/rc/databases/create-database/create-essentials-database.md @@ -31,13 +31,21 @@ This guide shows how to create a paid Essentials database. After you select **Essentials**, the rest of the database details will appear. - {{The database name, cloud vendor, region, and type settings.}} + {{The database name, cloud vendor, version, region, and type settings.}} 1. Redis will generate a database name for you. If you want to change it, you can do so in the **Database name** field. -1. Choose a **Cloud Provider** and a **Region**. +1. Choose a **Cloud vendor** for your database. -1. The **Type** of database controls the protocol and advanced capabilities. Leave this as **Redis Stack** unless you have a legacy application that uses **Memcached**. +1. Select the **Database version** you want to use. + + A preview of Redis 8.0 is available for databases in selected regions. Select **8.0** to use it. + + Redis 8.0 introduces powerful new capabilities, including the beta release of the Vector Set data structure, designed for AI use cases such as semantic search and recommendation systems. For more information on the changes in Redis 8.0, see [What's new in Redis 8.0]({{}}) and review the [breaking changes]({{}}). + +1. Choose a **Region** from the list. + +1. The **Type** of database controls the protocol and advanced capabilities. Leave this as **Redis** unless you have a legacy application that uses **Memcached**. A Redis Stack database gives access to a set of advanced capabilities. For more information, see [Advanced capabilities]({{< relref "/operate/rc/databases/configuration/advanced-capabilities#essentials" >}}). diff --git a/static/images/rc/create-database-essentials-cloud-vendor.png b/static/images/rc/create-database-essentials-cloud-vendor.png index 4bca5edb86..4ef1068c42 100644 Binary files a/static/images/rc/create-database-essentials-cloud-vendor.png and b/static/images/rc/create-database-essentials-cloud-vendor.png differ