summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2015-10-15 15:44:54 +0200
committerantirez <antirez@gmail.com>2015-10-15 15:44:54 +0200
commitc7ec1a367af33c66db228084ba9fbb72f8d1fc33 (patch)
tree6df1ae5f0ba255b2add29b701537ec0f376ce499
parentab1f8ea5086cae7eaa58ec9bfacd238c6b0df7dc (diff)
downloadredis-3.0.5.tar.gz
Redis 3.0.53.0.5
-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 6f1261949..67582f924 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -10,6 +10,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 3.0.5 ] Release date: 15 Oct 2015
+
+Upgrade urgency: MODERATE, the most important thing is a fix in the replication
+ code that may make the slave hanging forever if the master
+ remains with an open socket even if it is no longer able to
+ reply.
+
+* [FIX] MOVE now moves the TTL as well. A bug lasting forever... finally
+ fixed thanks to Andy Grunwald that reported it.
+ (reported by Andy Grunwald, fixed by Salvatore Sanfilippo)
+* [FIX] Fix a false positive in HSTRLEN test.
+* [FIX] Fix a bug in redis-cli --pipe mode that was not able to read back
+ replies from the server incrementally. Now a mass import will use
+ a lot less memory, and you can use --pipe to do incremental streaming.
+ (reported by Twitter user @fsaintjacques, fixed by Salvatore
+ Sanfilippo)
+* [FIX] Slave detection of master timeout. (fixed by Kevin McGehee, refactoring
+ and regression test by Salvatore Sanfilippo)
+
+* [NEW] Cluster: redis-trib fix can fix an additional case for opens lots.
+ (Salvatore Sanfilippo)
+* [NEW] Cluster: redis-trib import support for --copy and --replace options
+ (David Thomson)
+
--[ Redis 3.0.4 ] Release date: 8 Sep 2015
Upgrade urgency: HIGH for Redis and Sentinel. However note that in order to
diff --git a/src/version.h b/src/version.h
index 86aa96d48..58fd3312a 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1 +1 @@
-#define REDIS_VERSION "3.0.4"
+#define REDIS_VERSION "3.0.5"