Skip to content

Commit 4403862

Browse files
committed
Redis 2.5.13 (2.6.0 RC7).
1 parent 174518f commit 4403862

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

00-RELEASENOTES

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,35 @@ Upgrade urgency levels:
1010

1111
LOW: No need to upgrade unless there are new features you want to use.
1212
MODERATE: Program an upgrade of the server, but it's not urgent.
13-
HIGH: There is a critical bug that may affect some part of users. Upgrade!
13+
HIGH: There is a critical bug that may affect a subset of users. Upgrade!
1414
CRITICAL: There is a critical bug affecting MOST USERS. Upgrade ASAP.
1515
--------------------------------------------------------------------------------
1616

17+
---[ Redis 2.5.13 (2.6 Release Candidate 7) ]
18+
19+
UPGRADE URGENCY: HIGH
20+
21+
* [BUGFIX] Theoretical bug in ziplist fixed.
22+
* [BUGFIX] Better out of memory handling (Log produced in log file).
23+
* [BUGFIX] Incrementally flush RDB file on slave side while performing the
24+
first synchronization with the master. This makes Redis less
25+
blocking in environments where disk I/O is slow.
26+
* [BUGFIX] Don't crash with Lua's redis.call() without arguments.
27+
* [BUGFIX] Don't crash after a big number of Lua calls on 32 bit systems
28+
because of a failed assertion.
29+
* [BUGFIX] Fix SORT behaviour when called from scripting.
30+
* [BUGFIX] Adjust slave PING period accordingly to REDIS_HZ define.
31+
* [BUGFIX] BITCOUNT: fix crash on overflowing arguments.
32+
* [BUGFIX] Return an error when SELECT argument is not an integer.
33+
* [BUGFIX] Blocking operations on lists were completely reimplemented for
34+
correctness. Now blocking list ops and pushes originated from
35+
Lua scripts will play well together and will be replicated
36+
and transmitted to the AOF correctly.
37+
* [IMPROVED] Send async PING before starting replication to avoid blocking if
38+
master allows us to connect but it is actually not able to reply.
39+
* [IMPROVED] Support slave-priority for Redis Sentinel.
40+
* [IMPROVED] Hiredis library updated.
41+
1742
---[ Redis 2.5.12 (2.6 Release Candidate 6) ]
1843

1944
UPGRADE URGENCY: MODERATE.

src/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#define REDIS_VERSION "2.5.12"
1+
#define REDIS_VERSION "2.5.13"

0 commit comments

Comments
 (0)