summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOran Agra <oran@redislabs.com>2022-06-12 13:06:03 +0300
committerOran Agra <oran@redislabs.com>2022-06-12 13:06:03 +0300
commit1973558b63dd7354841c8a12fb9d4107ac7eaa4e (patch)
treedff5b7e2aa9e891e5b324aa89b20857eb1338fe0
parent5267d3803f32bf9a1acda12441a59daf7cef02c3 (diff)
downloadredis-1973558b63dd7354841c8a12fb9d4107ac7eaa4e.tar.gz
7.0.2
-rw-r--r--00-RELEASENOTES21
-rw-r--r--src/version.h4
2 files changed, 21 insertions, 4 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index 78dbc5ad6..b6ebeb5ed 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -11,6 +11,23 @@ CRITICAL: There is a critical bug affecting MOST USERS. Upgrade ASAP.
SECURITY: There are security fixes in the release.
--------------------------------------------------------------------------------
+
+================================================================================
+Redis 7.0.2 Released Sunday Jun 12 12:00:00 IST 2022
+================================================================================
+
+Upgrade urgency: MODERATE, specifically if you're using a previous release of
+Redis 7.0, contains fixes for bugs in previous 7.0 releases.
+
+Bug Fixes
+=========
+
+* Fixed SET and BITFIELD commands being wrongly marked movablekeys (#10837)
+ Regression in 7.0 possibly resulting in excessive roundtrip from cluster clients.
+* Fix crash when /proc/sys/vm/overcommit_memory is inaccessible (#10848)
+ Regression in 7.0.1 resulting in crash on startup on some configurations.
+
+
================================================================================
Redis 7.0.1 Released Wed Jun 8 12:00:00 IST 2022
================================================================================
@@ -79,8 +96,8 @@ Bug Fixes
* Replica fail and retry the PSYNC if the master is unresponsive (#10726)
* Fix ZRANGESTORE crash when zset_max_listpack_entries is 0 (#10767)
-Fixes for issues in previous release candidates of Redis 7.0
-------------------------------------------------------------
+Fixes for issues in previous releases of Redis 7.0
+--------------------------------------------------
* CONFIG REWRITE could cause a config change to be dropped for aliased configs (#10811)
* CONFIG REWRITE would omit rename-command and include lines (#10761)
diff --git a/src/version.h b/src/version.h
index 84d0dd25c..eff0a6015 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1,2 +1,2 @@
-#define REDIS_VERSION "7.0.1"
-#define REDIS_VERSION_NUM 0x00070001
+#define REDIS_VERSION "7.0.2"
+#define REDIS_VERSION_NUM 0x00070002