Skip to content

Commit 77de5c2

Browse files
committed
Redis 3.2.6.
1 parent f20f3ea commit 77de5c2

File tree

2 files changed

+45
-1
lines changed

2 files changed

+45
-1
lines changed

00-RELEASENOTES

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,50 @@ HIGH: There is a critical bug that may affect a subset of users. Upgrade!
1010
CRITICAL: There is a critical bug affecting MOST USERS. Upgrade ASAP.
1111
--------------------------------------------------------------------------------
1212

13+
================================================================================
14+
Redis 3.2.6 Released Tue Dec 06 09:33:29 CET 2016
15+
================================================================================
16+
17+
Upgrade urgency MODERATE: GEORADIUS, BITFIELD and Redis Cluster minor fixes.
18+
19+
This release mainly fixes three bugs:
20+
21+
1. A bug with BITFIELD that may cause the bitmap corruption when setting offsets
22+
larger than the current string size.
23+
24+
2. A GEORADIUS bug that may happen when using very large radius lengths, in
25+
the range of 10000km or alike, due to wrong bounding box calculation.
26+
27+
3. A bug with Redis Cluster which crashes when reading a nodes configuration
28+
file with zero bytes at the end, which sometimes happens with certain ext4
29+
configurations after a system crash.
30+
31+
The following is the list of commits:
32+
33+
antirez in commit f20f3ea:
34+
Geo: improve fuzz test.
35+
1 file changed, 11 insertions(+), 3 deletions(-)
36+
37+
antirez in commit 8c22086:
38+
Geo: fix computation of bounding box.
39+
2 files changed, 33 insertions(+), 27 deletions(-)
40+
41+
antirez in commit 92958df:
42+
Cluster: handle zero bytes at the end of nodes.conf.
43+
1 file changed, 1 insertion(+), 1 deletion(-)
44+
45+
antirez in commit 0ee28ae:
46+
Test: regression test for #3564 added.
47+
1 file changed, 9 insertions(+)
48+
49+
sunhe in commit 289fadb:
50+
bitops.c/bitfieldCommand: update higest_write_offset with check
51+
1 file changed, 3 insertions(+), 2 deletions(-)
52+
53+
jybaek in commit f4f7d2c:
54+
Add missing fclose()
55+
1 file changed, 1 insertion(+)
56+
1357
================================================================================
1458
Redis 3.2.5 Released Wed Oct 26 09:16:40 CEST 2016
1559
================================================================================

src/version.h

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

0 commit comments

Comments
 (0)