summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2013-03-29 17:42:39 +0100
committerantirez <antirez@gmail.com>2013-03-29 17:42:39 +0100
commit7da598084847504e4e3703fea40c73cdd3df6bef (patch)
tree0ed8aeba0d7fb2875347b9716945bc64bf6d7e97
parent062f60a36e8d1d54f54d12b5172f55b76244a4ac (diff)
downloadredis-2.6.12.tar.gz
Redis 2.6.122.6.12
-rw-r--r--00-RELEASENOTES16
-rw-r--r--src/version.h2
2 files changed, 17 insertions, 1 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index 3ff1d6602..fe8fc20e6 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -14,6 +14,22 @@ 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.6.12 ]
+
+UPGRADE URGENCY: MODERATE, nothing very critical but a few non trivial bugs.
+
+* [BUGFIX] redis-cli --bigkeys: don't crash with empty DB.
+* [BUGFIX] stop-writes-on-bgsave-error now works in redis.conf
+* [BUGFIX] Don't crash at startup if RDB is there but can't be opened.
+* [BUGFIX] Initial value for master_link_down_since_seconds is now huge.
+* [BUGFIX] Allow SELECT while loading the DB.
+* [BUGFIX] Don't replicate/AOF an empty MULTI/EXEC if the transaction
+ is empty or containing just read-only commands.
+* [BUGFIX] EXPIRE should not be able to resurrect keys (see issue #1026).
+* [IMPROVED] Extended SET back ported from Redis 2.8 / unstable
+ See http://redis.io/commands/set for more information.
+* [IMPROVED] Test suite improved.
+
--[ Redis 2.6.11 ]
UPGRADE URGENCY: LOW, however updating is encouraged if you have many instances
diff --git a/src/version.h b/src/version.h
index d44f9baae..f17045179 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1 +1 @@
-#define REDIS_VERSION "2.6.11"
+#define REDIS_VERSION "2.6.12"