diff options
author | antirez <antirez@gmail.com> | 2014-06-30 11:48:36 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2014-06-30 12:11:22 +0200 |
commit | f884be68547c8d33ffe1a6523b5e67aa870abc8d (patch) | |
tree | fc430f6c0648165d0050fcd6c8296e9f71543293 | |
parent | 05b6b147ecd4844dcbefc67d672f18c2bf2f5938 (diff) | |
download | redis-8a31a9e06e55038bf0d50cdfa355c92bb94126ce.tar.gz |
Redis 2.9.56 (Redis 3.0.0 beta-7).3.0.0-beta7
-rw-r--r-- | 00-RELEASENOTES | 33 | ||||
-rw-r--r-- | src/version.h | 2 |
2 files changed, 34 insertions, 1 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES index c385c7f86..4cb67daae 100644 --- a/00-RELEASENOTES +++ b/00-RELEASENOTES @@ -12,6 +12,39 @@ 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.0 Beta 7 (version 2.9.56) ] Release date: 30 jun 2014 + +This is the 7th beta of Redis 3.0.0. + +>> General changes + +* [FIX] Scripting fixes backported from unstable, see Redis 2.8.12 changelog + for more info. (Salvatore Sanfilippo) +* [FIX] Cancel SHUTDOWN if initial AOF is being written. (Matt Stancliff) + +* [NEW] New command: COMMAND, for commands introspection (Matt Stancliff & + Salvatore Sanfilippo) +* [NEW] hiredis: Update to latest version. (Matt Stancliff) +* [NEW] Jemalloc updated to 3.6.0. (Salvatore Sanfilippo) + +>> Cluster changes + +* [FIX] Cluster: clear NOADDR flag when updating node address. + (Salvatore Sanfilippo) + +* [NEW] New CLUSTER SLOTS command to simplify Cluster clients operations. + (Matt Stancliff) +* [NEW] More Cluster tests. (Salvatore Sanfilippo) +* [NEW] Log when failover authorization are granted / denied. + (Salvatore Sanfilippo) + +>> Sentinel changes + +* [FIX] A few Sentinel bugs fixed and improvements, see Redis 2.8.12 + changelog for more info. (Salvatore Sanfilippo & Matt Stancliff) +* [NEW] New Sentinel-Client handshake protocol, ROLE command, CLIENT KILL, + all backported to 3.0 branch. (Salvatore Sanfilippo) + --[ Redis 3.0.0 Beta 6 (version 2.9.55) ] Release date: 9 jun 2014 This is the 6th beta of Redis 3.0.0. diff --git a/src/version.h b/src/version.h index ce4e02fc8..753ce36d2 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define REDIS_VERSION "2.9.55" +#define REDIS_VERSION "2.9.56" |