From 0c29cadd4613d1e3c04c3f3165928ca353d054fe Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 14 Jul 2014 17:48:14 +0200 Subject: [PATCH] Redis 2.8.13. --- 00-RELEASENOTES | 18 ++++++++++++++++++ src/version.h | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/00-RELEASENOTES b/00-RELEASENOTES index 4955782d..b9fd1843 100644 --- a/00-RELEASENOTES +++ b/00-RELEASENOTES @@ -14,6 +14,24 @@ 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.13 ] Release date: 14 Jul 2014 + +# UPGRADE URGENCY: LOW for Redis and Sentinel, this is a features enhancement + release mostly. Since this release introduces the latency + monitoring feature, Redis 2.8 users experiencing latency + issues are strongly encouraged to upgrade. + +* [FIX] CLIENT KILL minor backward compatibility fixes. (Salvatore Sanfilippo) +* [FIX] Enable HAVE_ATOMIC for PowerPC. (Matt Stancliff) +* [FIX] More robust PSYNC and AOF rewrites tests. (Salvatore Sanfilippo) +* [FIX] Solaris build fixed. (Matt Stancliff, Salvatore Sanfilippo) + +* [NEW] The new latency monitoring feature, as documented at + http://redis.io/topics/latency-monitor (Salvatore Sanfilippo) +* [NEW] The COMMAND command, exposing the Redis command table + as an API. (Matt Stancliff) +* [NEW] Update used memory with C11 __atomic. (Matt Stancliff) + --[ Redis 2.8.12 ] Release date: 23 Jun 2014 # UPGRADE URGENCY: HIGH for Redis, CRITICAL for Sentinel. diff --git a/src/version.h b/src/version.h index f9f44ea8..7776a596 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define REDIS_VERSION "2.8.12" +#define REDIS_VERSION "2.8.13" -- GitLab