summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOran Agra <oran@redislabs.com>2023-01-12 11:08:33 +0200
committerOran Agra <oran@redislabs.com>2023-01-16 18:40:35 +0200
commit1c75ab062d0cb1f3af57e39a399325b9e917e85f (patch)
tree47dc5beb8c0cfc4f43f58f0dc1bcf4cb66887d3b
parent3f1f02034ce674cad8268f958cf8c39944b240c6 (diff)
downloadredis-1c75ab062d0cb1f3af57e39a399325b9e917e85f.tar.gz
Redis 7.0.87.0.8
-rw-r--r--00-RELEASENOTES21
-rw-r--r--src/version.h4
2 files changed, 23 insertions, 2 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index 21356f32d..6f6a18efe 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -12,6 +12,27 @@ SECURITY: There are security fixes in the release.
--------------------------------------------------------------------------------
================================================================================
+Redis 7.0.8 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)
+* Make sure that fork child doesn't do incremental rehashing (#11692)
+* Fix a bug where blocking commands with a sub-second timeout would block forever (#11688)
+* Fix sentinel issue if replica changes IP (#11590)
+
+================================================================================
Redis 7.0.7 Released Fri Dec 16 12:00:00 IST 2022
================================================================================
diff --git a/src/version.h b/src/version.h
index 230dc2b9c..9e2190622 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1,2 +1,2 @@
-#define REDIS_VERSION "7.0.7"
-#define REDIS_VERSION_NUM 0x00070007
+#define REDIS_VERSION "7.0.8"
+#define REDIS_VERSION_NUM 0x00070008