Skip to content

Commit 7424b17

Browse files
PingXiemadolson
andauthored
Add Valkey 8.0 GA Release Notes (#1034)
Based on #1031 --------- Signed-off-by: Ping Xie <[email protected]> Signed-off-by: Ping Xie <[email protected]> Co-authored-by: Madelyn Olson <[email protected]>
1 parent 76ec25f commit 7424b17

File tree

2 files changed

+39
-2
lines changed

2 files changed

+39
-2
lines changed

00-RELEASENOTES

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,43 @@ CRITICAL: There is a critical bug affecting MOST USERS. Upgrade ASAP.
99
SECURITY: There are security fixes in the release.
1010
--------------------------------------------------------------------------------
1111

12+
================================================================================
13+
Valkey 8.0.0 GA - Released Sun 15 Sep 2024
14+
================================================================================
15+
Upgrade urgency LOW: This is the first release of Valkey 8.0, which includes
16+
generally includes stability and performance improvements over the second release
17+
candidate. This release is fully compatible with Redis OSS 7.2.4.
18+
19+
Logging and Tooling Improvements
20+
================================
21+
* Added full client info to SHUTDOWN and CLUSTER FAILOVER logs for better traceability
22+
of requests. (#875)
23+
24+
Bug fixes
25+
=========
26+
* Resolved issues in replicationSetPrimary where the primary node's IP/port updates were
27+
not correctly handled in the cluster gossip section. (#965)
28+
* Fixed AOF base suffix during rewrites when modifying the aof-use-rdb-preamble setting,
29+
ensuring correct suffix caching to prevent inconsistencies. (#886)
30+
* Addressed rare crashes in async IO threads with TLS by preventing concurrent read and
31+
write job overlap. (#1011)
32+
* Prevented AOF from being incorrectly disabled after loading RDB data, ensuring proper
33+
re-enabling of AOF. (#1001)
34+
* Triggered a save of the cluster configuration file before shutdown to prevent
35+
inconsistencies caused by unsaved node configuration changes. (#822)
36+
* Fixed timing issue in CLUSTER SETSLOT to ensure replicas handle migration correctly
37+
when receiving the command before the gossip update. (#981)
38+
39+
Performance
40+
===========
41+
* Optimized the handling of temporary set objects in SUNION and SDIFF commands, resulting
42+
in a 41% performance improvement for SUNION and 27% for SDIFF. (#996)
43+
44+
Behavior Changes
45+
================
46+
* Replicas now flush old data after checking RDB file is valid during disk-based replication,
47+
preventing partial data loss and ensuring a clean data load. (#926)
48+
1249
================================================================================
1350
Valkey 8.0.0 RC2 - Released Tue 2 Sep 2024
1451
================================================================================

src/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
* similar. */
55
#define SERVER_NAME "valkey"
66
#define SERVER_TITLE "Valkey"
7-
#define VALKEY_VERSION "7.9.240"
8-
#define VALKEY_VERSION_NUM 0x000709f0
7+
#define VALKEY_VERSION "8.0.0"
8+
#define VALKEY_VERSION_NUM 0x00080000
99

1010
/* Redis OSS compatibility version, should never
1111
* exceed 7.2.x. */

0 commit comments

Comments
 (0)