Skip to content

Commit 8310135

Browse files
Add release notes for 8.0.5 and update version file
Co-authored-by: Viktor Söderqvist <[email protected]> Signed-off-by: Nikhil Manglore <[email protected]> Signed-off-by: Viktor Söderqvist <[email protected]>
1 parent 983e486 commit 8310135

File tree

2 files changed

+47
-2
lines changed

2 files changed

+47
-2
lines changed

00-RELEASENOTES

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,51 @@ 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.5 - Released Thu 22 Aug 2025
14+
================================================================================
15+
16+
Upgrade urgency SECURITY: This release includes security fixes we recommend you
17+
apply as soon as possible.
18+
19+
Bug fixes
20+
=========
21+
* Fix clients remaining blocked when reprocessing commands after certain
22+
blocking operations (#2109)
23+
* Fix a memory corruption issue in the sharded pub/sub unsubscribe logic (#2137)
24+
* Fix potential memory leak by ensuring module context is freed when `aux_save2`
25+
callback writes no data (#2132)
26+
* Fix `CLIENT UNBLOCK` triggering unexpected errors when used on paused clients
27+
(#2117)
28+
* Fix missing NULL check on `SSL_new()` when creating outgoing TLS connections
29+
(#2140)
30+
* Fix incorrect casting of ping extension lengths to prevent silent packet drops
31+
(#2144)
32+
* Fix replica failover stall due to outdated config epoch (#2178)
33+
* Fix incorrect port/tls-port info in `CLUSTER SLOTS`/`CLUSTER NODES` after
34+
dynamic config change (#2186)
35+
* Ensure empty error tables in Lua scripts don't crash Valkey (#2229)
36+
* Fix client tracking memory overhead calculation (#2360)
37+
* Handle divergent shard-id from nodes.conf and reconcile to the primary node's
38+
shard-id (#2174)
39+
* Fix pre-size hashtables per slot when reading RDB files (#2466)
40+
41+
Behavior changes
42+
================
43+
* Trigger election immediately during a forced manual failover (`CLUSTER
44+
FAILOVER FORCE`) to avoid delay (#1067)
45+
* Reset ongoing election state when initiating a new manual failover (#1274)
46+
47+
Logging and Tooling Improvements
48+
================================
49+
* Add support to drop all cluster packets (#1252)
50+
* Improve log clarity in failover auth denial message (#1341)
51+
52+
Security fixes
53+
==============
54+
* CVE-2025-27151: Check length of AOF file name in valkey-check-aof and reject
55+
paths longer than `PATH_MAX` (#2146)
56+
1257
================================================================================
1358
Valkey 8.0.4 - Released Mon 07 July 2025
1459
================================================================================

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 "8.0.4"
8-
#define VALKEY_VERSION_NUM 0x00080004
7+
#define VALKEY_VERSION "8.0.5"
8+
#define VALKEY_VERSION_NUM 0x00080005
99

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

0 commit comments

Comments
 (0)