summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2020-04-17 12:45:57 +0200
committerantirez <antirez@gmail.com>2020-04-17 12:45:57 +0200
commitce878b6ed5df1a7b3e87a8af2d1262de4c5bb828 (patch)
treeeb5caaefb0da545df92b577dd87f4a1037d3ee75
parent1fc8ef81aacd5f789a6e6446a975c37a269cdf8c (diff)
downloadredis-5.0.9.tar.gz
Redis 5.0.9.5.0.9
-rw-r--r--00-RELEASENOTES21
-rw-r--r--src/version.h2
2 files changed, 22 insertions, 1 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index 5c649ac05..7cd603ec9 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -12,6 +12,27 @@ SECURITY: There are security fixes in the release.
--------------------------------------------------------------------------------
================================================================================
+Redis 5.0.9 Released Thu Apr 17 12:41:00 CET 2020
+================================================================================
+
+Upgrade urgency:CRITICAL if you use Streams with AOF ore replicas.
+ Otherwise the upgrade urgency is LOW.
+
+This release has a speed improvement and a critical fix:
+
+ * FIX: XREADGROUP when fetching data in a blocking way, would not
+ emit the XCLAIM in the AOF file and to replicas. This means
+ that the last ID is not updated, and that restarting the server
+ will have the effect of reprocessing some entries.
+ * NEW: Clients blocked on the same key are now unblocked on
+ O(1) time. Backported from Redis 6.
+
+Commits:
+
+ 1fc8ef81a Fix XCLAIM propagation in AOF/replicas for blocking XREADGROUP.
+ a5e24eabc Speedup: unblock clients on keys in O(1).
+
+================================================================================
Redis 5.0.8 Released Thu Mar 12 16:05:41 CET 2020
================================================================================
diff --git a/src/version.h b/src/version.h
index aef576c73..9c2d7c250 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1 +1 @@
-#define REDIS_VERSION "5.0.8"
+#define REDIS_VERSION "5.0.9"