summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2015-07-17 11:50:21 +0200
committerantirez <antirez@gmail.com>2015-07-17 11:50:21 +0200
commitf15bf6c8f87f3008ea95dddca6be51261f411b44 (patch)
tree499bcacf851666b5109dfc166ca13600a540dd63
parent9b0a47cbc83920f2b6d20e51908978df6ab2e6cd (diff)
downloadredis-3.0.3.tar.gz
Redis 3.0.3.3.0.3
-rw-r--r--00-RELEASENOTES22
-rw-r--r--src/version.h2
2 files changed, 23 insertions, 1 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index 0f2e901cf..bffd7a120 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -10,6 +10,28 @@ 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.3 ] Release date: 17 Jul 2015
+
+Upgrade urgency: LOW for Redis and Sentinel.
+
+* [FIX] Fix blocking operations timeout precision when HZ is at its default
+ value (not increased) and there are thousands of clients connected
+ at the same time. This bug affected Sidekiq users that experienced
+ a very long delay for BLPOP and similar commands to return for
+ timeout. Check commit b029ff1 for more info. (Salvatore Sanfilippo)
+* [FIX] MIGRATE "creating socket: Invalid argument" error fix. Check
+ issues #2609 and #2612 for more info. (Salvatore Sanfilippo)
+* [FIX] Be able to connect to the master even when the slave is bound to
+ just the loopback interface and has no valid public address in the
+ network the master is reacahble. (Salvatore Sanfilippo)
+* [FIX] ZADD with options encoding promotion fixed. (linfangrong)
+* [FIX] Reset aof_delayed_fsync on CONFIG RESETSTATS. (Tom Kiemes)
+* [FIX] PFCOUNT key parsing in cluster fixed. (MOON_CLJ)
+* [FIX] Fix Solaris compilation of Redis 3.0. (Jan-Erik Rediger)
+
+* [NEW] Variadic EXISTS command. Now the command accepts multiple arguments
+ and returns the total count of existing keys.
+
--[ Redis 3.0.2 ] Release date: 4 Jun 2015
Upgrade urgency: HIGH for Redis because of a security issue.
diff --git a/src/version.h b/src/version.h
index ee8c63cec..93c9f285d 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1 +1 @@
-#define REDIS_VERSION "3.0.2"
+#define REDIS_VERSION "3.0.3"