summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2013-02-11 13:24:39 +0100
committerantirez <antirez@gmail.com>2013-02-11 13:24:39 +0100
commit948fdb5f7d20ccd795e8750f60d205022fcee410 (patch)
tree24be00ec5cbab973adf605ed78ec4d27f226c69e
parentfe97d7b1db826da5368e4b56cecd515c0eae860b (diff)
downloadredis-948fdb5f7d20ccd795e8750f60d205022fcee410.tar.gz
Redis 2.6.102.6.10
-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 2c5010660..3306784e5 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -14,6 +14,27 @@ 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.10 ]
+
+UPGRADE URGENCY: MODERATE, this release contains many non-critical fixes
+ and many small improvements.
+
+* [BUGFIX] redis-cli --rdb, fixed when the server sends newlines to ping.
+* [BUGFIX] redis-cli, minor fixes on connection handling, prompt.
+* [BUGFIX] Slow log: don't log EXEC, just executed commands.
+* [BUGFIX] On failed shutdown don't try again and again compulsively.
+* [BUGFIX] Fix build on sunos without backtrace().
+* [BUGFIX] UNSUBSCRIBE and PUNSUBSCRIBE: always provide a reply (see 742e580)
+* [BUGFIX] Lua struct library was broken, upgraded.
+* [BUGFIX] Fix a bug in srandmemberWithCountCommand() with count argument.
+* [BUGFIX] Test: disable clients timeout to prevent issues on slow systems.
+* [BUGFIX] Sentinel: don't advertise the promoted slave as master too early.
+* [IMPROVED] Whitelist SIGUSR1, see http://redis.io/topics/signals.
+* [IMPROVED] Simpler to understand redis-cli --bigkeys output.
+* [IMPROVED] Test now works with tclsh > 8.5.
+* [IMPROVED] Added option to turn of the Nagle algorithm in slave socket.
+* [IMPROVED] Optionally use SO_KEEPALIVE to detect dead peers.
+
--[ Redis 2.6.9 ]
UPGRADE URGENCY: MODERATE if you use replication.
diff --git a/src/version.h b/src/version.h
index 293bd1bfb..765dc9100 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1 +1 @@
-#define REDIS_VERSION "2.6.9"
+#define REDIS_VERSION "2.6.10"