summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2014-06-05 11:02:23 +0200
committerantirez <antirez@gmail.com>2014-06-05 11:02:23 +0200
commit987a47b8235f6b7f38b5d9d0b5b36b7b1447f3f4 (patch)
treec89ba8409f75d37fc46a9d7b4c22ca1803f37f0b
parent430bec3461299b1be92029281e81697ddd33254d (diff)
downloadredis-987a47b8235f6b7f38b5d9d0b5b36b7b1447f3f4.tar.gz
Redis 2.8.10.2.8.10
-rw-r--r--00-RELEASENOTES24
-rw-r--r--src/version.h2
2 files changed, 25 insertions, 1 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index 37c0e5464..8b4babaaa 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -14,6 +14,30 @@ 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.10 ] Release date: 5 Jun 2014
+
+# UPGRADE URGENCY: HIGH if you use min-slaves-to-write option.
+
+* [FIX] IMPORTANT! A min-slaves-to-write option active in a slave totally
+ prevented the slave from acception the master stream of commands.
+ This release includes testes for min-slaves-to-write, and a fix
+ for this issue.
+* [FIX] Sometimes DEL returned 1 for already expired keys. Fixed.
+* [FIX] Fix test false positive because new osx 'leaks' output.
+* [FIX] PFCOUNT HLL cache invalidation fixed: no wrong value was reported
+ but the cache was not used at all, leading to lower performances.
+* [FIX] Accept(2) multiple clients per readable-event invocation, and better
+ processing of I/O while loading or busy running a timedout script.
+ Basically now the LOADING / BUSY errors are reported at a decent
+ speed.
+* [FIX] A softwaer watchdog crash fixed.
+* [FIX] Fixed a Lua -> Redis numerical precision loss.
+
+* [NEW] Lua scripting engine speed improved.
+* [NEW] Sentinel generates one new event for humans to understand better
+ what is happening during a failover: +config-update-from.
+ Also the time at which a failover will be re-attempted is logged.
+
--[ Redis 2.8.9 ] Release date: 22 Apr 2014
# UPGRADE URGENCY: LOW, only new features introduced, no bugs fixed.
diff --git a/src/version.h b/src/version.h
index b84367144..550144bc2 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1 +1 @@
-#define REDIS_VERSION "2.8.9"
+#define REDIS_VERSION "2.8.10"