summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--00-RELEASENOTES19
-rw-r--r--src/version.h4
2 files changed, 21 insertions, 2 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index 9aa29f3a0..462b8a656 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -12,6 +12,25 @@ SECURITY: There are security fixes in the release.
--------------------------------------------------------------------------------
================================================================================
+Redis 6.2.9 Released Mon Jan 16 12:00:00 IDT 2023
+================================================================================
+
+Upgrade urgency: SECURITY, contains fixes to security issues.
+
+Security Fixes:
+* (CVE-2022-35977) Integer overflow in the Redis SETRANGE and SORT/SORT_RO
+ commands can drive Redis to OOM panic
+* (CVE-2023-22458) Integer overflow in the Redis HRANDFIELD and ZRANDMEMBER
+ commands can lead to denial-of-service
+
+Bug Fixes
+=========
+
+* Avoid possible hang when client issues long KEYS, SRANDMEMBER, HRANDFIELD,
+ and ZRANDMEMBER commands and gets disconnected by client output buffer limit (#11676)
+* Fix sentinel issue if replica changes IP (#11590)
+
+================================================================================
Redis 6.2.8 Released Mon 12 Dec 2022 12:00:00 IST
================================================================================
diff --git a/src/version.h b/src/version.h
index c910a2d42..31f016116 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1,2 +1,2 @@
-#define REDIS_VERSION "6.2.8"
-#define REDIS_VERSION_NUM 0x00060208
+#define REDIS_VERSION "6.2.9"
+#define REDIS_VERSION_NUM 0x00060209