Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 7.2.6 Patch Release #842

Merged
merged 9 commits into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 36 additions & 1 deletion 00-RELEASENOTES
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,41 @@ SECURITY: There are security fixes in the release.
--------------------------------------------------------------------------------

================================================================================
Valkey 7.2.6 GA - Released Tue 30 July 2024
================================================================================

Upgrade urgency MODERATE: Program an upgrade of the server, but it's not urgent.
PingXie marked this conversation as resolved.
Show resolved Hide resolved

Bug fixes - Core
=========
PingXie marked this conversation as resolved.
Show resolved Hide resolved
* Fix typo in REGISTER_API macro to prevent segfaults when loading Redis modules (#608)
* Fix the command duration reset issue when clients are blocked and commands are reprocessed (#526)
* Fix the data type conversion error in zrangeResultBeginStore (Redis#13148)
* Fix a crash caused by quicklist node merges (Redis#13040)
* Fix crashes in module blocking client timeout cases (Redis#13011)
* Fix conversion of numbers in Lua args to Redis args (Redis#13115, Fixes Redis#13113)
* Fix crash in LSET command when replacing small list items with larger ones, creating listpacks larger than 4GB (Redis#12955, Fixes Redis#12864)
enjoy-binbin marked this conversation as resolved.
Show resolved Hide resolved
* Fix blocking command timeout reset issue during reprocessing (Redis#13004)

Bug fixes - Cluster
=========
PingXie marked this conversation as resolved.
Show resolved Hide resolved
* Fix the CLUSTER SHARDS command to display accurate slot information even if a primary node fails (#790, Fixes #784)
* Fix an issue where module authentication failed when the cluster was down (#693, Fixes #619)
* Ensure only primary nodes with slots can mark another node as failed (#634)
* Improve MEET command reliability under link failures to maintain cluster membership symmetry (#461)
* Allow single primary node to mark potentially failed replica as FAIL in single-shard cluster (Redis#12824)

Bug fixes - Sentinel
=========
* Accept redis-sentinel to start Valkey in sentinel mode (#731, Fixes #719)

Bug fixes - CLI
=========
PingXie marked this conversation as resolved.
Show resolved Hide resolved
* Ensure the --count option in redis-cli works correctly even without --pattern (Redis#13092)
* Fix redis-check-aof misidentifying data in manifest format as MP-AOF (Redis#12951)
* Update redis-check-rdb types to replace stream-v2 with stream-v3 (Redis#12969)

=================================================================================
PingXie marked this conversation as resolved.
Show resolved Hide resolved
Valkey 7.2.5 GA - Released Tue 16 Apr 2024
================================================================================

Expand Down Expand Up @@ -104,4 +139,4 @@ A special thank you for the amount of work put into this release by:
- Harkrishn Patro
- Vitah Lin
- Ziyang Zeng (For creating the logo!)
- The many other community members who provided their support!
- The many other community members who provided their support!
4 changes: 2 additions & 2 deletions src/version.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#define SERVER_NAME "valkey"
#define VALKEY_VERSION "7.2.5"
#define VALKEY_VERSION_NUM 0x00070205
#define VALKEY_VERSION "7.2.6"
#define VALKEY_VERSION_NUM 0x00070206

/* Redis compatibility version, should never
* exceed 7.2.x. */
Expand Down
Loading