Skip to content

Commit 3cc244a

Browse files
committed
Add version release notes section and modify tableChildren shortcode with "from" param
1 parent 0ce8314 commit 3cc244a

File tree

6 files changed

+82
-2
lines changed

6 files changed

+82
-2
lines changed

content/operate/rc/changelog/_index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ weight: 95
1515

1616
When new versions of Redis Open Source change existing commands, upgrading your Redis Cloud 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.
1717

18+
{{<table-children from="version-release-notes" columnNames="Version,Description" columnSources="LinkTitle,description" enableLinks="LinkTitle">}}
19+
1820
## Redis Cloud changelogs
1921

2022
Changelogs list new features, enhancements, and other changes in Redis Cloud.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
Title: Redis 7.2 release notes and breaking changes
3+
alwaysopen: false
4+
categories:
5+
- docs
6+
- operate
7+
- rc
8+
description: Release notes and breaking changes for Redis 7.2 on Redis Cloud.
9+
hideListLinks: true
10+
linktitle: Redis 7.2
11+
weight: 10
12+
tocEmbedHeaders: true
13+
---
14+
15+
Redis 7.2 introduces several changes to existing Redis commands. For more information on the changes in Redis 7.2, see [What's new in Redis 7.2]({{<relref "/develop/whats-new/7-2" >}}).
16+
17+
## Breaking changes
18+
19+
{{<embed-md "r7.2-breaking-changes.md">}}
20+
21+
### Known limitations
22+
23+
{{<embed-md "r7.2-known-limitations.md">}}
24+
25+
{{<embed-md "r7.2-migration-guides.md">}}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
Title: Redis 7.4 release notes and breaking changes
3+
alwaysopen: false
4+
categories:
5+
- docs
6+
- operate
7+
- rc
8+
description: Release notes and breaking changes for Redis 7.4 on Redis Cloud.
9+
hideListLinks: true
10+
linktitle: Redis 7.4
11+
weight: 5
12+
tocEmbedHeaders: true
13+
---
14+
15+
Redis 7.4 offers hash field expiration and other feature set improvements. For more information on the changes in Redis 7.4, see [What's new in Redis 7.4]({{<relref "/develop/whats-new/7-4" >}}).
16+
17+
## Breaking changes
18+
19+
When new versions of Redis Community Edition 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.
20+
21+
If you're upgrading from Redis 6.4, also review the [Redis 7.2 breaking changes]({{< relref "/operate/rc/changelog/version-release-notes/7-2#breaking-changes" >}}) before upgrading.
22+
23+
### Security behavior changes
24+
25+
- [#13108](https://github.com/redis/redis/pull/13108) Lua: LRU eviction for scripts generated with `EVAL`.
26+
27+
### Other general behavior changes
28+
29+
- [#13133](https://github.com/redis/redis/pull/13133) Lua: allocate VM code with jemalloc instead of libc and count it as used memory.
30+
31+
- [#12171](https://github.com/redis/redis/pull/12171) `ACL LOAD`: do not disconnect all clients.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
Title: Redis version release notes and breaking changes
3+
alwaysopen: false
4+
categories:
5+
- docs
6+
- operate
7+
- rc
8+
description: Lists release notes and breaking changes for available Redis database versions on Redis Cloud.
9+
hideListLinks: true
10+
linktitle: Redis version release notes
11+
weight: 95
12+
---
13+
14+
When new versions of Redis Open Source change existing commands, upgrading your Redis Cloud database to a new version can potentially break some functionality. Before you upgrade, read the provided list of changes that affect Redis Cloud and update any applications that connect to your database to handle these changes.
15+
16+
{{<table-children columnNames="Version&nbsp;(Release&nbsp;date)&nbsp;,Major changes" columnSources="LinkTitle,description" enableLinks="LinkTitle">}}

content/operate/rc/databases/upgrade-version.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ Please keep in mind the following before upgrading your database version:
2828
- We recommend that you upgrade your database during off-peak hours or during application maintenance to minimize reconnections.
2929

3030
- Review the breaking changes for the new database version before upgrading:
31-
- [Redis 7.2]({{< relref "/operate/rc/changelog/2023/june-2023#redis-72-breaking-changes" >}})
32-
- [Redis 7.4]({{< relref "/operate/rc/changelog/july-2024#redis-74-breaking-changes" >}})
31+
- [Redis 7.2]({{< relref "/operate/rc/changelog/version-release-notes/7-2" >}})
32+
- [Redis 7.4]({{< relref "/operate/rc/changelog/version-release-notes/7-4" >}})
3333

3434
- You must upgrade the target database in an [Active-Passive]({{< relref "/operate/rc/databases/migrate-databases#sync-using-active-passive" >}}) setup before you upgrade the source database to prevent compatibility issues.
3535
{{< /note >}}

layouts/shortcodes/table-children.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66
{{ $enableLinks := split $enableLinksStr "," }}
77
{{ $limitTags := .Get "limitTags" }}
88
{{ $children := .Page.Pages }}
9+
{{ $from := .Get "from" }}
10+
11+
{{ if $from }}
12+
{{ $fromPage := .Page.GetPage $from }}
13+
{{ $children = $fromPage.Pages }}
14+
{{ end }}
915

1016
<table>
1117
<thead>

0 commit comments

Comments
 (0)