@@ -10,10 +10,35 @@ Upgrade urgency levels:
10
10
11
11
LOW: No need to upgrade unless there are new features you want to use.
12
12
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!
14
14
CRITICAL: There is a critical bug affecting MOST USERS. Upgrade ASAP.
15
15
--------------------------------------------------------------------------------
16
16
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
+
17
42
---[ Redis 2.5.12 (2.6 Release Candidate 6) ]
18
43
19
44
UPGRADE URGENCY: MODERATE.
0 commit comments