Skip to content

Commit 51efb7f

Browse files
committedJun 9, 2020
Redis 6.0.5.
1 parent a7d3670 commit 51efb7f

File tree

2 files changed

+71
-1
lines changed

2 files changed

+71
-1
lines changed
 

‎00-RELEASENOTES

+70
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,76 @@ CRITICAL: There is a critical bug affecting MOST USERS. Upgrade ASAP.
1111
SECURITY: There are security fixes in the release.
1212
--------------------------------------------------------------------------------
1313

14+
================================================================================
15+
Redis 6.0.5 Released Tue Jun 09 11:56:08 CEST 2020
16+
================================================================================
17+
18+
Upgrade urgency MODERATE: several bugs with moderate impact are fixed here.
19+
20+
The most important issues are listed here:
21+
22+
* Fix handling of speical chars in ACL LOAD.
23+
* Make Redis Cluster more robust about operation errors that may lead
24+
to two clusters to mix together.
25+
* Revert the sendfile() implementation of RDB transfer. It causes some delay.
26+
* Fix TLS certificate loading for chained certificates.
27+
* Fix AOF rewirting of KEEPTTL SET option.
28+
* Fix MULTI/EXEC behavior during -BUSY script errors.
29+
30+
And this is the full list of commits:
31+
32+
antirez in commit ee8dd01bb:
33+
Temporary fix for #7353 issue about EVAL during -BUSY.
34+
1 file changed, 9 insertions(+)
35+
36+
xhe in commit a4a856d53:
37+
return the correct proto version HELLO should return the current proto version, while the code hardcoded 3
38+
1 file changed, 1 insertion(+), 1 deletion(-)
39+
40+
Oran Agra in commit e2046b300:
41+
Don't queue commands in an already aborted MULTI state
42+
1 file changed, 7 insertions(+)
43+
44+
Oran Agra in commit b35fdf1de:
45+
Avoid rejecting WATCH / UNWATCH, like MULTI/EXEC/DISCARD
46+
1 file changed, 4 insertions(+), 2 deletions(-)
47+
48+
zhaozhao.zz in commit 1d7bf208c:
49+
AOF: append origin SET if no expire option
50+
2 files changed, 23 insertions(+), 8 deletions(-)
51+
52+
Oran Agra in commit 676445ad9:
53+
fix disconnectSlaves, to try to free each slave.
54+
1 file changed, 1 deletion(-)
55+
56+
zhaozhao.zz in commit 4846c0c8a:
57+
donot free protected client in freeClientsInAsyncFreeQueue
58+
1 file changed, 9 insertions(+), 3 deletions(-)
59+
60+
Oran Agra in commit f33de403e:
61+
fix pingoff test race
62+
1 file changed, 1 insertion(+)
63+
64+
Kevin Fwu in commit 49af4d07e:
65+
Fix TLS certificate loading for chained certificates.
66+
1 file changed, 1 insertion(+), 1 deletion(-)
67+
68+
antirez in commit 329fddbda:
69+
Revert "Implements sendfile for redis."
70+
2 files changed, 2 insertions(+), 55 deletions(-)
71+
72+
antirez in commit 925a2cd5a:
73+
Revert "avoid using sendfile if tls-replication is enabled"
74+
1 file changed, 27 insertions(+), 34 deletions(-)
75+
76+
Liu Zhen in commit 84a7a9058:
77+
fix clusters mixing accidentally by gossip
78+
1 file changed, 10 insertions(+), 2 deletions(-)
79+
80+
antirez in commit cd63359a1:
81+
Fix handling of special chars in ACL LOAD.
82+
1 file changed, 8 insertions(+), 4 deletions(-)
83+
1484
================================================================================
1585
Redis 6.0.4 Released Thu May 28 11:36:45 CEST 2020
1686
================================================================================

‎src/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#define REDIS_VERSION "6.0.4"
1+
#define REDIS_VERSION "6.0.5"

0 commit comments

Comments
 (0)