summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2014-02-04 11:17:21 +0100
committerantirez <antirez@gmail.com>2014-02-04 11:17:21 +0100
commit4e809a9a1905464cc91e7774a4c0e40150026d7f (patch)
tree68b4a50a68ef7da0ab6c97e4f1781794c4809725
parentddcf16030936d42bf9cac48c63e723b1bf1ba053 (diff)
downloadredis-4e809a9a1905464cc91e7774a4c0e40150026d7f.tar.gz
Redis 2.8.5.2.8.5
-rw-r--r--00-RELEASENOTES22
-rw-r--r--src/version.h2
2 files changed, 23 insertions, 1 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index 3bf3c42e0..f2482a133 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -14,6 +14,28 @@ HIGH: There is a critical bug that may affect a subset of users. Upgrade!
CRITICAL: There is a critical bug affecting MOST USERS. Upgrade ASAP.
--------------------------------------------------------------------------------
+--[ Redis 2.8.5 ] Release date: 4 Feb 2014
+
+# UPGRADE URGENCY: HIGH for Redis, LOW for Sentinel. Redis users using Lua
+ scripts with expires, and Redis users relying on the
+ ability of Redis to block writes on RDB saving errors
+ should plan to upgrade ASAP.
+
+* [FIX] Fixed a replication bug caused by Lua scripts + expired keys: keys could
+ expire in the middle of scripts causing non-deterministic behavior.
+* [FIX] MISCONFIG error if condition fixed, the server was no longer able
+ to stop writes on RDB misconfiguration after this error was introduced.
+* [FIX] REDIS_AOF_REWRITE_MIN_SIZE is now 64mb like example redis.conf default.
+* [FIX] Perform fflush() before fsync() in rio.c (bug without actual effects).
+* [FIX] Don't log MONITOR clients as disconnecting slaves.
+* [FIX] SENTINEL MASTER arity check fixed. Crashed the Sentinel instance when
+ the command was given without arguments.
+
+* [NEW] Allow CONFIG and SHUTDOWN while in stale-slave state.
+* [NEW] Support for configurable TCP listen(2) backlog size.
+* [NEW] redis-cli supports SCAN via the --scan and --pattern options.
+* [NEW] SENTINEL SET master quorum via runtime API implemented.
+
--[ Redis 2.8.4 ] Release date: 13 Jan 2014
# UPGRADE URGENCY: MODERATE for Redis and Sentinel.
diff --git a/src/version.h b/src/version.h
index 016fabb92..fbe7caf0d 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1 +1 @@
-#define REDIS_VERSION "2.8.4"
+#define REDIS_VERSION "2.8.5"