Skip to content

Commit 1d7dfa9

Browse files
committed
Valkey release 9.0.0-rc2
Signed-off-by: Ricardo Dias <[email protected]>
1 parent dfc3686 commit 1d7dfa9

File tree

2 files changed

+45
-1
lines changed

2 files changed

+45
-1
lines changed

00-RELEASENOTES

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,50 @@ Upgrade urgency levels:
1111
| CRITICAL | There is a critical bug affecting MOST USERS. Upgrade ASAP. |
1212
| SECURITY | There are security fixes in the release. |
1313

14+
Valkey 9.0.0-rc2 - September XX, 2025
15+
----------------------------------
16+
17+
Upgrade urgency LOW: This is the second release candidate of Valkey 9.0.0,
18+
focused on stability, bug fixes, and incremental improvements.
19+
20+
**Attention Valkey Module maintainers**: There is a new module option to
21+
indicate support for the Atomic Slot Migration (ASM) feature. Modules must
22+
explicitly opt in to ASM; otherwise, this feature will be disabled in clusters
23+
that load modules without ASM support.
24+
25+
### Bug Fixes
26+
* Fix module context object re-usage in scripting engines (#2358)
27+
* Fix pre-size hashtables per slot when reading RDB files (#2466)
28+
* Do not migrate script functions in atomic slot migration (#2547)
29+
* Don't use AVX2 instructions if the CPU don't support it (#2571)
30+
31+
### Performance/Efficiency
32+
* Optimized pipelining by parsing and prefetching multiple commands (#2092)
33+
34+
### Cluster and Replication
35+
* Make cluster failover delay relative to node timeout (#2449)
36+
* Separate RDB snapshotting from atomic slot migration (#2533)
37+
38+
### Module API
39+
* Added new module API event for tracking authentication attempts (#2237)
40+
* Added READONLY flag to ClientInfo.flags output structure (#2522)
41+
* Make modules opt-in to atomic slot migration and add server events (#2593)
42+
43+
### Configuration
44+
* Added new cluster-announce-client-(port|tls-port) configs (#2429)
45+
* Reset cluster related stats in CONFIG RESETSTATS (#2458)
46+
* Make CONFIG GET command to return a sorted output (#2493)
47+
48+
### Commands
49+
* Update reply schema for LMOVE and BLMOVE (#2541)
50+
* Most deprecated commands are now un-deprecated (#2546)
51+
52+
### Upgrade
53+
* Relaxed RDB check for foreign RDB formats (#2543)
54+
55+
### CLI
56+
* Added word-jump navigation (Alt/Option/Ctrl + ←/→) to valkey-cli (#2583)
57+
1458
Valkey 9.0.0-rc1 - August 14, 2025
1559
----------------------------------
1660

src/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* In unstable branch the status is always "dev".
1111
* During release process the status will be set to rc1,rc2...rcN.
1212
* When the version is released the status will be "ga". */
13-
#define VALKEY_RELEASE_STAGE "rc1"
13+
#define VALKEY_RELEASE_STAGE "rc2"
1414

1515
/* Redis OSS compatibility version, should never
1616
* exceed 7.2.x. */

0 commit comments

Comments
 (0)