summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2017-09-21 16:20:18 +0200
committerantirez <antirez@gmail.com>2017-09-21 16:20:18 +0200
commit1cb6effdc85183892dc56af054012cf875c264b7 (patch)
tree7caf899471aac47f421490c9823e6e646483d227
parent13e8e53806e466682444b262af2f3170541e2043 (diff)
downloadredis-1cb6effdc85183892dc56af054012cf875c264b7.tar.gz
Redis 3.2.11.3.2.11
-rw-r--r--00-RELEASENOTES15
-rw-r--r--src/version.h2
2 files changed, 16 insertions, 1 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index 5361593f4..06b04694c 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -11,6 +11,21 @@ CRITICAL: There is a critical bug affecting MOST USERS. Upgrade ASAP.
--------------------------------------------------------------------------------
================================================================================
+Redis 3.2.11 Released Thu Sep 21 15:47:53 CEST 2017
+================================================================================
+
+Upgrade urgency HIGH: Potentially critical bugs fixed.
+
+AOF flush on SHUTDOWN did not cared to really write the AOF buffers
+(not in the kernel but in the Redis process memory) to disk before exiting.
+Calling SHUTDOWN during traffic resulted into not every operation to be
+persisted on disk.
+
+Oran Agra (and also Buğra Gedik) in commit 8651e5d5:
+ Flush append only buffers before existing.
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+================================================================================
Redis 3.2.10 Released Fri Jul 28 17:49:07 CEST 2017
================================================================================
diff --git a/src/version.h b/src/version.h
index 8ccd9efc3..60c3a5391 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1 +1 @@
-#define REDIS_VERSION "3.2.10"
+#define REDIS_VERSION "3.2.11"