xref: /redis-3.2.3/00-RELEASENOTES (revision 44bf2533)
1Redis 3.2 release notes
2=======================
3
4--------------------------------------------------------------------------------
5Upgrade urgency levels:
6
7LOW:      No need to upgrade unless there are new features you want to use.
8MODERATE: Program an upgrade of the server, but it's not urgent.
9HIGH:     There is a critical bug that may affect a subset of users. Upgrade!
10CRITICAL: There is a critical bug affecting MOST USERS. Upgrade ASAP.
11--------------------------------------------------------------------------------
12
13================================================================================
14Redis 3.2.3     Released Tue Aug 02 10:55:24 CEST 2016
15================================================================================
16
17Upgrade urgency MODERATE: Fix replication delay and redis-cli security issue.
18
19Hello,
20
21this is a minor release of Redis addressing two bugs:
22
231. There was an inverted if statement logic problem in replication.c causing
24   a replication delay. This is not an actual problem since things work
25   as expected, but worth to fix ASAP anyway.
26
272. Redis-cli created the history file with insecure permissions, allowing
28   reding from the file. This was actually a bug in linenoise which is
29   now fixed. The applied fix is from Chris Lamb.
30
31List of commits:
32
33Qu Chen in commit e67ad1d:
34 Fix a bug to delay bgsave while AOF rewrite in progress for replication
35 1 file changed, 1 insertion(+), 1 deletion(-)
36
37antirez in commit 7153668:
38 Update linenoise to fix insecure redis-cli history file creation.
39 1 file changed, 6 insertions(+), 1 deletion(-)
40
41================================================================================
42Redis 3.2.2     Released Thu Jul 28 14:14:54 CEST 2016
43================================================================================
44
45Upgrade urgency MODERATE: A Redis server and a Sentinel crash are now fixed.
46                          GEORADIUS errors in reported entries are fixed.
47
48Hi all! Redis 3.2.2 is finally out with non trivial bugfixes and a few new
49features. Let's start from the bugs:
50
511. There was a bug in the List type implementation, able to cause the
52   crash of the server under certain (non trivial to replicate) circumstances
53   when the LSET command was used. Now the bug is fixed and a new stress tester
54   that was able to easily trigger the bug was added to the test suite.
55
562. Redis Sentinel, when monitoring multiple masters, could crash after
57   a Sentinel address update event.
58
593. Redis Sentinel now checks slaves INFO state more often when disconnected.
60   This is not really a bug fix, but may allow to more easily detect that
61   a slave is able to fail over its master reducing certain delays.
62
634. It was possible, under a variety of conditions, that the AOF and RDB children
64   process could spawn at the same time. This is known to trash disk I/O,
65   AOF performances, and to ultimately create latency in the Redis server.
66   Normally Redis avoids to have the two writing children at the same time, but
67   there were edge cases discovered by Oran Agra (that also co-authored the
68   fix with me) where the double-fork could happen. In order to fix this bug
69   non trivial changes to the replication code were operated, however it was
70   important to back port this fix into 3.2.2 because the bug could lead to
71   bad latency experiences in certain cases.
72
735. Many GEORADIUS bugs are now fixed \o/. This started as a failing CI
74   test. I grepped for more clues and there were a number of random failures
75   in the points reported by GEORADIUS. The errors were found to be related
76   to three different bugs (one of these was a bug in the test itself).
77   It's not a critical bug: the effect is to, sometimes, don't report objects
78   that are near the radius, but only with specific sets of coordinates
79   and radius settings. However now the issues are fixed and the error
80   vectors were added as regression tests.
81
82And now the good news (not that bug fixes are not good...), that is, the
83new features!
84
851. Now slaves support the slave-announce-ip and slave-announce-port options.
86   Using these features a slave can be reported by the master `INFO` output
87   and `ROLE` command as having arbitrary IP and port. This allows to have
88   Sentinel deployments when working with containers or NAT-ed environments
89   more easily.
90
912. The RDB check utlity is now part of Redis and uses the same RDB code that
92   Redis uses in order to load the dataset in memory, so a given version
93   of Redis is always able to check the RDB it produced... without another
94   external check tool which is supposed to be taken in sync with the
95   rdb.c implementation. This in turn also means that the new RDB checking
96   is able to spot more complex bugs, since it really loads the dataset
97   instead of just skipping bytes.
98
99About the redis-check-dump utility, now it is also able to show certain
100information about the RDB file, like the version that produced it, when
101it was produced, and so forth. Example:
102
103    ./redis-check-rdb dump.rdb
104    [offset 0] Checking RDB file dump.rdb
105    [offset 32] AUX FIELD redis-ver = '3.2.2'
106    [offset 46] AUX FIELD redis-bits = '64'
107    [offset 58] AUX FIELD ctime = '1469710178'
108    [offset 73] AUX FIELD used-mem = '1186528'
109
110The ability to check how much memory was used by the instance that produced
111the RDB file can be especially useful.
112
113For credits and the full change log, see the list of commits below, that was
114modified in order to be a bit less verbose compared to the last releases.
115
116Enjoy!
117Salvatore
118
119antirez in commit 0a45fbc:
120 Ability of slave to announce arbitrary ip/port to master.
121 6 files changed, 129 insertions(+), 17 deletions(-)
122
123antirez in commit c3982c0:
124 redis-benchmark: new option to show server errors on stdout.
125 1 file changed, 17 insertions(+), 1 deletion(-)
126
127antirez in commit fdafe23:
128 Multiple GEORADIUS bugs fixed.
129 6 files changed, 177 insertions(+), 21 deletions(-)
130
131antirez in commit a1bfe22:
132 Replication: when possible start RDB saving ASAP.
133 1 file changed, 8 insertions(+), 2 deletions(-)
134
135antirez in commit 7ca69af:
136 Sentinel: new test unit 07 that tests master down conditions.
137 1 file changed, 68 insertions(+)
138
139antirez in commit 5b5e652:
140 Sentinel: check Slave INFO state more often when disconnected.
141 2 files changed, 10 insertions(+), 3 deletions(-)
142
143antirez in commit 21cffc2:
144 Avoid simultaneous RDB and AOF child process.
145 4 files changed, 51 insertions(+), 8 deletions(-)
146
147antirez in commit 017378e:
148 Replication: start BGSAVE for replication always in replicationCron().
149 1 file changed, 15 insertions(+), 12 deletions(-)
150
151antirez in commit 940be9a:
152 Regression test for issue #3333.
153 1 file changed, 6 insertions(+)
154
155antirez in commit 21736b4:
156 getLongLongFromObject: use string2ll() instead of strict_strtoll().
157 1 file changed, 1 insertion(+), 6 deletions(-)
158
159antirez in commit 0b748e9:
160 redis-cli: check SELECT reply type just in state updated.
161 1 file changed, 1 insertion(+), 1 deletion(-)
162
163sskorgal in commit 1158386:
164 Fix for redis_cli printing default DB when select command fails.
165 1 file changed, 1 insertion(+), 1 deletion(-)
166
167antirez in commit 026f9fc:
168 Sentinel: fix cross-master Sentinel address update.
169 1 file changed, 9 insertions(+), 2 deletions(-)
170
171antirez in commit 11523b3:
172 CONFIG GET is now no longer case sensitive.
173 1 file changed, 12 insertions(+), 12 deletions(-)
174
175antirez in commit f5a7f4f:
176 Fix test for new RDB checksum failure message.
177 1 file changed, 1 insertion(+), 1 deletion(-)
178
179antirez in commit 4c6ff74:
180 Make tcp-keepalive default to 300 in internal conf.
181 1 file changed, 1 insertion(+), 1 deletion(-)
182
183antirez in commit 27dbec2:
184 In Redis RDB check: more details in error reportings.
185 1 file changed, 24 insertions(+), 13 deletions(-)
186
187antirez in commit 41f3004:
188 In Redis RDB check: log decompression errors.
189 2 files changed, 23 insertions(+), 2 deletions(-)
190
191antirez in commit 278fe3e:
192 In Redis RDB check: log object type on error.
193 1 file changed, 27 insertions(+), 2 deletions(-)
194
195antirez in commit a117dfa:
196 Added a trivial program to randomly corrupt RDB files in /utils.
197 1 file changed, 44 insertions(+)
198
199antirez in commit f5110c3:
200 In Redis RDB check: minor output message changes.
201 1 file changed, 4 insertions(+), 1 deletion(-)
202
203antirez in commit 35b18bf:
204 In Redis RDB check: better error reporting.
205 4 files changed, 71 insertions(+), 14 deletions(-)
206
207antirez in commit f578f08:
208 In Redis RDB check: initial POC.
209 2 files changed, 189 insertions(+), 647 deletions(-)
210
211tielei in commit 7f1e1ca:
212 A string with 21 chars is not representable as a 64-bit integer.
213 1 file changed, 2 insertions(+), 2 deletions(-)
214
215antirez in commit 7a3a595:
216 Test: new randomized stress tester for #3343 alike bugs.
217 1 file changed, 27 insertions(+), 2 deletions(-)
218
219antirez in commit c75ca10:
220 Stress tester WIP.
221 1 file changed, 3 insertions(+)
222
223antirez in commit 2c3fcf8:
224 Regression test for issue #3343 exact min crash sequence.
225 1 file changed, 16 insertions(+)
226
227antirez in commit 7041967:
228 Fix quicklistReplaceAtIndex() by updating the quicklist ziplist size.
229 1 file changed, 1 insertion(+)
230
231================================================================================
232Redis 3.2.1     Released Fri Jun 17 15:01:56 CEST 2016
233================================================================================
234
235Upgrade urgency HIGH: Critical fix to Redis Sentinel, due to 3.2.0 regression
236                      compared to 3.0.
237
238Hey, this is Redis 3.2.1, and this release should bring some grain of
239maturity to Redis 3.2. The list of commits following this note will tell
240you the details, but the main things addressed in this release are the
241following:
242
2431. A critical bug in Sentinel was hopefully fixed. During the big 3.2
244   refactoring of Redis Sentinel, in order to implement connection sharing
245   to make Sentinel able to scale better (few Sentinels to monitor many
246   masters), a bug was introduced that mis-counted the number of pending
247   commands in the Redis link. This in turn resulted into an inability to talk
248   with certain Redis instances. A common result of this bug was the inability
249   of Redis Sentinel to reconfigure back the old master, after a failover,
250   when it is reachable again, as the slave of the new master. This was due
251   to the inability to talk with the old master at all.
252
2532. BITFIELD bugs fixed.
254
2553. GEO commands fixes on syntax errors and edge cases.
256
2574. RESTORE now accepts dumps generated by older Redis versions.
258
2595. Jemalloc now is really configured to save you memory, for a problem a
260   change in the jemalloc configuration did not really survived when the
261   3.2.0 release was finalized.
262
2636. TTL and TYPE command no longer alter the last access time of a key, for
264   LRU evictions purposes. A new TOUCH command was introduced *just* to
265   update the access time of a key.
266
2677. A bug was fixed in redis-cli, that connected to the instance running on the
268   port 6379 if there was one, regardless of what was specified.
269
2708. TCP keep alive is now enabled by default. This should fix most ghost
271   connections problems without resulting in any practical change in otherwise
272   sane deployments.
273
2749. A Sentinel crash that could happen during failovers was fixed.
275
276And of course, more minor things that you can read in the detailed log
277below. There are still reported bugs for 3.2 that were not fixed in this
278release, but nothing critical AFAIK, and I wanted to release this one ASAP,
279so likely a new release will not be too far.
280
281Enjoy,
282Salvatore
283
284+-------------------------------------------------------------------------------
285| config set list-max-ziplist-size didn't support negative values, unlike config file
286| By oranagra, 2016-05-22 20:35:14 +0300
287+--------------------------------------------------------------------------------
288https://github.com/antirez/redis/commit/8207e828043e37a0d7e058530d2886bb3ff395ff
289
290
291 src/config.c | 6 +++---
292 1 file changed, 3 insertions(+), 3 deletions(-)
293
294+-------------------------------------------------------------------------------
295| Fix Sentinel pending commands counting.
296| By antirez, 2016-06-16 19:24:34 +0200
297+--------------------------------------------------------------------------------
298https://github.com/antirez/redis/commit/6ad0371c9b4206a7a6692d50c9a301457baf9b6d
299
300This bug most experienced effect was an inability of Redis to
301reconfigure back old masters to slaves after they are reachable again
302after a failover. This was due to failing to reset the count of the
303pending commands properly, so the master appeared fovever down.
304
305Was introduced in Redis 3.2 new Sentinel connection sharing feature
306which is a lot more complex than the 3.0 code, but more scalable.
307
308Many thanks to people reporting the issue, and especially to
309@sskorgal for investigating the issue in depth.
310
311Hopefully closes #3285.
312
313 src/sentinel.c | 1 +
314 1 file changed, 1 insertion(+)
315
316+-------------------------------------------------------------------------------
317| redis-cli: really connect to the right server.
318| By antirez, 2016-06-16 17:23:31 +0200
319+--------------------------------------------------------------------------------
320https://github.com/antirez/redis/commit/58f1d446c35e8fe62df7c9ebe10f3c40a386c022
321
322I recently introduced populating the autocomplete help array with the
323COMMAND command if available. However this was performed before parsing
324the arguments, defaulting to instance 6379. After the connection is
325performed it remains stable.
326
327The effect is that if there is an instance running on port 6339,
328whatever port you specify is ignored and 6379 is connected to instead.
329The right port will be selected only after a reconnection.
330
331Close #3314.
332
333 src/redis-cli.c | 7 +++++--
334 1 file changed, 5 insertions(+), 2 deletions(-)
335
336+-------------------------------------------------------------------------------
337| Remove debug printing
338| By Jan-Erik Rediger, 2016-05-21 13:50:01 +0200
339+--------------------------------------------------------------------------------
340https://github.com/antirez/redis/commit/b6007b324b81dbd4ffe519b3bdb19ab65fbb407f
341
342
343 src/redis-cli.c | 3 ---
344 1 file changed, 3 deletions(-)
345
346+-------------------------------------------------------------------------------
347| RESTORE: accept RDB dumps with older versions.
348| By antirez, 2016-06-16 15:53:57 +0200
349+--------------------------------------------------------------------------------
350https://github.com/antirez/redis/commit/f592b4d3178963878084a522b4fd050772c335ae
351
352Reference issue #3218.
353
354Checking the code I can't find a reason why the original RESTORE
355code was so opinionated about restoring only the current version. The
356code in to `rdb.c` appears to be capable as always to restore data from
357older versions of Redis, and the only places where it is needed the
358current version in order to correctly restore data, is while loading the
359opcodes, not the values itself as it happens in the case of RESTORE.
360
361For the above reasons, this commit enables RESTORE to accept older
362versions of values payloads.
363
364 src/cluster.c | 2 +-
365 1 file changed, 1 insertion(+), 1 deletion(-)
366
367+-------------------------------------------------------------------------------
368| CLIENT error message was out of date
369| By oranagra, 2016-05-23 11:42:21 +0300
370+--------------------------------------------------------------------------------
371https://github.com/antirez/redis/commit/047ced4473ee35485e22e45db8b8b4a272bf1177
372
373
374 src/networking.c | 2 +-
375 1 file changed, 1 insertion(+), 1 deletion(-)
376
377+-------------------------------------------------------------------------------
378| fix georadius returns multiple replies
379| By oranagra, 2016-05-23 13:58:50 +0300
380+--------------------------------------------------------------------------------
381https://github.com/antirez/redis/commit/14e04847ac2960aefe31dccbec63d2503cf09ca5
382
383
384 src/geo.c | 7 +++++--
385 1 file changed, 5 insertions(+), 2 deletions(-)
386
387+-------------------------------------------------------------------------------
388| Minor aesthetic fixes to PR #3264.
389| By antirez, 2016-06-16 12:54:33 +0200
390+--------------------------------------------------------------------------------
391https://github.com/antirez/redis/commit/bd23ea3f9f3defbbdf512864ee1a88fd02665a7f
392
393Comment format fixed + local var modified from camel case to underscore
394separators as Redis code base normally does (camel case is mostly used
395for global symbols like structure names, function names, global vars,
396...).
397
398 src/bitops.c | 10 +++++-----
399 1 file changed, 5 insertions(+), 5 deletions(-)
400
401+-------------------------------------------------------------------------------
402| check WRONGTYPE in BITFIELD before looping on the operations.
403| By oranagra, 2016-05-24 23:31:36 +0300
404+--------------------------------------------------------------------------------
405https://github.com/antirez/redis/commit/2a3ee58ec73b6abdeeb4890937b25191119bce35
406
407optimization: lookup key only once, and grow at once to the max need
408fixes #3259 and #3221, and also an early return if wrongtype is discovered by SET
409
410 src/bitops.c | 27 ++++++++++++++++++---------
411 1 file changed, 18 insertions(+), 9 deletions(-)
412
413+-------------------------------------------------------------------------------
414| fix crash in BITFIELD GET on non existing key or wrong type see #3259
415| By oranagra, 2016-05-24 14:52:43 +0300
416+--------------------------------------------------------------------------------
417https://github.com/antirez/redis/commit/a2e27b810edfad18b3ecc9c176a4606f94a2f0e4
418
419this was a bug in the recent refactoring: bee963c4459223d874e3294a0d8638a588d33c8e
420
421 src/bitops.c | 8 +++++---
422 1 file changed, 5 insertions(+), 3 deletions(-)
423
424+-------------------------------------------------------------------------------
425| fix check when can't send the command to the promoted slave
426| By MOON_CLJ, 2016-05-26 13:10:12 +0800
427+--------------------------------------------------------------------------------
428https://github.com/antirez/redis/commit/26555f5e008b099b888ef39cabec632f4b31a038
429
430
431 src/sentinel.c | 2 +-
432 1 file changed, 1 insertion(+), 1 deletion(-)
433
434+-------------------------------------------------------------------------------
435| Test TOUCH and new TTL / TYPE behavior about object access time.
436| By antirez, 2016-06-15 17:15:18 +0200
437+--------------------------------------------------------------------------------
438https://github.com/antirez/redis/commit/f1c237cb6a647ad5400b0ebce124fd9802ea7f89
439
440
441 tests/test_helper.tcl          |  1 +
442 tests/unit/introspection-2.tcl | 23 +++++++++++++++++++++++
443 2 files changed, 24 insertions(+)
444
445+-------------------------------------------------------------------------------
446| GETRANGE: return empty string with negative, inverted start/end.
447| By antirez, 2016-06-15 12:48:58 +0200
448+--------------------------------------------------------------------------------
449https://github.com/antirez/redis/commit/d4831e328759bf5bd07c2c6e6ce1d60e84ba196f
450
451
452 src/bitops.c   | 4 ++--
453 src/t_string.c | 4 ++++
454 2 files changed, 6 insertions(+), 2 deletions(-)
455
456+-------------------------------------------------------------------------------
457| Remove additional round brackets from fix for #3282.
458| By antirez, 2016-06-15 12:16:39 +0200
459+--------------------------------------------------------------------------------
460https://github.com/antirez/redis/commit/9942070f5a41fa3bc953e9628a7248aeb7c0befa
461
462
463 src/bitops.c | 2 +-
464 1 file changed, 1 insertion(+), 1 deletion(-)
465
466+-------------------------------------------------------------------------------
467| bitcount bug:return non-zero value when start > end (both negative)
468| By wenduo, 2016-05-30 16:21:08 +0800
469+--------------------------------------------------------------------------------
470https://github.com/antirez/redis/commit/f45fa5d05f47a5729786a69962119c9b3dc12645
471
472
473 src/bitops.c | 4 ++++
474 1 file changed, 4 insertions(+)
475
476+-------------------------------------------------------------------------------
477| Regression test for #3282.
478| By antirez, 2016-06-15 11:49:49 +0200
479+--------------------------------------------------------------------------------
480https://github.com/antirez/redis/commit/0cb86064e602a093a23b56943a7321fe1af64984
481
482
483 tests/unit/bitops.tcl | 10 ++++++++++
484 1 file changed, 10 insertions(+)
485
486+-------------------------------------------------------------------------------
487| TTL and TYPE LRU access fixed. TOUCH implemented.
488| By antirez, 2016-06-14 15:33:59 +0200
489+--------------------------------------------------------------------------------
490https://github.com/antirez/redis/commit/b23aa6706ac79a1c86c64aef07bd35e38f10f842
491
492
493 src/db.c     | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++-------
494 src/server.c |  1 +
495 src/server.h |  6 +++++-
496 3 files changed, 60 insertions(+), 8 deletions(-)
497
498+-------------------------------------------------------------------------------
499| redis-cli help.h updated.
500| By antirez, 2016-06-14 14:45:48 +0200
501+--------------------------------------------------------------------------------
502https://github.com/antirez/redis/commit/6e4204fec9c78f3300d887ebc3db014df2c8b33e
503
504
505 src/help.h | 43 +++++++++++++++++++++++++++++--------------
506 1 file changed, 29 insertions(+), 14 deletions(-)
507
508+-------------------------------------------------------------------------------
509| Fix GEORADIUS wrong output with radius > Earth radius.
510| By antirez, 2016-05-30 12:45:49 +0200
511+--------------------------------------------------------------------------------
512https://github.com/antirez/redis/commit/bb43f4cab2f756c0412ca2b94d9e29c3db5025ab
513
514Close #3266
515
516 deps/geohash-int/geohash_helper.c | 2 ++
517 1 file changed, 2 insertions(+)
518
519+-------------------------------------------------------------------------------
520| Geo: fix typo in geohashEstimateStepsByRadius().
521| By antirez, 2016-05-30 15:31:19 +0200
522+--------------------------------------------------------------------------------
523https://github.com/antirez/redis/commit/16102bc0af0912a0c9a92aedddf796eb24a80b9e
524
525I'm the author of this line but I can't see a good reason for it to
526don't be a typo, a step of 26 should be valid with 52 bits per
527coordinate, moreover the line was:
528
529    if (step > 26) step = 25;
530
531So a step of 26 was actually already used, except when one of 27 was
532computed (which is invalid) only then it was trimmed to 25 instead of
53326.
534
535All tests passing after the change.
536
537 deps/geohash-int/geohash_helper.c | 2 +-
538 1 file changed, 1 insertion(+), 1 deletion(-)
539
540+-------------------------------------------------------------------------------
541| Avoid undefined behavior in BITFIELD implementation.
542| By antirez, 2016-05-31 11:52:07 +0200
543+--------------------------------------------------------------------------------
544https://github.com/antirez/redis/commit/014bf8044285c6d401d83e6e24829d276ab837f9
545
546Probably there is no compiler that will actaully break the code or raise
547a signal for unsigned -> signed overflowing conversion, still it was
548apparently possible to write it in a more correct way.
549
550All tests passing.
551
552 src/bitops.c | 23 +++++++++++++++--------
553 1 file changed, 15 insertions(+), 8 deletions(-)
554
555+-------------------------------------------------------------------------------
556| Now that SPOP can be called by scripts use BLPOP on 's' flag test.
557| By antirez, 2016-05-31 16:43:21 +0200
558+--------------------------------------------------------------------------------
559https://github.com/antirez/redis/commit/b4e5e2ec1ad7e9d1f4e7e559b61e0ecd4e50f2da
560
561
562 tests/unit/scripting.tcl | 2 +-
563 1 file changed, 1 insertion(+), 1 deletion(-)
564
565+-------------------------------------------------------------------------------
566| Test: run GEO tests by default.
567| By antirez, 2016-05-31 16:43:49 +0200
568+--------------------------------------------------------------------------------
569https://github.com/antirez/redis/commit/df419281a19e13429b27814a3e384f6f029c3519
570
571Thanks to @oranagra for noticing it was missing.
572
573 tests/test_helper.tcl | 1 +
574 1 file changed, 1 insertion(+)
575
576+-------------------------------------------------------------------------------
577| Enable tcp-keepalive by default.
578| By antirez, 2016-06-13 12:03:14 +0200
579+--------------------------------------------------------------------------------
580https://github.com/antirez/redis/commit/40cfe13141c7178d22fd43e4ffbecc37686e0b43
581
582
583 redis.conf | 5 +++--
584 1 file changed, 3 insertions(+), 2 deletions(-)
585
586+-------------------------------------------------------------------------------
587| fix some compiler warnings
588| By Pierre Chapuis, 2016-06-05 15:34:43 +0200
589+--------------------------------------------------------------------------------
590https://github.com/antirez/redis/commit/a650aaaf4f074ec428b450ef88799db1dcd34b0f
591
592
593 src/bitops.c | 4 ++--
594 1 file changed, 2 insertions(+), 2 deletions(-)
595
596+-------------------------------------------------------------------------------
597| Fixed typo in Sentinel compareSlavesForPromotion() comment.
598| By antirez, 2016-06-10 09:15:01 +0200
599+--------------------------------------------------------------------------------
600https://github.com/antirez/redis/commit/3fd4baf1e77f125a306d57b788b72de5026c0564
601
602
603 src/sentinel.c | 2 +-
604 1 file changed, 1 insertion(+), 1 deletion(-)
605
606+-------------------------------------------------------------------------------
607| fix comment "b>a" to "a > b"
608| By andyli, 2016-06-07 14:42:50 +0800
609+--------------------------------------------------------------------------------
610https://github.com/antirez/redis/commit/8d029a5950f4ef40723c02b5c486b171aff0189c
611
612
613 src/sentinel.c | 2 +-
614 1 file changed, 1 insertion(+), 1 deletion(-)
615
616+-------------------------------------------------------------------------------
617| fix pidfile in redis.conf
618| By bogdanvlviv, 2016-04-19 14:43:06 +0300
619+--------------------------------------------------------------------------------
620https://github.com/antirez/redis/commit/6937f5960d1803ca0eda1ab6f4bc60023f50c914
621
622
623 redis.conf | 2 +-
624 1 file changed, 1 insertion(+), 1 deletion(-)
625
626+-------------------------------------------------------------------------------
627| Include 'fd_set' type name
628| By jspraul, 2016-06-07 16:46:00 -0400
629+--------------------------------------------------------------------------------
630https://github.com/antirez/redis/commit/b5758cc5ce6c51ff75c86f9216214fe4d5e4c257
631
632Fix an MSYS2-build-breaking error: unknown type name ‘fd_set’
633 src/ae_select.c | 1 +
634 1 file changed, 1 insertion(+)
635
636+-------------------------------------------------------------------------------
637| Allow SPOP from Lua scripts
638| By Itamar Haber, 2016-05-28 20:01:46 +0300
639+--------------------------------------------------------------------------------
640https://github.com/antirez/redis/commit/620783e3b582e9ba6e1d8fbd47987281ce0b6317
641
642The existing `R` flag appears to be sufficient and there's no apparent reason why the command should be blocked.
643 src/server.c | 2 +-
644 1 file changed, 1 insertion(+), 1 deletion(-)
645
646+-------------------------------------------------------------------------------
647| minor fixes - mainly signalModifiedKey, and GEORADIUS
648| By oranagra, 2016-05-09 09:12:38 +0300
649+--------------------------------------------------------------------------------
650https://github.com/antirez/redis/commit/603234076f4e59967f331bc97de3c0db9947c8ef
651
652
653 src/geo.c    |  1 +
654 src/sds.c    |  8 ++++----
655 src/server.c |  2 +-
656 src/server.h |  3 +--
657 src/t_set.c  |  9 ++++++---
658 src/t_zset.c | 12 ++++++------
659 6 files changed, 19 insertions(+), 16 deletions(-)
660
661+-------------------------------------------------------------------------------
662| Code to access object string bytes repeated 3x refactored into 1 function.
663| By antirez, 2016-05-18 15:35:17 +0200
664+--------------------------------------------------------------------------------
665https://github.com/antirez/redis/commit/2e6b99499abb5ff1fbeee3bac4d064e5ff4ea256
666
667
668 src/bitops.c | 74 ++++++++++++++++++++++++++++++++----------------------------
669 1 file changed, 39 insertions(+), 35 deletions(-)
670
671+-------------------------------------------------------------------------------
672| fix crash in BITFIELD GET when key is integer encoded
673| By oranagra, 2016-05-10 11:19:45 +0300
674+--------------------------------------------------------------------------------
675https://github.com/antirez/redis/commit/dcaeafc8280eb8329e7ce68e7ab02c67d98f0cf4
676
677
678 src/bitops.c | 18 +++++++++++++++---
679 1 file changed, 15 insertions(+), 3 deletions(-)
680
681+-------------------------------------------------------------------------------
682| Clarify that the LOG_STR_SIZE includes null term.
683| By antirez, 2016-05-18 15:23:18 +0200
684+--------------------------------------------------------------------------------
685https://github.com/antirez/redis/commit/4ad088818a3353ebd619e8d43847b5d58108af20
686
687
688 src/server.h | 2 +-
689 1 file changed, 1 insertion(+), 1 deletion(-)
690
691+-------------------------------------------------------------------------------
692| Test for BITFIELD regression #3221.
693| By antirez, 2016-05-18 14:53:30 +0200
694+--------------------------------------------------------------------------------
695https://github.com/antirez/redis/commit/f991cdc3e19c187035855355808575efd6b4c149
696
697
698 tests/unit/bitfield.tcl | 5 +++++
699 1 file changed, 5 insertions(+)
700
701+-------------------------------------------------------------------------------
702| reduce struct padding by reordering members
703| By oranagra, 2016-05-16 20:12:11 +0300
704+--------------------------------------------------------------------------------
705https://github.com/antirez/redis/commit/cb3e89e2cb0753d2d111eaeadc9c73cbe24025ab
706
707
708 src/quicklist.h | 2 +-
709 1 file changed, 1 insertion(+), 1 deletion(-)
710
711+-------------------------------------------------------------------------------
712| Actually use --with-lg-quantum=3 to build jemalloc.
713| By antirez, 2016-05-18 11:58:36 +0200
714+--------------------------------------------------------------------------------
715https://github.com/antirez/redis/commit/a7f0fb448c110e125eece44dc955d6939e494daa
716
717This change is documented in deps/README.md but was lost in one way or
718the other, neutralizing the benefits of 24 bytes size classes (and
719others).
720
721Close #3208.
722
723 deps/Makefile | 2 +-
724 1 file changed, 1 insertion(+), 1 deletion(-)
725
726+-------------------------------------------------------------------------------
727| redis-cli: integrate help.h with COMMAND output.
728| By antirez, 2016-05-07 13:03:25 +0200
729+--------------------------------------------------------------------------------
730https://github.com/antirez/redis/commit/029dc0d97fd492a2fd579796d4c1cc04053c7190
731
732Use the COMMAND output to fill with partial information the built-in
733help. This makes redis-cli able to at least complete commands that are
734exported by the Redis server it is connected to, but were not available
735in the help.h file when the redis-cli binary was compiled.
736
737 src/redis-cli.c | 80 +++++++++++++++++++++++++++++++++++++++++++++++++--------
738 1 file changed, 70 insertions(+), 10 deletions(-)
739
740+-------------------------------------------------------------------------------
741| Removed dofile() from Lua
742| By Adam Baldwin, 2012-10-25 20:27:10 -0700
743+--------------------------------------------------------------------------------
744https://github.com/antirez/redis/commit/95def3aee044468504bb07633084afd49b085db3
745
746
747 src/scripting.c | 2 ++
748 1 file changed, 2 insertions(+)
749
750
751================================================================================
752Redis 3.2.0     Released Fri May 06 08:47:10 CEST 2016
753================================================================================
754
755Upgrade urgency HIGH: 3.2-RC users should upgrade ASAP to this more
756                      stable release of Redis.
757
758Hello, this is Redis 3.2.0 stable! And with the new release there is a new
759format for the changelog. Now it is composed of a "letter" like the one
760you are reading, followed by all the commits composing the release for people
761interested in the details.
762
763There are a few changes between the latest release candidate of Redis 3.2
764and the final 3.2.0 release. The main ones are the obvious bug fixes you
765can find detailed below, also a few new things:
766
767Critical bugs fixed:
768
769* There was a problem in the way a cluster instance loaded the AOF that
770  could cause data written via scripts to be lost during reshardings.
771
772New things:
773
774* There is a new very powerful BITFIELD command. Check the documentation
775  here: http://redis.io/commands/BITFIELD
776
777* CONFIG GET is allowed during the loading of the dataset.
778
779* The DEBUG command have new features and can show an help with DEBUG HELP.
780
781* redis-cli show hits about the commands arguments to the right.
782
783* GEORADIUS got a STORE / STOREDIST option to store the result into a target
784  key (as as orted set) instead of reporting it to the user.
785
786* Redis Cluster replicas migration now works in a slightly different way. In
787  the past a slave could migrate only to a master that used to have slaves
788  in the past (and if there was still trace of this information). Now instead
789  if a new slave gets at least a slot, and at least one other master in the
790  cluster has a slave, then the new master is considered a valid target for
791  replica migration. So if it will be orphaned and there is a spare slave
792  it will get one.
793
794* CLUSTER SLOTS output now includes the node ID (in a backward compatible
795  manner).
796
797* A lot of bug fixes you can read in the commits details below, with the
798  authors that kindly provided many useful patches. Thanks.
799
800As usually what "stable" means is that we are confident the release is mature,
801however do your tests before putting it into production in your environemnt
802as it's fresh meat anyway.
803
804Cheers,
805Salvatore
806
807+-------------------------------------------------------------------------------
808| Cluster: don't check scripts key slots during AOF loading.
809| By antirez, 2016-05-05 23:37:08 +0200
810+--------------------------------------------------------------------------------
811https://github.com/antirez/redis/commit/746e1bebb4baf876c1e8cd2fe2d468a1c41e5dc3
812
813
814 src/scripting.c | 6 ++++--
815 1 file changed, 4 insertions(+), 2 deletions(-)
816
817+-------------------------------------------------------------------------------
818| redis-cli: remove debugging message.
819| By antirez, 2016-05-05 18:05:37 +0200
820+--------------------------------------------------------------------------------
821https://github.com/antirez/redis/commit/3907b059280898c6340b53982b3b65957535da7c
822
823
824 src/redis-cli.c | 1 -
825 1 file changed, 1 deletion(-)
826
827+-------------------------------------------------------------------------------
828| Revert "Fix commandCommand arity"
829| By antirez, 2016-05-05 17:35:33 +0200
830+--------------------------------------------------------------------------------
831https://github.com/antirez/redis/commit/f01a2714582a9a916b41e6cb90e42474a104925d
832
833This reverts commit 1189a4eae6d009fc0da8d50fd542ba1391542165.
834
835Actually this is wrong, the command can be called without args at all.
836
837 src/server.c | 2 +-
838 1 file changed, 1 insertion(+), 1 deletion(-)
839
840+-------------------------------------------------------------------------------
841| Fix commandCommand arity
842| By Ruben Bridgewater, 2016-01-04 11:39:45 +0100
843+--------------------------------------------------------------------------------
844https://github.com/antirez/redis/commit/1189a4eae6d009fc0da8d50fd542ba1391542165
845
846
847 src/server.c | 2 +-
848 1 file changed, 1 insertion(+), 1 deletion(-)
849
850+-------------------------------------------------------------------------------
851| Fix a possible race condition of sdown detection if the connection to master/slave/sentinel decames disconnected just after the last PONG and before the next PING.
852| By Daniel Shih, 2016-01-12 17:06:47 +0800
853+--------------------------------------------------------------------------------
854https://github.com/antirez/redis/commit/d9dc0d777b775f2fe4f23f42e1b4130f4de1ed72
855
856
857 src/sentinel.c | 2 ++
858 1 file changed, 2 insertions(+)
859
860+-------------------------------------------------------------------------------
861| Fix nanosecond conversion
862| By Jan-Erik Rediger, 2016-01-13 10:22:29 -0700
863+--------------------------------------------------------------------------------
864https://github.com/antirez/redis/commit/13bd702844eda7bccc7c672b6ff77f53e21ab841
865
8661 microsecond = 1000 nanoseconds
8671e3 = 1000
86810e3 = 10000
869
870 src/redis-cli.c | 2 +-
871 1 file changed, 1 insertion(+), 1 deletion(-)
872
873+-------------------------------------------------------------------------------
874| redis-cli: don't free historyfile, is used later.
875| By antirez, 2016-05-05 13:57:57 +0200
876+--------------------------------------------------------------------------------
877https://github.com/antirez/redis/commit/f6b7df3aec1d8fddf3121c4315fea4bf45cc4cfe
878
879
880 src/redis-cli.c | 2 +-
881 1 file changed, 1 insertion(+), 1 deletion(-)
882
883+-------------------------------------------------------------------------------
884| Cluster test 12: reshard back just a few slots to speedup the test.
885| By antirez, 2016-05-05 11:49:27 +0200
886+--------------------------------------------------------------------------------
887https://github.com/antirez/redis/commit/97ce72fa2d348f914fc40ccf0a32008c7362b817
888
889
890 tests/cluster/tests/12-replica-migration-2.tcl | 14 +++++++-------
891 1 file changed, 7 insertions(+), 7 deletions(-)
892
893+-------------------------------------------------------------------------------
894| Cluster: make getNodeByQuery() responsible of -CLUSTERDOWN errors.
895| By antirez, 2016-05-05 11:33:43 +0200
896+--------------------------------------------------------------------------------
897https://github.com/antirez/redis/commit/708f486c77b455fa7ae1e87cf31278474eb9d432
898
899This fixes a bug introduced by d827dbf, and makes the code consistent
900with the logic of always allowing, while the cluster is down, commands
901that don't target any key.
902
903As a side effect the code is also simpler now.
904
905 src/cluster.c | 13 +++++++++++--
906 src/server.c  | 26 ++++++++++----------------
907 2 files changed, 21 insertions(+), 18 deletions(-)
908
909+-------------------------------------------------------------------------------
910| Fixes a typo
911| By Itamar Haber, 2016-01-28 21:47:18 +0200
912+--------------------------------------------------------------------------------
913https://github.com/antirez/redis/commit/1fc2ed61bec2f2bf266b48e566a197c5214b4350
914
915
916 src/cluster.c | 2 +-
917 1 file changed, 1 insertion(+), 1 deletion(-)
918
919+-------------------------------------------------------------------------------
920| Reverse redirect address parse
921| By David Cavar, 2016-02-09 15:04:42 +0100
922+--------------------------------------------------------------------------------
923https://github.com/antirez/redis/commit/787d5ab9be45bf4feb6cfa8a227c185c93aaadae
924
925Fix issue in case the redirect address is in ipv6 format. Parse from behind to extract last part of the response which represents actual port.
926 src/redis-cli.c | 2 +-
927 1 file changed, 1 insertion(+), 1 deletion(-)
928
929+-------------------------------------------------------------------------------
930| Bind both IPv4 and IPv6 or exit with an error by default.
931| By antirez, 2016-05-05 10:02:42 +0200
932+--------------------------------------------------------------------------------
933https://github.com/antirez/redis/commit/0fda06225f19b18a370d63ac650a8bb61020235d
934
935Thanks to @tushar2708 for the PR. I applied a slightly different fix.
936Thanks to @cespare for reporting.
937
938Close #3024
939Close #3020
940
941 src/server.c | 18 ++++++++++--------
942 1 file changed, 10 insertions(+), 8 deletions(-)
943
944+-------------------------------------------------------------------------------
945| Quick fix to avoid false positive in replica migration test.
946| By antirez, 2016-05-05 09:45:31 +0200
947+--------------------------------------------------------------------------------
948https://github.com/antirez/redis/commit/65707fa6b5bb38b5818af57ab93b9b1da47d708a
949
950
951 tests/cluster/tests/12-replica-migration-2.tcl | 5 ++++-
952 1 file changed, 4 insertions(+), 1 deletion(-)
953
954+-------------------------------------------------------------------------------
955| Ensure slots are rechecked on EXEC.
956| By Chris Thunes, 2016-03-11 15:22:36 -0500
957+--------------------------------------------------------------------------------
958https://github.com/antirez/redis/commit/1f3ed652e2a6cfcbbd5300a31f5771f2ce842e98
959
960Fixes #2515.
961
962 src/server.c | 9 +++++++--
963 1 file changed, 7 insertions(+), 2 deletions(-)
964
965+-------------------------------------------------------------------------------
966| fix for #3187
967| By therealbill, 2016-04-22 10:43:48 -0500
968+--------------------------------------------------------------------------------
969https://github.com/antirez/redis/commit/3a4810678904af013901a896ab0bb3c71856644c
970
971I've renamed maxmemoryToString to evictPolicyToString since that is
972more accurate (and easier to mentally connect with the correct data), as
973well as updated the function to user server.maxmemory_policy rather than
974server.maxmemory. Now with a default config it is actually returning
975the correct policy rather than volatile-lru.
976
977 src/config.c | 4 ++--
978 src/server.c | 2 +-
979 src/server.h | 2 +-
980 3 files changed, 4 insertions(+), 4 deletions(-)
981
982+-------------------------------------------------------------------------------
983| Fixed typo in README.md
984| By Seth Bergman, 2016-04-30 11:58:48 -0500
985+--------------------------------------------------------------------------------
986https://github.com/antirez/redis/commit/bba53d7fc7a759b53d72a7c3be17a00abe32039e
987
988
989 README.md | 2 +-
990 1 file changed, 1 insertion(+), 1 deletion(-)
991
992+-------------------------------------------------------------------------------
993| fix variable
994| By Ryosuke Hasebe, 2016-03-30 23:09:36 +0900
995+--------------------------------------------------------------------------------
996https://github.com/antirez/redis/commit/ab7581489871eebcf0253915acc26efb27f5df23
997
998
999 src/redis-trib.rb | 10 +++++-----
1000 1 file changed, 5 insertions(+), 5 deletions(-)
1001
1002+-------------------------------------------------------------------------------
1003| fix check_open_slots
1004| By Ryosuke Hasebe, 2016-03-30 21:56:22 +0900
1005+--------------------------------------------------------------------------------
1006https://github.com/antirez/redis/commit/0fcf896ac14c6e5c57e3b79e836dd8bf7dad94b5
1007
1008
1009 src/redis-trib.rb | 3 ++-
1010 1 file changed, 2 insertions(+), 1 deletion(-)
1011
1012+-------------------------------------------------------------------------------
1013| Minor redis-cli wording change in --help output.
1014| By antirez, 2016-05-04 22:34:17 +0200
1015+--------------------------------------------------------------------------------
1016https://github.com/antirez/redis/commit/b8a63635e39ce312b2c5664f2c2a59184849b8fb
1017
1018
1019 src/redis-cli.c | 3 ++-
1020 1 file changed, 2 insertions(+), 1 deletion(-)
1021
1022+-------------------------------------------------------------------------------
1023| Allow CONFIG GET during loading.
1024| By antirez, 2016-05-04 15:45:38 +0200
1025+--------------------------------------------------------------------------------
1026https://github.com/antirez/redis/commit/ae95de93312d6bb2c8c365c31f2a3fd0b6d2c100
1027
1028Thanks to @oranagra for the idea of allowing CONFIG GET during loading.
1029
1030 src/config.c | 6 ++++++
1031 src/server.c | 2 +-
1032 2 files changed, 7 insertions(+), 1 deletion(-)
1033
1034+-------------------------------------------------------------------------------
1035| Command "r" flag removed from commands not accessing the key space.
1036| By antirez, 2016-05-04 15:42:14 +0200
1037+--------------------------------------------------------------------------------
1038https://github.com/antirez/redis/commit/3ff8f57ef32e3b1ddd407b65d474f610881bef34
1039
1040Thanks to @oranagra for the hint about misplaced 'r' flags.
1041
1042 src/server.c | 70 ++++++++++++++++++++++++++++++------------------------------
1043 1 file changed, 35 insertions(+), 35 deletions(-)
1044
1045+-------------------------------------------------------------------------------
1046| DEBUG command self documentation.
1047| By antirez, 2016-05-04 12:45:55 +0200
1048+--------------------------------------------------------------------------------
1049https://github.com/antirez/redis/commit/07b852d24ec8d7cb47044b096baf0af1410c69ed
1050
1051
1052 src/debug.c  | 49 ++++++++++++++++++++++++++++++++++++++++++++++++-
1053 src/server.c |  2 +-
1054 2 files changed, 49 insertions(+), 2 deletions(-)
1055
1056+-------------------------------------------------------------------------------
1057| various cleanups and minor fixes
1058| By Oran Agra, 2016-04-25 16:49:57 +0300
1059+--------------------------------------------------------------------------------
1060https://github.com/antirez/redis/commit/cfc08b65b04cf972ebeadf3be9f39f2acd7672b3
1061
1062
1063 src/adlist.c             | 18 ++++++------------
1064 src/ae_epoll.c           |  6 ++----
1065 src/aof.c                |  5 ++++-
1066 src/db.c                 |  2 +-
1067 src/rdb.c                |  6 ++++--
1068 src/rio.c                |  5 +++--
1069 src/rio.h                |  2 ++
1070 src/server.h             |  3 +--
1071 tests/support/test.tcl   |  6 ------
1072 tests/unit/bitops.tcl    |  2 +-
1073 tests/unit/other.tcl     |  1 +
1074 tests/unit/scripting.tcl | 27 ++++++++++++++-------------
1075 12 files changed, 39 insertions(+), 44 deletions(-)
1076
1077+-------------------------------------------------------------------------------
1078| dict.c minor optimization
1079| By Oran Agra, 2016-04-25 16:48:25 +0300
1080+--------------------------------------------------------------------------------
1081https://github.com/antirez/redis/commit/6710c8dc15680b756de26d1d45df110987b951b3
1082
1083
1084 src/dict.c | 8 ++++----
1085 1 file changed, 4 insertions(+), 4 deletions(-)
1086
1087+-------------------------------------------------------------------------------
1088| networking.c minor optimization
1089| By Oran Agra, 2016-04-25 16:48:09 +0300
1090+--------------------------------------------------------------------------------
1091https://github.com/antirez/redis/commit/be5c0869821b16f18104d9ea62ab42bfa0615816
1092
1093
1094 src/networking.c | 11 +++++------
1095 1 file changed, 5 insertions(+), 6 deletions(-)
1096
1097+-------------------------------------------------------------------------------
1098| add DEBUG JEMALLC PURGE and JEMALLOC INFO cleanup
1099| By Oran Agra, 2016-04-25 16:47:42 +0300
1100+--------------------------------------------------------------------------------
1101https://github.com/antirez/redis/commit/3ede6c7a506bcff3c7d2147c8af140dd4102a36e
1102
1103
1104 src/debug.c     | 17 ++++++++++++++++-
1105 src/redis-cli.c |  2 +-
1106 2 files changed, 17 insertions(+), 2 deletions(-)
1107
1108+-------------------------------------------------------------------------------
1109| fix small issues in redis 3.2
1110| By Oran Agra, 2016-04-25 14:19:28 +0300
1111+--------------------------------------------------------------------------------
1112https://github.com/antirez/redis/commit/e2fab184efd01ffa0d510739f4d819a30b1d6787
1113
1114
1115 src/config.c | 2 ++
1116 src/rdb.c    | 2 +-
1117 2 files changed, 3 insertions(+), 1 deletion(-)
1118
1119+-------------------------------------------------------------------------------
1120| additional fix to issue #2948
1121| By Oran Agra, 2016-04-25 14:18:40 +0300
1122+--------------------------------------------------------------------------------
1123https://github.com/antirez/redis/commit/9d57ceec08687545c2a63a2c18c28e2bcaf74664
1124
1125
1126 src/networking.c | 3 +++
1127 1 file changed, 3 insertions(+)
1128
1129+-------------------------------------------------------------------------------
1130| Reply with error on negative geo radius.
1131| By antirez, 2016-05-04 08:59:56 +0200
1132+--------------------------------------------------------------------------------
1133https://github.com/antirez/redis/commit/7ba2cf5f8bea9cd125e773de147e3ea9b19ee2b0
1134
1135Thanks to @tidwall for reporting.
1136Close #3194.
1137
1138 src/geo.c | 5 ++++-
1139 1 file changed, 4 insertions(+), 1 deletion(-)
1140
1141+-------------------------------------------------------------------------------
1142| Cluster regression test for #3043.
1143| By antirez, 2016-05-02 18:36:09 +0200
1144+--------------------------------------------------------------------------------
1145https://github.com/antirez/redis/commit/38cf2bd257d09b360be6adf450d59592a359696d
1146
1147The test works but is very slow so far, since it involves resharding
11481/5 of all the cluster slots from master 0 to the other 4 masters and
1149back into the original master.
1150
1151 tests/cluster/tests/12-replica-migration-2.tcl | 61 ++++++++++++++++++++++++++
1152 1 file changed, 61 insertions(+)
1153
1154+-------------------------------------------------------------------------------
1155| New masters with slots are now targets of migration if others are.
1156| By antirez, 2016-05-02 16:41:56 +0200
1157+--------------------------------------------------------------------------------
1158https://github.com/antirez/redis/commit/7b618823c189c24313effbccda7022d167ea419c
1159
1160This fixes issue #3043.
1161
1162Before this fix, after a complete resharding of a master slots
1163to other nodes, the master remains empty and the slaves migrate away
1164to other masters with non-zero nodes. However the old master now empty,
1165is no longer considered a target for migration, because the system has
1166no way to tell it had slaves in the past.
1167
1168This fix leaves the algorithm used in the past untouched, but adds a
1169new rule. When a new or old master which is empty and without slaves,
1170are assigend with their first slot, if other masters in the cluster have
1171slaves, they are automatically considered to be targets for replicas
1172migration.
1173
1174 src/cluster.c | 36 +++++++++++++++++++++++++++++++++++-
1175 1 file changed, 35 insertions(+), 1 deletion(-)
1176
1177+-------------------------------------------------------------------------------
1178| Test ZINCRBY return value.
1179| By antirez, 2016-05-02 08:57:30 +0200
1180+--------------------------------------------------------------------------------
1181https://github.com/antirez/redis/commit/1101b515c73dcb0ff4a868ba38a91dcebb5b85cc
1182
1183
1184 tests/unit/type/zset.tcl | 6 ++++++
1185 1 file changed, 6 insertions(+)
1186
1187+-------------------------------------------------------------------------------
1188| redis-cli preferences and rc file support.
1189| By antirez, 2016-04-13 13:58:30 +0200
1190+--------------------------------------------------------------------------------
1191https://github.com/antirez/redis/commit/bbf93108ef2a7ac7bd53e26c96bf838f7c5e72df
1192
1193
1194 src/redis-cli.c | 102 ++++++++++++++++++++++++++++++++++++++++++++++----------
1195 1 file changed, 85 insertions(+), 17 deletions(-)
1196
1197+-------------------------------------------------------------------------------
1198| redis-cli hints.
1199| By antirez, 2016-04-13 12:34:14 +0200
1200+--------------------------------------------------------------------------------
1201https://github.com/antirez/redis/commit/3fd3fca0dd38cb21c900e4ba98e3d41f333335aa
1202
1203
1204 deps/linenoise/linenoise.c |  8 +++++++
1205 deps/linenoise/linenoise.h |  2 +-
1206 src/redis-cli.c            | 53 ++++++++++++++++++++++++++++++++++++++++++++++
1207 3 files changed, 62 insertions(+), 1 deletion(-)
1208
1209+-------------------------------------------------------------------------------
1210| Linenoise updated again (hints support).
1211| By antirez, 2016-04-12 23:39:18 +0200
1212+--------------------------------------------------------------------------------
1213https://github.com/antirez/redis/commit/34354473ffe8d60b80acdbc8c16b194f8bbd70a0
1214
1215
1216 deps/linenoise/README.markdown | 176 ++++++++++++++++++++++++++++++++++++++++-
1217 deps/linenoise/example.c       |  10 +++
1218 deps/linenoise/linenoise.c     |  55 ++++++++++++-
1219 deps/linenoise/linenoise.h     |  15 +++-
1220 4 files changed, 248 insertions(+), 8 deletions(-)
1221
1222+-------------------------------------------------------------------------------
1223| Linenoise updated.
1224| By antirez, 2016-04-06 13:37:27 +0200
1225+--------------------------------------------------------------------------------
1226https://github.com/antirez/redis/commit/58229cd766fa02f399267310b5b488aac2c55a6a
1227
1228As a side effect, cat commands.txt | redis-cli now is able to handle
1229lines more than 4096 bytes.
1230
1231 deps/linenoise/linenoise.c | 60 ++++++++++++++++++++++++++++++++++------------
1232 1 file changed, 45 insertions(+), 15 deletions(-)
1233
1234+-------------------------------------------------------------------------------
1235| ae.c: Fix delay until next timer event.
1236| By antirez, 2016-04-04 14:08:16 +0200
1237+--------------------------------------------------------------------------------
1238https://github.com/antirez/redis/commit/29645f1f44926ac2662ed768fe1e369775a30b66
1239
1240This fix was written by Anthony LaTorre.
1241The old code mis-calculated the amount of time to wait till next event.
1242
1243 src/ae.c | 21 ++++++++++++---------
1244 1 file changed, 12 insertions(+), 9 deletions(-)
1245
1246+-------------------------------------------------------------------------------
1247| ae.c: comment to explain why we have a useless maxId check.
1248| By antirez, 2016-04-04 12:23:10 +0200
1249+--------------------------------------------------------------------------------
1250https://github.com/antirez/redis/commit/aa79c1f1c1d288e4cc2c0f4689ad01488678bf9d
1251
1252
1253 src/ae.c | 6 +++++-
1254 1 file changed, 5 insertions(+), 1 deletion(-)
1255
1256+-------------------------------------------------------------------------------
1257| Fix ae.c to avoid timers infinite loop.
1258| By antirez, 2016-01-08 15:05:14 +0100
1259+--------------------------------------------------------------------------------
1260https://github.com/antirez/redis/commit/0b69c9865619b54b75576e67aaafe7b018734bec
1261
1262This fix was suggested by Anthony LaTorre, that provided also a good
1263test case that was used to verify the fix.
1264
1265The problem with the old implementation is that, the time returned by
1266a timer event (that is the time after it want to run again) is added
1267to the event *start time*. So if the event takes, in order to run, more
1268than the time it says it want to be scheduled again for running, an
1269infinite loop is triggered.
1270
1271 src/ae.c          | 51 ++++++++++++++++++++++-----------------------------
1272 src/ae.h          |  3 +++
1273 src/anet.h        |  2 ++
1274 src/redis-trib.rb |  2 +-
1275 4 files changed, 28 insertions(+), 30 deletions(-)
1276
1277+-------------------------------------------------------------------------------
1278| BITFIELD: overflow wrap behavior fuzz tester.
1279| By antirez, 2016-03-02 17:22:42 +0100
1280+--------------------------------------------------------------------------------
1281https://github.com/antirez/redis/commit/258857cd62e0eb70da32742651a55213fbc28a53
1282
1283
1284 tests/unit/bitfield.tcl | 51 +++++++++++++++++++++++++++++++++++++++++++++++++
1285 1 file changed, 51 insertions(+)
1286
1287+-------------------------------------------------------------------------------
1288| BITFIELD basic unit tests.
1289| By antirez, 2016-03-02 16:31:02 +0100
1290+--------------------------------------------------------------------------------
1291https://github.com/antirez/redis/commit/35d05d6dc5d7fb810e732f9de7b05c6b14933fb6
1292
1293
1294 tests/unit/bitfield.tcl | 86 ++++++++++++++++++++++++++++++++++++++++++++++++-
1295 1 file changed, 85 insertions(+), 1 deletion(-)
1296
1297+-------------------------------------------------------------------------------
1298| BITFIELD: Farest bit set is offset+bits-1. Off by one error fixed.
1299| By antirez, 2016-03-02 16:20:28 +0100
1300+--------------------------------------------------------------------------------
1301https://github.com/antirez/redis/commit/6cf83feffad7f7b7693a207a9d63278354769ece
1302
1303
1304 src/bitops.c | 6 ++++--
1305 1 file changed, 4 insertions(+), 2 deletions(-)
1306
1307+-------------------------------------------------------------------------------
1308| BITFIELD: overflow fuzzy testing.
1309| By antirez, 2016-03-02 15:15:18 +0100
1310+--------------------------------------------------------------------------------
1311https://github.com/antirez/redis/commit/b4d65c9501be01531eb8fbeb4ba2b444e35d6494
1312
1313
1314 tests/test_helper.tcl   |  1 +
1315 tests/unit/bitfield.tcl | 52 +++++++++++++++++++++++++++++++++++++++++++++++++
1316 2 files changed, 53 insertions(+)
1317
1318+-------------------------------------------------------------------------------
1319| Fix typo in bitops.tcl comment.
1320| By antirez, 2016-03-02 15:14:53 +0100
1321+--------------------------------------------------------------------------------
1322https://github.com/antirez/redis/commit/d75e0fdbe6ecf3074b18c4dd1e8b71a474254ccc
1323
1324
1325 tests/unit/bitops.tcl | 2 +-
1326 1 file changed, 1 insertion(+), 1 deletion(-)
1327
1328+-------------------------------------------------------------------------------
1329| More BITFIELD fixes. Overflow conditional simplified.
1330| By antirez, 2016-03-02 15:13:45 +0100
1331+--------------------------------------------------------------------------------
1332https://github.com/antirez/redis/commit/5f3ef73ed41be6e051daad9fdb7efa91b4ca682d
1333
1334See issue #3114.
1335
1336 src/bitops.c | 17 ++++++++---------
1337 1 file changed, 8 insertions(+), 9 deletions(-)
1338
1339+-------------------------------------------------------------------------------
1340| bitops/bitfield: fix length, overflow condition and *sign
1341| By Sun He, 2016-03-02 18:11:30 +0800
1342+--------------------------------------------------------------------------------
1343https://github.com/antirez/redis/commit/5b9aa5026204fb6c8b0098d4e47c2e001cf06151
1344
1345
1346 src/bitops.c | 13 ++++++++-----
1347 1 file changed, 8 insertions(+), 5 deletions(-)
1348
1349+-------------------------------------------------------------------------------
1350| Fix INFO commandstats reporting when argv is rewritten.
1351| By antirez, 2016-03-02 08:51:27 +0100
1352+--------------------------------------------------------------------------------
1353https://github.com/antirez/redis/commit/ba9154d7e7bf959b002533384319a1e90545447b
1354
1355We want to report the original command in the stats, for example GEOADD,
1356even when what is actually executed is the ZADD implementation.
1357
1358 src/scripting.c | 2 +-
1359 src/server.c    | 4 ++--
1360 2 files changed, 3 insertions(+), 3 deletions(-)
1361
1362+-------------------------------------------------------------------------------
1363| BITFIELD: refactoring & fix of retval on FAIL.
1364| By antirez, 2016-02-29 09:08:46 +0100
1365+--------------------------------------------------------------------------------
1366https://github.com/antirez/redis/commit/76b22e3728e37fe11582b71802bf98a2be09623f
1367
1368
1369 src/bitops.c | 32 ++++++++++++++++++++++++--------
1370 1 file changed, 24 insertions(+), 8 deletions(-)
1371
1372+-------------------------------------------------------------------------------
1373| BITFIELD: Fix #<index> form parsing.
1374| By antirez, 2016-02-26 15:53:29 +0100
1375+--------------------------------------------------------------------------------
1376https://github.com/antirez/redis/commit/c333a9e2d7873190b22aaee8835a188bc55b60dc
1377
1378
1379 src/bitops.c | 10 ++++------
1380 1 file changed, 4 insertions(+), 6 deletions(-)
1381
1382+-------------------------------------------------------------------------------
1383| BITFIELD: Support #<index> offsets form.
1384| By antirez, 2016-02-26 15:16:24 +0100
1385+--------------------------------------------------------------------------------
1386https://github.com/antirez/redis/commit/f84871cb5dd3bb3c04bfd7ac53b6e06b246f511f
1387
1388
1389 src/bitops.c | 29 +++++++++++++++++++++++------
1390 1 file changed, 23 insertions(+), 6 deletions(-)
1391
1392+-------------------------------------------------------------------------------
1393| BITFIELD command initial implementation.
1394| By antirez, 2016-02-25 23:31:45 +0100
1395+--------------------------------------------------------------------------------
1396https://github.com/antirez/redis/commit/761a77287107ce53dbf4755f1435cc9660b6c86d
1397
1398The new bitfield command is an extension to the Redis bit operations,
1399where not just single bit operations are performed, but the array of
1400bits composing a string, can be addressed at random, not aligned
1401offsets, with any width unsigned and signed integers like u8, s5, u10
1402(up to 64 bit signed integers and 63 bit unsigned integers).
1403
1404The BITFIELD command supports subcommands that can SET, GET, or INCRBY
1405those arbitrary bit counters, with multiple overflow semantics.
1406
1407Trivial and credits:
1408
1409A similar command was imagined a few times in the past, but for
1410some reason looked a bit far fetched or not well specified.
1411Finally the command was proposed again in a clear form by
1412Yoav Steinberg from Redis Labs, that proposed a set of commands on
1413arbitrary sized integers stored at bit offsets.
1414
1415Starting from this proposal I wrote an initial specification of a single
1416command with sub-commands similar to what Yoav envisioned, using short
1417names for types definitions, and adding control on the overflow.
1418
1419This commit is the resulting implementation.
1420
1421Examples:
1422
1423    BITFIELD mykey OVERFLOW wrap INCRBY i2 10 -1 GET i2 10
1424
1425 src/bitops.c | 506 +++++++++++++++++++++++++++++++++++++++++++++++++++++++----
1426 src/server.c |   1 +
1427 src/server.h |   1 +
1428 3 files changed, 476 insertions(+), 32 deletions(-)
1429
1430+-------------------------------------------------------------------------------
1431| Eliminates engineers near the equator & prime meridian
1432| By Itamar Haber, 2016-02-18 15:11:30 -0800
1433+--------------------------------------------------------------------------------
1434https://github.com/antirez/redis/commit/4b89ea3a95ef72353e14e0eb5cbf293bf2dc8b48
1435
1436
1437 src/geo.c | 8 ++++----
1438 1 file changed, 4 insertions(+), 4 deletions(-)
1439
1440+-------------------------------------------------------------------------------
1441| Fixes a typo in a comment
1442| By Itamar Haber, 2016-02-18 15:01:34 -0800
1443+--------------------------------------------------------------------------------
1444https://github.com/antirez/redis/commit/0f46f9bd423a146f96e1993aca6221e1305f9a28
1445
1446
1447 src/geo.c | 2 +-
1448 1 file changed, 1 insertion(+), 1 deletion(-)
1449
1450+-------------------------------------------------------------------------------
1451| Adjusts accuracy for GEODIST
1452| By Itamar Haber, 2016-02-18 15:00:39 -0800
1453+--------------------------------------------------------------------------------
1454https://github.com/antirez/redis/commit/9de844603c5203ae6ff6e7882a3dcb47a9f79a85
1455
1456
1457 src/geo.c | 2 +-
1458 1 file changed, 1 insertion(+), 1 deletion(-)
1459
1460+-------------------------------------------------------------------------------
1461| addReplyHumanLongDouble() API added.
1462| By antirez, 2016-02-18 22:08:47 +0100
1463+--------------------------------------------------------------------------------
1464https://github.com/antirez/redis/commit/79e553a58d7f814fd08482b118561fcf9854b1df
1465
1466Send a long double or double as a bulk reply, in a human friendly
1467format.
1468
1469 src/networking.c | 9 +++++++++
1470 src/server.h     | 1 +
1471 2 files changed, 10 insertions(+)
1472
1473+-------------------------------------------------------------------------------
1474| Fix GEORADIUS STORE/DIST refcount after backport to 3.2.
1475| By antirez, 2016-02-18 15:33:02 +0100
1476+--------------------------------------------------------------------------------
1477https://github.com/antirez/redis/commit/158d1e2fbf6badb881a4d78623fd1bffde34cc49
1478
1479
1480 src/geo.c | 2 ++
1481 1 file changed, 2 insertions(+)
1482
1483+-------------------------------------------------------------------------------
1484| GEOADD STORE/STOREDIST tests.
1485| By antirez, 2016-02-18 14:42:42 +0100
1486+--------------------------------------------------------------------------------
1487https://github.com/antirez/redis/commit/123cd88286127cc20684bf0457cb51107a67cfa2
1488
1489
1490 tests/unit/geo.tcl | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1491 1 file changed, 54 insertions(+)
1492
1493+-------------------------------------------------------------------------------
1494| New options for GEORADIUS: STORE and STOREDIST.
1495| By antirez, 2016-02-18 10:24:11 +0100
1496+--------------------------------------------------------------------------------
1497https://github.com/antirez/redis/commit/0b6daf5a6b27447f03c76387b8b707ce0ab7b08d
1498
1499Related to issue #3019.
1500
1501 src/geo.c    | 143 +++++++++++++++++++++++++++++++++++++++++------------------
1502 src/server.c |   4 +-
1503 src/server.h |   1 +
1504 src/t_zset.c |  18 +++++---
1505 4 files changed, 117 insertions(+), 49 deletions(-)
1506
1507+-------------------------------------------------------------------------------
1508| Include full paths on RDB/AOF files errors.
1509| By antirez, 2016-02-15 16:14:56 +0100
1510+--------------------------------------------------------------------------------
1511https://github.com/antirez/redis/commit/f7af1beaab938b7e319d1b91d7736f043b7ef682
1512
1513Close #3086.
1514
1515 src/aof.c | 17 +++++++++++++++--
1516 src/rdb.c | 19 +++++++++++++++++--
1517 2 files changed, 32 insertions(+), 4 deletions(-)
1518
1519+-------------------------------------------------------------------------------
1520| Remove Lua state reference from buffers in lua_cmsgpack.
1521| By antirez, 2016-02-10 09:12:17 +0100
1522+--------------------------------------------------------------------------------
1523https://github.com/antirez/redis/commit/0b4a628fc716ab6b88c9823b143de174601a790d
1524
1525
1526 deps/lua/src/lua_cmsgpack.c | 53 +++++++++++++++++++++------------------------
1527 1 file changed, 25 insertions(+), 28 deletions(-)
1528
1529+-------------------------------------------------------------------------------
1530| cmsgpack: pass correct osize values to lua allocator, update correct buf free space in cmsgpack
1531| By [email protected], 2016-02-07 20:24:28 +0200
1532+--------------------------------------------------------------------------------
1533https://github.com/antirez/redis/commit/43509f686452fba68966aa89b87d1be065b50e17
1534
1535
1536 deps/lua/src/lua_cmsgpack.c | 8 ++++----
1537 1 file changed, 4 insertions(+), 4 deletions(-)
1538
1539+-------------------------------------------------------------------------------
1540| Fixes a typo
1541| By Itamar Haber, 2016-02-03 11:04:09 -0800
1542+--------------------------------------------------------------------------------
1543https://github.com/antirez/redis/commit/cd9f7c6976f81c0e9ffae9e34b31eda19384a7dd
1544
1545
1546 src/server.c | 4 ++--
1547 1 file changed, 2 insertions(+), 2 deletions(-)
1548
1549+-------------------------------------------------------------------------------
1550| Adds keyspace notifications for lrem
1551| By Itamar Haber, 2016-02-02 09:58:19 -0800
1552+--------------------------------------------------------------------------------
1553https://github.com/antirez/redis/commit/bf30f5a73922e5111d6a39da7351e22357213134
1554
1555
1556 src/t_list.c | 7 ++++++-
1557 1 file changed, 6 insertions(+), 1 deletion(-)
1558
1559+-------------------------------------------------------------------------------
1560| Typo ASII -> ASCII fixed in comment.
1561| By antirez, 2016-01-29 12:08:10 +0100
1562+--------------------------------------------------------------------------------
1563https://github.com/antirez/redis/commit/0c7c7631d206964b8bf1dae3db286a3acda4edad
1564
1565
1566 src/server.h | 2 +-
1567 1 file changed, 1 insertion(+), 1 deletion(-)
1568
1569+-------------------------------------------------------------------------------
1570| Cluster: include node IDs in SLOTS output.
1571| By antirez, 2016-01-29 12:00:38 +0100
1572+--------------------------------------------------------------------------------
1573https://github.com/antirez/redis/commit/0f3fb0097ae70e36ee65468b79f0be4160934bb4
1574
1575CLUSTER SLOTS now includes IDs in the nodes description associated with
1576a given slot range. Certain client libraries implementations need a way
1577to reference a node in an unique way, so they were relying on CLUSTER
1578NODES, that is not a stable API and may change frequently depending on
1579Redis Cluster future requirements.
1580
1581 src/cluster.c | 8 ++++++--
1582 1 file changed, 6 insertions(+), 2 deletions(-)
1583
1584
1585~~~~~~~~~~~~~~~~~~~~~~~~~~ OLD STYLE CHANGELOG ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1586
1587--[ Redis 3.2.0 RC3 (version 3.1.103) ] Release date: 28 jan 2016
1588
1589Upgrade urgency MODERATE: this release fixes a non trivial Sentinel crash.
1590
1591* [FIX] avg_ttl reporting in INFO improved. (Salvatore Sanfilippo)
1592* [FIX] Sentinel: improve handling of known Sentinel instances.
1593        (Salvatore Sanfilippo, thanks to Paweł Kowalczykf or the original
1594         crash report).
1595* [FIX] Redis Cluster address update (via gossip section) processing improved
1596        to avoid initiating inwanted handshakes.
1597
1598--[ Redis 3.2.0 RC2 (version 3.1.102) ] Release date: 25 jan 2016
1599
1600Upgrade urgency MODERATE: this release fixes important Redis Cluster bugs.
1601
1602* [FIX] Many fixes to MIGRATE multiple keys implementation. The command
1603        could handle errors in a faulty way leading to crashes or other
1604        unexpected behaviors. MIGRATE command refactoring.
1605        (The analysis of the faulty conditions was conducted by
1606         Kevin McGehee. The fix was developed by Salvatore Sanfilippo)
1607* [FIX] A Redis Cluster node crash was fixed because of wrong handling of
1608        node->slaveof pointers.
1609        (Reported by JackyWoo, fixed by Salvatore Sanfilippo)
1610* [FIX] Fix redis-trib rebalance when nodes need to be left empty because
1611        the specified weight is zero.
1612        (Reported by Shahar Mor, fixed by Salvatore Sanfilippo)
1613* [FIX] MIGRATE: Never send -ASK redirections for MIGRATE when there are
1614        open slots. Redis-trib and other cluster management utility must
1615        always be free to move keys between nodes about open slots, in order
1616        to reshard, fix the cluster configuration, and so forth.
1617        (Salvatore Sanfilippo)
1618* [FIX] Lua debugger crash when printing too deeply nested objects.
1619        (Reported by Paul Kulchenko, fixed by Salvatore Sanfilippo)
1620* [FIX] Redis-cli implementation of Lua debugging now allows to use the
1621        SCRIPT DEBUG command directly, switching to debugging mode as needed.
1622        (Reported by Paul Kulchenko, fixed by Salvatore Sanfilippo)
1623* [FIX] Redis-trib is now able to fix more errors. A new CLUSTER subcommand
1624        called BUMPEPOCH was introduced in order to support new modes
1625        for the "fix" subcommand. (Salvatore Sanfilippo)
1626* [NEW] Redis proctected mode: this feature improves Redis security and makes
1627        harder to run Redis in a configuration that is unsecure because no
1628        firewalling was used in order to protect Redis from external accesses.
1629        See this Reddit post for more info: https://www.reddit.com/r/redis/comments/3zv85m/new_security_feature_redis_protected_mode/ (Salvatore Sanfilippo)
1630* [NEW] Cluster/Sentinel tests now use OSX leak to perform leak detection
1631        at the end of every unit. (Salvatore Sanfilippo)
1632* [NEW] Detect and show server crashes during Cluster/Sentinel tests.
1633        (Salvatore Sanfilippo)
1634* [NEW] More reliable Cluster/Sentinel test becuase of timing errors and
1635        -LOADING errors. (Salvatore Sanfilippo)
1636
1637--[ Redis 3.2.0 RC1 (version 3.1.101) ] Release date: 23 dec 2015
1638
1639This is the first release candidate of Redis 3.2. The changelog above shows
1640what's new in this release. In the next of the following weeks we'll test
1641in depth every feature and we'll release new RCs as bugs are discovered
1642and fixed. Note that while 3.2 looks solid already, it contains many changes
1643to its internals. It's still fresh code compared to 3.0.
1644
1645General changes:
1646
1647* [NEW] Lua scripts "effect replication". Makes possible to write scripts
1648        with side effects, use of random commands, and so forth.
1649        (Salvatore Sanfilippo)
1650* [NEW] Lua scripts selective replication. Makes possible to replicate to
1651        slaves and AOF only selected parts of a script. (Design by
1652        Yossi Gottlieb and Salvatore Sanfilippo, implemented by Salvatore)
1653* [NEW] Geo indexing support via GEOADD, GEORADIUS and other commands.
1654        See http://redis.io/commands/geoadd for more information.
1655        (Initially implemented in a fork of Redis called "Ardb".
1656         Matt Stancliff "imported back" the work to Redis and created the
1657         initial API and implementation. Salvatore Sanfilippo modified
1658         the API and the implementation, fixed bugs, improved performances
1659         and unified the duplicated code with t_zset.c)
1660* [NEW] Lua debugger. A complete stepping, remote debugger for Lua scripts.
1661        Video here: https://www.youtube.com/watch?v=IMvRfStaoyM
1662        (Salvatore Sanfilippo with many feedbacks and testing from
1663         Itamar Haber)
1664* [NEW] SDS improvements for speed and maximum string length.
1665        This makes Redis more memory efficient in different use cases.
1666        (Design and implementation by Oran Agra, some additional work
1667         by Salvatore Sanfilippo)
1668* [NEW] Modify Jemalloc size classes to make certain Redis objects fit
1669        better, improving memory efficiency. (Oran Agra)
1670* [NEW] Better consistency behavior between masters and slaves for expired
1671        keys. The slaves are only able to logically consider a key expired
1672        even before receiving the `DEL` command from the master. This avoids
1673        the delay there is sometimes between the natural expire of the key
1674        and the moment the slave is notified. (Salvatore Sanfilippo)
1675* [NEW] Support daemon supervision by upstart or systemd (Pierre-Yves Ritschard)
1676* [NEW] New encoding for the List type: Quicklists. Very important memory
1677        savings and storage space in RDB gains (up to 10x sometimes).
1678        (Design and implementation by Matt Stancliff. RDB storage reworked
1679         by Salvatore Sanfilippo)
1680* [NEW] SPOP with optional count argument. (Initial implementation by
1681        Alon Diamant, mostly reimplemented by Salvatore Sanfilippo for speed
1682        and in order to make the replication of a this class of commands,
1683        having as logical effect the execution of multiple commands, possible).
1684* [NEW] Support for RDB AUX fields. Now RDB files contain additional info
1685        like the creation date, version of Redis generating it and so forth.
1686        (Salvatore Sanfilippo)
1687* [NEW] Faster RDB loading via the RESIZEDB opcode to avoid useless hash tables
1688        rehashings. (Salvatore Sanfilippo)
1689* [NEW] HSTRLEN command. (@landmime and Salvatore Sanfilippo)
1690* [NEW] CONFIG SET/GET implementations refactored, partially rewritten,
1691        now exposing more config options. (Salvatore Sanfilippo)
1692* [NEW] CLUSTER NODES major speedup. (Salvatore Sanfilippo)
1693* [NEW] CLIENT KILL TYPE MASTER, to kill (disconnect) masters from slaves.
1694        (Salvatore Sanfilippo)
1695* [NEW] Jemalloc updated to 4.0.3 (Salvatore Sanfilippo)
1696* [NEW] DEBUG RESTART/CRASH-AND-RECOVER [delay] (Salvatore Sanfilippo)
1697* [NEW] CLIENT REPLY command implemented: ON, OFF and SKIP modes.
1698        (Salvatore Sanfilippo)
1699* [NEW] Crash report produced by Redis on crash improved. (Salvatore Sanfilippo)
1700* [NEW] Better memory test on crash. (Salvatore Sanfilippo)
1701
1702Redis Cluster changes:
1703
1704All the Redis Cluster changes in 3.2 were backported to 3.0, so there is
1705technically nothing new for now in this release. The most important things
1706are:
1707
1708* Cluster rebalancing.
1709* A pipelined MIGRATE command which is 10x faster and makes resharding
1710  and rebalancing faster.
1711* Improved replicas migration.
1712* As a side effect of quicklists encoding (see above items), moving big
1713  lists between nodes is now a lot faster.
1714
1715Redis Sentinel changes:
1716
1717* [NEW] Sentinel connection sharing. Makes Sentinels able to scale to
1718        monitor many masters. (Salvatore Sanfilippo)
1719* [NEW] New SENTINEL INFO-CACHE command. (Matt Stancliff)
1720* More things backported to Redis 3.0 in the past, so no longer news of 3.2.
1721
1722Migrating from 3.0 to 3.2
1723=========================
1724
1725Redis 3.0 is mostly a strict subset of 3.2, you should not have any problem
1726upgrading your application from 3.0 to 3.2. However this is a list of small
1727non-backward compatible changes introduced in the 3.2 release:
1728
1729* The default configuration file now binds to 127.0.0.1.
1730* Slaves try to no longer expose stale data about already expired keys.
1731* The RDB format changed. Redis 3.2 is still able to read 3.0 (and all the
1732  past versions) files, but not the other way around.
1733* Behavior on crash may be different. The crash log format changed and
1734  the memory test executed is now different.
1735
1736--------------------------------------------------------------------------------
1737
1738Credits: For each release, a list of changes with the relative author is
1739provided. Where not specified the implementation and design is done by
1740Salvatore Sanfilippo. Thanks to Redis Labs for making all this possible.
1741Also many thanks to all the other contributors and the amazing community
1742we have.
1743
1744Commit messages may contain additional credits.
1745
1746Cheers,
1747Salvatore
1748