summaryrefslogtreecommitdiff
path: root/00-RELEASENOTES
blob: 74f51279554767b39eaeab9350e08b6b1f6e74f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
Redis 4.0 release notes
=======================

--------------------------------------------------------------------------------
Upgrade urgency levels:

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

================================================================================
Redis 4.0.0-RC2     Released Tue Dec 06 09:25:35 CET 2016
================================================================================

Upgrade urgency LOW: This release mainly fixes a rare GEO API bug and a crash
                     related to the modules subsystem.

Redis 4.0.0-RC2 (version number 3.9.102) just fixes two bugs:

1. GEORADIUS could fail reporting items with very big radius lengths because
   of a bug in the bounding box computation function. This was fixed and tests
   with large radius sizes were added.

2. There was a crash in the modules subsystem that was not merged into RC1 for
   an error, while it was already fixed into the "unstable" branch.

The list of commits follows:

wangshaonan in commit 77241e8:
 Add '\n' to MEMORY DOCTOR command output message when num_reports is 0 or empty is 1
 1 file changed, 2 insertions(+), 2 deletions(-)

Chris Lamb in commit 0ee6a23:
 src/rdb.c: Correct "whenver" -> "whenever" typo.
 1 file changed, 1 insertion(+), 1 deletion(-)

Yossi Gottlieb in commit 2d0d2c8:
 Fix typo in RedisModuleTypeMethods declaration.
 1 file changed, 1 insertion(+), 1 deletion(-)

Dvir Volk in commit 0fb9f34:
 fix memory corruption on RM_FreeCallReply
 1 file changed, 3 insertions(+), 1 deletion(-)

antirez in commit 41994f2:
 Geo: improve fuzz test.
 1 file changed, 11 insertions(+), 3 deletions(-)

antirez in commit ef9b4cf:
 Geo: fix computation of bounding box.
 2 files changed, 33 insertions(+), 44 deletions(-)

================================================================================
Redis 4.0.0-RC1   Released Fri Dec 2 10:40:01 CEST 2016
================================================================================

Redis 4.0.0-RC1 (version number 3.9.101) is the first release candidate of
Redis 4.0. It is not a production quality release but all the major features
received some testing at this point, the release in feature freeze excluding
things that are considered in the middle ground between fixes and improvements.

Redis 4.0 is not called 3.4 because it is a major release that adds a number
of important and non trivial features. Many core functionalities of Redis were
seriously reworked. In the next release candidates, with your help, we'll gain
informations about the stability level of this release and will produce a new
RC every 2-4 weeks. When the entity and frequency of bug reports will slow down
under a certain level, Redis 4.0 final will be released.

As usually, certain changes to Cluster and Sentinel may not follow the Redis
release cycle and could be incorporated into Redis 4.0 at RC stage or even
after the final version, every time the changes are considered to benefit
the user base enough to be worth incorporating them ASAP without waiting
for Redis 4.2.

So, what's new in Redis 4.0?

Major features
---

* Redis modules system. Redis now allows developers to write modules that can extend the Redis functionalities and implement new data types. The module API implements a complete abstraction layer that separates the Redis core from the module implementation, allowing the same module to be loaded by different versions of Redis without modifications. See the modules documentation here for more info: https://github.com/antirez/redis/blob/unstable/src/modules/INTRO.md

* Partial Replication (PSYNC) version 2. The replication protocol was enhanced (in a backward compatible way, so that 4.0 can still act as a slave of older instances) in order to be able to partially resynchronize slaves and masters in conditions where it was impossible in the past: after a master switch because of a failover and when a slave instance is restared. Even masters turned into slaves will usually be able to partially resynchronize with the new master, if the new master was a former slave of the old master instance. The way the replication work for chained slaves (sub-slaves) is now very different, and each slave receives the same replication stream generated by the top-level master.

* Cache eviction improvements. Redis 4.0 implements LFU (Least Frequently Used) as a new eviction algorithm, and improves the functionality, performances and precision of the existing algorithms. This blog post contains info about the changes: http://antirez.com/news/109

* Lazy freeing of keys. Redis is now able to delete keys in the background in a different thread without blocking the server. The new `UNLINK` command is the same as `DEL` but working in a non blocking way. Similarly an `ASYNC` option was added to `FLUSHALL` and `FLUSHDB` in order to let the entire dataset or a single database to be freed asynchronously.

* Mixed RDB-AOF format. If enabled the new format is used when rewriting the AOF file: the rewrite uses the more compact and faster to generate RDB format, and an AOF stream is appended to the file. This allows faster rewrites and reloads when using the AOF persistence.

* A new MEMORY command, able to perform memory analysis of different kinds: troubleshooting of memory issues (with MEMORY DOCTOR, similar to LATENCY DOCTOR), reporting of the amount of memory used by a single key, more in-depth reporting of Redis memory usage compared to what the INFO command offers.

* Redis Cluster support for NAT / Docker. There are new functionalities in order to force cluster instances to announce specific sets of IP address, client and bus ports, to the rest of the cluster, regardless of the auto detected IP. This required a bus protocol change that will force users to mass-restart all the nodes of a Redis 3.2 installation in order to upgrade to 4.0.

* Redis uses now less memory in order to store the same amount of data. The gain depends a lot on the kind of dataset stored.

Smaller features
---

* Improvements to the RDB format to support 64 bit lengths, binary sorted set scores, and more. The RDB file check utility now uses the same code base of the one used by Redis itself in order to load the RDB file in memory.

* SWAPDB command: ability to completely and immediately (no latency) replace two Redis databases.

* Improvements to `dict.c`, the Redis hash table implementation.

* Security improvements mapping POST and Host: commands to QUIT in order to prevent cross protocol scripting attacks.

* RPUSHX and LPUSHX now accept a variable number of elements.

* Reporting of additional memory used by copy on write in the INFO output.

* Serious refactoring of many core parts of Redis.

List of commits
---

antirez in commit 434e6b2:
 PSYNC2: Do not accept WAIT in slave instances.
 1 file changed, 5 insertions(+)

antirez in commit 71e8d15:
 Modules: change type registration API to use a struct of methods.
 4 files changed, 65 insertions(+), 10 deletions(-)

antirez in commit ce1f9cf:
 PSYNC2 test: check ability to resync after restart.
 1 file changed, 35 insertions(+), 1 deletion(-)

antirez in commit 93c5198:
 PSYNC2 test: 20 seconds are enough...
 1 file changed, 5 insertions(+), 1 deletion(-)

antirez in commit f6e42f0:
 PSYNC2 test: test added to the default tests.
 1 file changed, 1 insertion(+)

antirez in commit 6eb720f:
 PSYNC2: Minor memory leak reading -NOMASTERLINK master reply fixed.
 1 file changed, 1 insertion(+)

antirez in commit c8f0690:
 PSYNC2 test: modify the test for production.
 1 file changed, 33 insertions(+), 17 deletions(-)

antirez in commit eab865a:
 PSYNC2: stop sending newlines to sub-slaves when master is down.
 3 files changed, 6 insertions(+), 30 deletions(-)

antirez in commit 16559a0:
 PSYNC2: Test (WIP).
 1 file changed, 127 insertions(+)

antirez in commit 790310d:
 Better protocol errors logging.
 1 file changed, 29 insertions(+), 10 deletions(-)

antirez in commit e09e31b:
 PSYNC2: on transient error jump to error, not write_error.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 1f55170:
 Modules: fix client blocking calls access to invalid struct field.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 5b7d42f:
 PSYNC2: bugfixing pre release.
 2 files changed, 39 insertions(+), 11 deletions(-)

antirez in commit 73dd51c:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
antirez in commit f115461:
 Test: WAIT tests added in wait.tcl unit.
 2 files changed, 43 insertions(+)

Salvatore Sanfilippo in commit 5b83fa4:
 Merge pull request #3612 from deep011/unstable
antirez in commit 8fb3ad2:
 Merge branch 'psync2' into unstable
antirez in commit 59f2e7c:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
antirez in commit cfdb3a2:
 Cluster: handle zero bytes at the end of nodes.conf.
 1 file changed, 1 insertion(+), 1 deletion(-)

deep011 in commit 13a92a5:
 fix a possible bug for 'replconf getack'
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 28c96d7:
 PSYNC2: Save replication ID/offset on RDB file.
 4 files changed, 29 insertions(+), 3 deletions(-)

antirez in commit 4e5e366:
 PSYNC2: Wrap debugging code with if(0)
 1 file changed, 3 insertions(+), 1 deletion(-)

antirez in commit 2669fb8:
 PSYNC2: different improvements to Redis replication.
 10 files changed, 440 insertions(+), 143 deletions(-)

Salvatore Sanfilippo in commit b399288:
 Merge pull request #3568 from MichaelTSS/patch-1
antirez in commit 18d32c7:
 redis-cli typo fixed: perferences -> preferences.
 1 file changed, 2 insertions(+), 2 deletions(-)

Salvatore Sanfilippo in commit fa2dc4b:
 Merge pull request #3514 from charsyam/feature/simple-refactoring
Salvatore Sanfilippo in commit 25811bc:
 Merge pull request #3547 from yyoshiki41/refactor/redis-trib
Salvatore Sanfilippo in commit b3e7073:
 Merge pull request #3575 from deep011/unstable
Salvatore Sanfilippo in commit c17fc39:
 Merge pull request #3581 from dvirsky/fix_io_ctx_sizeof
Dvir Volk in commit ec8fd6e:
 fixed sizeof in allocating io RedisModuleCtx*
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 9749e96:
 Test: regression test for #3564 added.
 1 file changed, 9 insertions(+)

Salvatore Sanfilippo in commit 77b1abf:
 Merge pull request #3565 from sunheehnus/bitfield-fix-highest_write_offset
Salvatore Sanfilippo in commit f48ca55:
 Merge pull request #3573 from jybaek/module-io-context
Salvatore Sanfilippo in commit fbfa0a1:
 Merge pull request #3579 from guybe7/unstable
Guy Benoish in commit 8b070b5:
 Fixed wrong sizeof(client) in object.c
 1 file changed, 7 insertions(+), 7 deletions(-)

deep in commit 7f1bb22:
 fix a bug for quicklistDup() function
 1 file changed, 3 insertions(+), 3 deletions(-)

jybaek in commit a06d59b:
 Add missing fclose()
 1 file changed, 1 insertion(+)

Michel Tresseras in commit 20feafd:
 Typo
 1 file changed, 1 insertion(+), 1 deletion(-)

sunhe in commit 949a274:
 bitops.c/bitfieldCommand: update higest_write_offset with check
 1 file changed, 3 insertions(+), 2 deletions(-)

antirez in commit f39e7d4:
 Remove "Hey!" warning...
 1 file changed, 1 deletion(-)

antirez in commit a9f50a3:
 Better target MacOS on __atomic macros conditional compilation.
 1 file changed, 2 insertions(+), 1 deletion(-)

Salvatore Sanfilippo in commit ea95262:
 Merge pull request #3560 from melo/fix-macos-10-8-compile
Pedro Melo in commit 2000abc:
 Fixes compilation on MacOS 10.8.5, Clang tags/Apple/clang-421.0.57
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit f633212:
 Fix SELECT test, broken cause change in error msg.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit c7a4e69:
 SWAPDB command.
 3 files changed, 88 insertions(+), 1 deletion(-)

antirez in commit a3b3ca7:
 Modules: use RedisModule_AbortBlock() in the example.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 95c17c0:
 Modules: AbortBlock() API implemented.
 3 files changed, 12 insertions(+), 1 deletion(-)

antirez in commit 58601c8:
 Modules: blocking API documented.
 1 file changed, 265 insertions(+)

antirez in commit 553aa0e:
 module.c: trim comment to 80 cols.
 1 file changed, 4 insertions(+), 4 deletions(-)

antirez in commit 870274b:
 Example modules: remove warnings about types and not used args.
 2 files changed, 13 insertions(+), 2 deletions(-)

yyoshiki41 in commit 16f6506:
 Refactor redis-trib.rb
 1 file changed, 1 insertion(+), 2 deletions(-)

antirez in commit 7dde8bf:
 Modules: blocking command example added.
 1 file changed, 115 insertions(+)

antirez in commit 3459969:
 Modules: fixes to the blocking commands API: examples now works.
 1 file changed, 10 insertions(+), 2 deletions(-)

antirez in commit f156038:
 Modules: RM_Milliseconds() API added.
 2 files changed, 8 insertions(+)

antirez in commit ffb00fb:
 Modules: blocking commands WIP: API exported, a first example.
 3 files changed, 38 insertions(+), 3 deletions(-)

antirez in commit 3aa816e:
 Modules: introduce warning suppression macro for unused args.
 3 files changed, 22 insertions(+)

antirez in commit 3879923:
 Enable warning in example modules Makefile.
 1 file changed, 2 insertions(+), 2 deletions(-)

antirez in commit 8fadfe5:
 Module: API to block clients with threading support.
 4 files changed, 185 insertions(+), 11 deletions(-)

antirez in commit a5998d1:
 Fix typos in GetContextFromIO API declaration.
 1 file changed, 2 insertions(+), 3 deletions(-)

antirez in commit 799208d:
 Fix name of mispelled function.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 152c1b6:
 Module: Ability to get context from IO context.
 5 files changed, 30 insertions(+)

antirez in commit 72279e3:
 Copyright notice added to module.c.
 2 files changed, 30 insertions(+), 1 deletion(-)

antirez in commit 3dc84c5:
 Modules: API to save/load single precision floating point numbers.
 4 files changed, 48 insertions(+), 2 deletions(-)

antirez in commit a1b1fd4:
 Modules: API to log from module I/O callbacks.
 2 files changed, 40 insertions(+), 16 deletions(-)

antirez in commit 4674efd:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
antirez in commit 0d9febf:
 Add compiler optimizations to example module makefile.
 1 file changed, 2 insertions(+), 2 deletions(-)

antirez in commit 6782e77:
 debug.c: include dlfcn.h regardless of BACKTRACE support.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 2564031:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
antirez in commit 6d9f8e2:
 Security: CONFIG SET client-output-buffer-limit overflow fixed.
 1 file changed, 5 insertions(+), 3 deletions(-)

charsyam in commit ca6fc4f:
 Simple change just using slaves instead of server.slaves
 1 file changed, 1 insertion(+), 1 deletion(-)

Salvatore Sanfilippo in commit 6e866ee:
 Merge pull request #3511 from dvirsky/create_string_printf
Dvir Volk in commit a91650f:
 added RM_CreateStringPrintf
 4 files changed, 52 insertions(+), 3 deletions(-)

antirez in commit 6705867:
 dict.c: fix dictGenericDelete() return ASAP condition.
 1 file changed, 2 insertions(+), 1 deletion(-)

antirez in commit e9d861e:
 Clear child data when opening the pipes.
 1 file changed, 2 insertions(+)

antirez in commit e565632:
 Child -> Parent pipe for COW info transferring.
 6 files changed, 132 insertions(+), 3 deletions(-)

antirez in commit e1eccf9:
 zmalloc: Make fp var non local to fix build.
 1 file changed, 3 insertions(+), 2 deletions(-)

antirez in commit 945a2f9:
 zmalloc: zmalloc_get_smap_bytes_by_field() modified to work for any PID.
 5 files changed, 24 insertions(+), 12 deletions(-)

antirez in commit b13759e:
 redis-cli: "allocator-stats" -> "malloc-stats".
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 4263b12:
 Typo fixed from MEMORY DOCTOR output.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 8a00ffc:
 Surround allocator name with quotes in MEMORY DOCTOR output.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 44e714a:
 MEMORY DOCTOR initial implementation.
 4 files changed, 104 insertions(+), 8 deletions(-)

antirez in commit d9325ac:
 Provide percentage of memory peak used info.
 3 files changed, 13 insertions(+), 1 deletion(-)

oranagra in commit 309c2bc:
 add zmalloc used mem to DEBUG SDSLEN
 2 files changed, 7 insertions(+), 3 deletions(-)

antirez in commit 78f35f8:
 Memory related subcommands of DEBUG moved to MEMORY.
 3 files changed, 43 insertions(+), 41 deletions(-)

antirez in commit 123891d:
 Group MEMORY command related APIs together in the source code.
 1 file changed, 53 insertions(+), 53 deletions(-)

antirez in commit adcfb77:
 objectComputeSize(): skiplist nodes have different sizes.
 1 file changed, 6 insertions(+), 6 deletions(-)

antirez in commit e9629e1:
 MEMORY command: HELP + dataset percentage (like in INFO).
 3 files changed, 20 insertions(+), 8 deletions(-)

antirez in commit 5443726:
 MEMORY USAGE: SAMPLES option added + fixes to size computation.
 1 file changed, 27 insertions(+), 18 deletions(-)

antirez in commit 7229af3:
 INFO: new memory reporting fields added.
 1 file changed, 15 insertions(+), 1 deletion(-)

antirez in commit bf2624e:
 C struct memoh renamed redisMemOverhead. API prototypes added.
 2 files changed, 28 insertions(+), 26 deletions(-)

antirez in commit be5439b:
 MEMORY OVERHEAD refactored into a generic API.
 1 file changed, 130 insertions(+), 73 deletions(-)

antirez in commit 09a50d3:
 dict.c: dictReplaceRaw() -> dictAddOrFind().
 3 files changed, 4 insertions(+), 4 deletions(-)

antirez in commit 041ab04:
 Trim comment to 80 cols.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit a636aea:
 Apply the new dictUnlink() where possible.
 3 files changed, 9 insertions(+), 8 deletions(-)

oranagra in commit afcbcc0:
 dict.c: introduce dictUnlink().
 3 files changed, 45 insertions(+), 11 deletions(-)

antirez in commit 8c84c96:
 MEMORY OVERHEAD implemented (using Oran Agra initial implementation).
 3 files changed, 104 insertions(+), 2 deletions(-)

antirez in commit 89dec69:
 objectComputeSize(): estimate collections sampling N elements.
 3 files changed, 51 insertions(+), 31 deletions(-)

oranagra in commit 8c24325:
 Adding objectComputeSize() function.
 1 file changed, 113 insertions(+)

oranagra in commit 68bf45f:
 Optimize repeated keyname hashing.
 5 files changed, 56 insertions(+), 59 deletions(-)

Salvatore Sanfilippo in commit d680eb6:
 Merge pull request #3492 from wyxustcsa09/fix-memory
antirez in commit c6dc8d5:
 Merge branch 'unstable' of github.com:antirez/redis into unstable
antirez in commit 56dba3a:
 Example modules: Add C99 standard to cflags.
 1 file changed, 2 insertions(+), 2 deletions(-)

antirez in commit 3793afa:
 Merge branch 'aofrdb' into unstable
antirez in commit f962481:
 fix the fix for the TCP binding.
 1 file changed, 15 insertions(+), 10 deletions(-)

oranagra in commit 9203828:
 fix tcp binding when IPv6 is unsupported
 2 files changed, 14 insertions(+), 10 deletions(-)

antirez in commit d35deb2:
 debug.c: no need to define _GNU_SOURCE, is defined in fmacros.h.
 1 file changed, 1 deletion(-)

antirez in commit 6211e77:
 crash log - improve code dump with more info and called symbols.
 1 file changed, 59 insertions(+), 20 deletions(-)

wyx in commit f9c9b4b:
 fix memory error on module unload
 1 file changed, 1 insertion(+), 1 deletion(-)

oranagra in commit 24811fc:
 crash log - add hex dump of function code
 1 file changed, 22 insertions(+)

antirez in commit 0d179d1:
 dict.c benchmark minor improvements.
 1 file changed, 19 insertions(+), 1 deletion(-)

antirez in commit bd6c4ca:
 dict.c benchmark: mixed del/insert benchmark.
 1 file changed, 11 insertions(+)

antirez in commit 0f708ab:
 dict.c benchmark: finish rehashing before testing lookups.
 1 file changed, 5 insertions(+)

antirez in commit ed6a451:
 dict.c benchmark improvements.
 1 file changed, 27 insertions(+), 4 deletions(-)

antirez in commit 1074f73:
 dict.c benchmark: take optional count argument.
 1 file changed, 11 insertions(+), 3 deletions(-)

antirez in commit 91a59e0:
 dict.c benchmark.
 2 files changed, 60 insertions(+), 1 deletion(-)

antirez in commit 57a0db9:
 Fix rdb.c var types when calling rdbLoadLen().
 1 file changed, 3 insertions(+), 3 deletions(-)

antirez in commit 9f76d82:
 sds: don't check for impossible string size in 32 bit systems.
 1 file changed, 3 insertions(+)

antirez in commit dacb69e:
 RDB AOF preamble: test it in the aofrw unit.
 1 file changed, 52 insertions(+), 49 deletions(-)

antirez in commit 764cc69:
 Document RDB preamble in AOF rewrites in redis.conf.
 1 file changed, 14 insertions(+)

antirez in commit e0d4146:
 Sentinel example config: warn about protected mode.
 1 file changed, 16 insertions(+), 1 deletion(-)

antirez in commit 543e25e:
 RDB AOF preamble: WIP 4 (Mixed RDB/AOF loading).
 2 files changed, 33 insertions(+), 6 deletions(-)

antirez in commit f1c32f0:
 RDB AOF preamble: WIP 3 (RDB loading refactoring).
 1 file changed, 38 insertions(+), 29 deletions(-)

antirez in commit feda523:
 RDB AOF preamble: WIP 2.
 5 files changed, 37 insertions(+), 28 deletions(-)

antirez in commit 4426cb1:
 RDB AOF preamble: WIP 1.
 4 files changed, 72 insertions(+), 35 deletions(-)

Salvatore Sanfilippo in commit 9f779b3:
 Merge pull request #3340 from rojingeorge/unstable
Salvatore Sanfilippo in commit c5414ce:
 Merge pull request #3429 from guoxiao/warning
Guo Xiao in commit 4bd72ab:
 Use the standard predefined identifier __func__ (since C99)
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit e7f1798:
 Modules: basic call/reply tests in test module.
 1 file changed, 71 insertions(+)

antirez in commit 13f18d2:
 Modules: handle NULL replies more gracefully.
 1 file changed, 6 insertions(+)

antirez in commit a81a92c:
 Security: Cross Protocol Scripting protection.
 3 files changed, 27 insertions(+), 2 deletions(-)

antirez in commit ede6e22:
 Fix comment over 80 cols.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 04340e1:
 Modules: initial draft for a testing module.
 3 files changed, 235 insertions(+), 93 deletions(-)

antirez in commit 7829e4e:
 Modules: StringAppendBuffer() and ability to retain strings.
 3 files changed, 91 insertions(+), 5 deletions(-)

Qu Chen in commit d982f44:
 Fix a bug to delay bgsave while AOF rewrite in progress for replication
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 9424fe4:
 Remove extra "-" from ASCII horizontal bar in comment.
 2 files changed, 2 insertions(+), 2 deletions(-)

antirez in commit 9d52411:
 Update linenoise to fix insecure redis-cli history file creation.
 1 file changed, 6 insertions(+), 1 deletion(-)

antirez in commit 8966d4c:
 Changelog format modified to be less verbose.
 1 file changed, 5 insertions(+), 1 deletion(-)

antirez in commit 55385f9:
 Ability of slave to announce arbitrary ip/port to master.
 6 files changed, 129 insertions(+), 17 deletions(-)

antirez in commit 356a630:
 Multiple GEORADIUS bugs fixed.
 6 files changed, 199 insertions(+), 21 deletions(-)

antirez in commit 03f5b50:
 Replication: when possible start RDB saving ASAP.
 1 file changed, 8 insertions(+), 2 deletions(-)

antirez in commit 8b76d55:
 Sentinel: new test unit 07 that tests master down conditions.
 1 file changed, 68 insertions(+)

antirez in commit 3e9ce38:
 Sentinel: check Slave INFO state more often when disconnected.
 2 files changed, 10 insertions(+), 3 deletions(-)

antirez in commit 0a628e5:
 Avoid simultaneous RDB and AOF child process.
 4 files changed, 51 insertions(+), 8 deletions(-)

antirez in commit 780a8b1:
 Replication: start BGSAVE for replication always in replicationCron().
 1 file changed, 15 insertions(+), 12 deletions(-)

antirez in commit e0582b3:
 Fix maxmemory shared integer check bug introduced with LFU.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 2d5eb1f:
 Volatile-ttl eviction policy implemented in terms of the pool.
 2 files changed, 25 insertions(+), 48 deletions(-)

antirez in commit 9f1b7ab:
 test-lru.rb: support for testing volatile-ttl policy.
 1 file changed, 49 insertions(+), 14 deletions(-)

antirez in commit 6854c7b:
 LFU: make counter log factor and decay time configurable.
 5 files changed, 95 insertions(+), 14 deletions(-)

antirez in commit 6416ab1:
 LFU: Use the LRU pool for the LFU algorithm.
 1 file changed, 25 insertions(+), 36 deletions(-)

antirez in commit dbce190:
 LFU: Fix bugs in frequency decay code.
 1 file changed, 2 insertions(+), 2 deletions(-)

antirez in commit a8e2d08:
 LFU: Initial naive eviction cycle.
 3 files changed, 49 insertions(+), 4 deletions(-)

antirez in commit 24dd4a8:
 redis-cli LRU test mode: randomize value of key when setting.
 1 file changed, 4 insertions(+), 1 deletion(-)

antirez in commit b8450d7:
 redis-cli LRU test mode: remove newline from key names.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 5d07984:
 LFU: Redis object level implementation.
 5 files changed, 142 insertions(+), 15 deletions(-)

antirez in commit ada70c7:
 LFU simulator: remove dead code.
 1 file changed, 5 deletions(-)

antirez in commit fc92c66:
 LRU simulator: fix new entry creation decr time.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit f50dc38:
 LRU simulator: fix new entry creation.
 1 file changed, 2 insertions(+), 2 deletions(-)

antirez in commit 09fcb00:
 LFU: Simulation of the algorithm planned for Redis.
 1 file changed, 163 insertions(+)

antirez in commit e423f76:
 LRU: Make cross-database choices for eviction.
 3 files changed, 161 insertions(+), 110 deletions(-)

antirez in commit e64bf05:
 LRU: cache SDS strings in the eviction pool.
 1 file changed, 29 insertions(+), 13 deletions(-)

antirez in commit 965905c:
 Move the struct evictionPoolEntry() into only file using it.
 2 files changed, 22 insertions(+), 12 deletions(-)

antirez in commit d8e92a8:
 Move prototype of evictionPoolAlloc() in server.h.
 2 files changed, 3 insertions(+), 2 deletions(-)

antirez in commit 3b9495d:
 LRU: use C99 variable len stack array in evictionPoolPopulate().
 1 file changed, 1 insertion(+), 11 deletions(-)

antirez in commit 2a12473:
 redis-benchmark: new option to show server errors on stdout.
 1 file changed, 17 insertions(+), 1 deletion(-)

antirez in commit 382991f:
 Remove useless memmove() from freeMemoryIfNeeded().
 1 file changed, 2 insertions(+), 7 deletions(-)

antirez in commit b19b2df:
 LRU: Fix output fixes to new test-lru.rb.
 1 file changed, 6 insertions(+), 6 deletions(-)

antirez in commit 6a1c00c:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
antirez in commit 32a5494:
 LRU: test-lru.rb improved in different ways.
 2 files changed, 180 insertions(+), 98 deletions(-)

antirez in commit 51c1d40:
 redis_check_rdb(): the rio structure must be global.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit eee878c:
 redis_check_rdb_main(): create shared objects only if needed.
 1 file changed, 5 insertions(+), 1 deletion(-)

antirez in commit 24882e3:
 Fix redis_check_rdb() return value.
 1 file changed, 3 insertions(+), 2 deletions(-)

antirez in commit 1e6bb9e:
 Remove dead code from geohash_helper.c.
 1 file changed, 6 deletions(-)

antirez in commit 3961071:
 Fix signess issue in geohashEstimateStepsByRadius().
 1 file changed, 2 insertions(+), 1 deletion(-)

antirez in commit 504ccad:
 Fix definition of M_PI in geohash_helper.c.
 2 files changed, 2 insertions(+), 1 deletion(-)

antirez in commit eaa713e:
 geohash.c and geohash_helper.c are part of Redis.
 11 files changed, 686 insertions(+), 717 deletions(-)

antirez in commit 4a140d3:
 Add expire.c and evict.c.
 2 files changed, 718 insertions(+)

antirez in commit b46239e:
 Expire and LRU related code moved into different files.
 5 files changed, 4 insertions(+), 633 deletions(-)

antirez in commit 0610683:
 Makefile: don't build dependencies file for clean, distclean.
 1 file changed, 3 insertions(+)

antirez in commit 1036182:
 Generate Makefile.dep at every build.
 3 files changed, 6 insertions(+), 194 deletions(-)

antirez in commit abb3385:
 Regression test for issue #3333.
 1 file changed, 6 insertions(+)

antirez in commit 2379182:
 getLongLongFromObject: use string2ll() instead of strict_strtoll().
 1 file changed, 1 insertion(+), 15 deletions(-)

antirez in commit ef6a4df:
 redis-cli: check SELECT reply type just in state updated.
 1 file changed, 1 insertion(+), 1 deletion(-)

Salvatore Sanfilippo in commit 0df2865:
 Merge pull request #3365 from sskorgal/unstable
antirez in commit c383be3:
 Sentinel: fix cross-master Sentinel address update.
 1 file changed, 9 insertions(+), 2 deletions(-)

antirez in commit b2cc8bc:
 CONFIG GET is now no longer case sensitive.
 1 file changed, 12 insertions(+), 12 deletions(-)

antirez in commit a0dd014:
 Fix test for new RDB checksum failure message.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit b99ad1b:
 Make tcp-keepalive default to 300 in internal conf.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 7e220a9:
 In Redis RDB check: more details in error reportings.
 1 file changed, 21 insertions(+), 13 deletions(-)

antirez in commit e697153:
 In Redis RDB check: log decompression errors.
 2 files changed, 23 insertions(+), 2 deletions(-)

antirez in commit df3c69e:
 In Redis RDB check: log object type on error.
 1 file changed, 27 insertions(+), 2 deletions(-)

antirez in commit c0f4d19:
 Added a trivial program to randomly corrupt RDB files in /utils.
 1 file changed, 44 insertions(+)

antirez in commit 2ab7097:
 In Redis RDB check: minor output message changes.
 1 file changed, 4 insertions(+), 1 deletion(-)

antirez in commit e9f31ba:
 In Redis RDB check: better error reporting.
 4 files changed, 71 insertions(+), 14 deletions(-)

sskorgal in commit 9dfd9d1:
 Fix for redis_cli printing default DB when select command fails.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit e97fadb:
 In Redis RDB check: initial POC.
 2 files changed, 189 insertions(+), 660 deletions(-)

Rojin George in commit d0f5307:
 Merge remote-tracking branch 'refs/remotes/antirez/unstable' into unstable
antirez in commit 24bd9b1:
 Test: new randomized stress tester for #3343 alike bugs.
 1 file changed, 27 insertions(+), 2 deletions(-)

antirez in commit f983318:
 Stress tester WIP.
 1 file changed, 3 insertions(+)

antirez in commit 4989986:
 Regression test for issue #3343 exact min crash sequence.
 1 file changed, 16 insertions(+)

antirez in commit dc18a6a:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
antirez in commit 5e176e1:
 Fix quicklistReplaceAtIndex() by updating the quicklist ziplist size.
 1 file changed, 1 insertion(+)

Salvatore Sanfilippo in commit ae4f5b3:
 Merge pull request #3342 from yossigo/fix_calloc
Yossi Gottlieb in commit 19c401d:
 Fix RedisModule_Calloc() definition typo.
 1 file changed, 1 insertion(+), 1 deletion(-)

rojingeorge in commit 4242fdf:
 Display the nodes summary once the cluster is established using redis-trib.rb
 1 file changed, 5 insertions(+)

rojingeorge in commit 4aab50a:
 Merge remote-tracking branch 'refs/remotes/antirez/unstable' into unstable
Salvatore Sanfilippo in commit f60aa4d:
 Merge pull request #3324 from mishan/fix-wrong-comment-about-sentinel-mode
antirez in commit 1898311:
 Modules: mention RedisModule_Calloc() in the doc.
 1 file changed, 1 insertion(+)

Salvatore Sanfilippo in commit 3a0b776:
 Merge pull request #3335 from dvirsky/rm_calloc
antirez in commit c026b5c:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
antirez in commit 0f484d8:
 Actually remove static from #3331.
 1 file changed, 1 insertion(+), 2 deletions(-)

Salvatore Sanfilippo in commit 28ea585:
 Merge pull request #3336 from yossigo/create_string_from_string
antirez in commit c0ca87d:
 Minor change to conform PR #3331 to Redis code base style.
 1 file changed, 1 insertion(+), 2 deletions(-)

Salvatore Sanfilippo in commit a66dd43:
 Merge pull request #3331 from yossigo/fix_openkey_crash
Salvatore Sanfilippo in commit 393c468:
 Merge pull request #3338 from tielei/unstable
tielei in commit f648c5a:
 A string with 21 chars is not representable as a 64-bit integer.
 1 file changed, 2 insertions(+), 2 deletions(-)

Salvatore Sanfilippo in commit 3d48c93:
 Merge pull request #3330 from yossigo/fix_const
antirez in commit 4b12c6a:
 Modules: changes to logging function.
 3 files changed, 39 insertions(+), 19 deletions(-)

Yossi Gottlieb in commit 715794b:
 Add RedisModule_Log() logging API function.
 3 files changed, 42 insertions(+)

antirez in commit b507289:
 Commit change in autoMemoryFreed(): first -> last.
 1 file changed, 2 insertions(+), 1 deletion(-)

antirez in commit f2dbc02:
 Modules: implement zig-zag scanning in autoMemoryFreed().
 1 file changed, 20 insertions(+), 16 deletions(-)

Salvatore Sanfilippo in commit 2fe9b79:
 Merge pull request #3244 from dvirsky/optimize_autoMemoryFreed
Yossi Gottlieb in commit 61172ed:
 Add RedisModule_CreateStringFromString().
 5 files changed, 26 insertions(+), 2 deletions(-)

Dvir Volk in commit dc7f3fe:
 added RM_Calloc implementation
 2 files changed, 13 insertions(+), 1 deletion(-)

antirez in commit 4e10b08:
 Modules doc: hint about replacing libc malloc calls.
 1 file changed, 15 insertions(+), 1 deletion(-)

Yossi Gottlieb in commit e22f3e4:
 Cleanup: remove zset reset function from RM_ZsetRangeStop().
 1 file changed, 13 insertions(+), 7 deletions(-)

Yossi Gottlieb in commit a8e2034:
 Fix occasional RM_OpenKey() crashes.
 1 file changed, 1 insertion(+)

Yossi Gottlieb in commit 8f3a4df:
 Use const in Redis Module API where possible.
 13 files changed, 38 insertions(+), 38 deletions(-)

Salvatore Sanfilippo in commit 0b4b7eb:
 Merge pull request #3252 from oranagra/config_fix
Misha Nasledov in commit 7a5538d:
 Fix incorrect comment for checkForSentinelMode function
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit f7351f4:
 Fix Sentinel pending commands counting.
 1 file changed, 1 insertion(+)

antirez in commit 7c8f275:
 redis-cli: really connect to the right server.
 1 file changed, 5 insertions(+), 2 deletions(-)

antirez in commit a3f893b:
 RESTORE: accept RDB dumps with older versions.
 1 file changed, 1 insertion(+), 1 deletion(-)

Salvatore Sanfilippo in commit 8272cea:
 Merge pull request #3255 from oranagra/error_string
Salvatore Sanfilippo in commit 64b834b:
 Merge pull request #3256 from oranagra/georasius_neg
antirez in commit 2f2fd64:
 Minor aesthetic fixes to PR #3264.
 1 file changed, 5 insertions(+), 5 deletions(-)

Salvatore Sanfilippo in commit 33a9836:
 Merge pull request #3264 from oranagra/bitfield_fix2
Salvatore Sanfilippo in commit 5d83f6c:
 Merge pull request #3274 from MOON-CLJ/fix_promoted_slave
antirez in commit 3bd20ea:
 Test TOUCH and new TTL / TYPE behavior about object access time.
 2 files changed, 24 insertions(+)

Salvatore Sanfilippo in commit 226f679:
 Merge pull request #3283 from ideal/unstable
Salvatore Sanfilippo in commit bd2cd70:
 Merge pull request #3281 from jamespedwards42/unstable
antirez in commit 2d86995:
 GETRANGE: return empty string with negative, inverted start/end.
 2 files changed, 6 insertions(+), 2 deletions(-)

antirez in commit eb45e11:
 Remove additional round brackets from fix for #3282.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit ca54335:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
Salvatore Sanfilippo in commit 001cadc:
 Merge pull request #3282 from wenduo/unstable
antirez in commit 212f157:
 Regression test for #3282.
 1 file changed, 10 insertions(+)

Salvatore Sanfilippo in commit 3deb7ba:
 Merge pull request #3226 from MichielDeMey/patch-1
Salvatore Sanfilippo in commit 82554ca:
 Merge pull request #3313 from zshipko/unstable
zach shipko in commit b7b9aa6:
 BSDs don't have -ldl
 1 file changed, 15 insertions(+), 5 deletions(-)

antirez in commit 41d804d:
 TTL and TYPE LRU access fixed. TOUCH implemented.
 3 files changed, 60 insertions(+), 8 deletions(-)

antirez in commit cd8e688:
 redis-cli help.h updated.
 1 file changed, 13 insertions(+), 8 deletions(-)

antirez in commit c6e3ce3:
 Enable tcp-keepalive by default.
 1 file changed, 3 insertions(+), 2 deletions(-)

antirez in commit 5ba9bde:
 Modules: document how to pass config params to modules.
 1 file changed, 19 insertions(+), 1 deletion(-)

antirez in commit 5831dd8:
 Fix example modules to have the right OnLoad() prototype.
 2 files changed, 8 insertions(+), 2 deletions(-)

antirez in commit a4bce77:
 Don't assume no padding or specific ordering in moduleLoadQueueEntry structure.
 2 files changed, 4 insertions(+), 3 deletions(-)

antirez in commit 9a02dac:
 Free module context after loading.
 1 file changed, 1 insertion(+)

antirez in commit b6cd008:
 Make sure modules arguments are raw strings.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 1ad5c22:
 Minor changes to unifor C style to Redis code base for PR #3293.
 3 files changed, 8 insertions(+), 6 deletions(-)

Salvatore Sanfilippo in commit e8d5387:
 Merge pull request #3293 from yossigo/module_config
antirez in commit e71f22f:
 Fix typo: after -> before.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit e4567f2:
 Explain why module type names are 9 chars.
 1 file changed, 52 insertions(+)

Salvatore Sanfilippo in commit 688996f:
 Merge pull request #3295 from catwell/pr-1-warnings
Salvatore Sanfilippo in commit b4327ae:
 Merge pull request #3294 from yossigo/fix_unload
antirez in commit a1684ff:
 Remove tryObjectEncoding() calls from list type.
 1 file changed, 3 deletions(-)

antirez in commit 5beec97:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
Michiel De Mey in commit 90781de:
 Added documentation for non-interactive install procedure
 1 file changed, 19 insertions(+), 3 deletions(-)

Salvatore Sanfilippo in commit ab73544:
 Merge pull request #3296 from catwell/pr-2-variadic-pushx
andyli in commit 93a0987:
 fix comment "b>a" to "a > b"
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 2a57ad5:
 Fixed typo in Sentinel compareSlavesForPromotion() comment.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 243c9dc:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
Salvatore Sanfilippo in commit 01a34b1:
 Merge pull request #2870 from SaurabhJha/documenation-fixes
antirez in commit 67fcd26:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
Salvatore Sanfilippo in commit bac4de7:
 Merge pull request #3180 from bogdanvlviv/fix_pidfile
antirez in commit 5481336:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
Salvatore Sanfilippo in commit 53c008a:
 Merge pull request #3303 from jspraul/patch-1
antirez in commit b664aeb:
 Improve timer callback creation comment.
 1 file changed, 3 insertions(+), 2 deletions(-)

jspraul in commit 4df95e8:
 Include 'fd_set' type name
 1 file changed, 1 insertion(+)

Salvatore Sanfilippo in commit 30c1a85:
 Merge pull request #3301 from yossigo/fix_unused_warning
Yossi Gottlieb in commit 2fd6ca3:
 Remove gcc warning when redismodule.h is included by a multi-file module.
 1 file changed, 1 insertion(+)

Saurabh Jha in commit 319b126:
 Fixup
 1 file changed, 8 insertions(+), 8 deletions(-)

Saurabh Jha in commit 61717ac:
 More edits to README
 1 file changed, 15 insertions(+), 15 deletions(-)

Saurabh Jha in commit 0f10b16:
 Address grammatical comments
 1 file changed, 2 insertions(+), 2 deletions(-)

Saurabh Jha in commit 90a3647:
 Fix typos in documentation
 2 files changed, 15 insertions(+), 16 deletions(-)

Pierre Chapuis in commit d88c3c7:
 make RPUSHX and LPUSHX variadic
 3 files changed, 18 insertions(+), 9 deletions(-)

Pierre Chapuis in commit b670a16:
 remove unused variable
 1 file changed, 2 insertions(+), 2 deletions(-)

Pierre Chapuis in commit 3e9c20f:
 untangle LINSERT and {L,R}PUSHX implementations
 1 file changed, 45 insertions(+), 40 deletions(-)

Pierre Chapuis in commit 188d90f:
 fix some compiler warnings
 3 files changed, 17 insertions(+), 10 deletions(-)

Yossi Gottlieb in commit 87312ff:
 Fix MODULE UNLOAD crash and/or wrong error message.
 1 file changed, 14 insertions(+), 7 deletions(-)

Yossi Gottlieb in commit cc58f11:
 Use RedisModuleString for OnLoad argv.
 3 files changed, 5 insertions(+), 11 deletions(-)

Yossi Gottlieb in commit 2bd13cf:
 Allow passing arguments to modules on load.
 3 files changed, 46 insertions(+), 13 deletions(-)

antirez in commit 550fa7e:
 modules API.md updated.
 1 file changed, 232 insertions(+), 10 deletions(-)

antirez in commit c3f5b6e:
 Modules: native types doc, 70% done.
 1 file changed, 305 insertions(+)

antirez in commit 5830d88:
 Modules: pool allocator doc.
 1 file changed, 53 insertions(+), 1 deletion(-)

antirez in commit 31eb8ec:
 Modules: top comments in helloworld.c and hellotype.c.
 2 files changed, 74 insertions(+)

antirez in commit 8ec2800:
 Modules: support for modules native data types.
 11 files changed, 991 insertions(+), 35 deletions(-)

antirez in commit 27e5f38:
 RDB v8: fix rdbLoadLen() return value.
 3 files changed, 61 insertions(+), 36 deletions(-)

antirez in commit e6554be:
 RDB v8: new ZSET storage format with binary doubles.
 2 files changed, 27 insertions(+), 5 deletions(-)

antirez in commit 4aae4f7:
 RDB v8: ability to save uint64_t lengths.
 3 files changed, 34 insertions(+), 44 deletions(-)

antirez in commit b64fcbc:
 Test: run GEO tests by default.
 1 file changed, 1 insertion(+)

antirez in commit 231c9db:
 Now that SPOP can be called by scripts use BLPOP on 's' flag test.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 2503acf:
 Avoid undefined behavior in BITFIELD implementation.
 1 file changed, 15 insertions(+), 8 deletions(-)

Salvatore Sanfilippo in commit 9200312:
 Merge pull request #3278 from itamarhaber/patch-8
antirez in commit 5d4b5fb:
 Geo: fix typo in geohashEstimateStepsByRadius().
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 18a513f:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
antirez in commit 4eff3dc:
 Fix GEORADIUS wrong output with radius > Earth radius.
 1 file changed, 2 insertions(+)

ideal in commit 4067132:
 fix mistake comment in object.c
 1 file changed, 1 insertion(+), 1 deletion(-)

wenduo in commit 41dacdb:
 bitcount bug:return non-zero value when start > end (both negative)
 1 file changed, 4 insertions(+)

jamespedwards42 in commit 3432061:
 Fix modules intro typos.
 1 file changed, 3 insertions(+), 4 deletions(-)

Itamar Haber in commit 2866e02:
 Allow SPOP from Lua scripts
 1 file changed, 1 insertion(+), 1 deletion(-)

MOON_CLJ in commit aa57844:
 fix check when can't send the command to the promoted slave
 1 file changed, 1 insertion(+), 1 deletion(-)

oranagra in commit 5d96b7e:
 check WRONGTYPE in BITFIELD before looping on the operations.
 1 file changed, 18 insertions(+), 9 deletions(-)

oranagra in commit c4433d2:
 fix crash in BITFIELD GET on non existing key or wrong type see #3259
 1 file changed, 5 insertions(+), 3 deletions(-)

oranagra in commit f3e81de:
 fix georadius returns multiple replies
 1 file changed, 5 insertions(+), 2 deletions(-)

oranagra in commit 8d9d8d1:
 CLIENT error message was out of date
 1 file changed, 1 insertion(+), 1 deletion(-)

Salvatore Sanfilippo in commit 8c4f4d1:
 Merge pull request #3249 from badboy/rcli-debug-printing
oranagra in commit 5fa711f:
 config set list-max-ziplist-size didn't support negative values, unlike config file
 1 file changed, 3 insertions(+), 3 deletions(-)

Jan-Erik Rediger in commit 892565f:
 Remove debug printing
 1 file changed, 3 deletions(-)

Dvir Volk in commit 137fd86:
 optimized amFree even further
 1 file changed, 9 insertions(+), 4 deletions(-)

Dvir Volk in commit 46b07cb:
 Optimized autoMemoryFreed loop
 1 file changed, 4 insertions(+), 1 deletion(-)

antirez in commit b09a6b6:
 Fix modules compilation when libc malloc is used.
 1 file changed, 2 insertions(+), 2 deletions(-)

Salvatore Sanfilippo in commit bafed3d:
 Merge pull request #3222 from oranagra/more_minir_fixes
antirez in commit e3edae9:
 Modules: RM_HashSet() SDS ownership business clarified in comments.
 1 file changed, 5 insertions(+), 5 deletions(-)

Salvatore Sanfilippo in commit 01a83d0:
 Merge pull request #3239 from dvirsky/fix_hashset_crash
antirez in commit bee963c:
 Code to access object string bytes repeated 3x refactored into 1 function.
 1 file changed, 39 insertions(+), 35 deletions(-)

antirez in commit ffd1600:
 Clarify that the LOG_STR_SIZE includes null term.
 1 file changed, 1 insertion(+), 1 deletion(-)

Salvatore Sanfilippo in commit 4c9c9d7:
 Merge pull request #3221 from oranagra/bitfield_fix
antirez in commit 078f461:
 Test for BITFIELD regression #3221.
 1 file changed, 5 insertions(+)

antirez in commit c6c86ea:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
antirez in commit 968e838:
 Actually use --with-lg-quantum=3 to build jemalloc.
 1 file changed, 1 insertion(+), 1 deletion(-)

Dvir Volk in commit cfaef8d:
 fixed bad transfer of ownership in HashSet causing a potential crash
 1 file changed, 7 insertions(+), 4 deletions(-)

Salvatore Sanfilippo in commit b1b1f4e:
 Merge pull request #3238 from oranagra/struct_fix
oranagra in commit 283a812:
 reduce struct padding by reordering members
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 9aff564:
 Modules: initial pool allocator and a LEFTPAD usage example.
 3 files changed, 147 insertions(+), 4 deletions(-)

Michiel De Mey in commit af1e63c:
 Allow non-interactive execution of install_server
 1 file changed, 45 insertions(+), 28 deletions(-)

antirez in commit 646c958:
 Modules: doc layout improved.
 4 files changed, 1475 insertions(+), 575 deletions(-)

antirez in commit 745845d:
 Modules doc: mention the functions not yet documented.
 1 file changed, 25 insertions(+), 8 deletions(-)

oranagra in commit 77a9144:
 fix crash in BITFIELD GET when key is integer encoded
 1 file changed, 15 insertions(+), 3 deletions(-)

antirez in commit 5daece2:
 RM_ZsetRangeNext()/Prev() typo in define name leading to crash fixed.
 1 file changed, 2 insertions(+), 2 deletions(-)

antirez in commit 5f977c3:
 Modules: commandFlagsFromString() top comment back to 80 cols max.
 1 file changed, 29 insertions(+), 24 deletions(-)

antirez in commit ef2b4f6:
 Trailing spaces removed from moduleCreateArgvFromUserFormat().
 1 file changed, 4 insertions(+), 4 deletions(-)

antirez in commit 6250a6b:
 Modules: RM_GetClientId() implemented.
 2 files changed, 19 insertions(+)

Dvir Volk in commit 9a71df5:
 fixed crash when calling CreateStringFromCallReply on array elements
 1 file changed, 1 insertion(+)

Itamar Haber in commit 3816f16:
 Avoids reallocating and double String on truncate
 1 file changed, 17 insertions(+), 18 deletions(-)

Dvir Volk in commit d41bd23:
 fixed comment formatting in RM_CreateCommand
 1 file changed, 13 insertions(+), 13 deletions(-)

Ramon Snir in commit 909a707:
 vector of strings is implemented now
 1 file changed, 1 insertion(+), 1 deletion(-)

Dvir Volk in commit a00e872:
 another small comment fix
 1 file changed, 2 insertions(+), 1 deletion(-)

Dvir Volk in commit 87de31f:
 fixed comment
 1 file changed, 3 insertions(+), 1 deletion(-)

Dvir Volk in commit 8fc6708:
 second attempt at vector formtting
 1 file changed, 12 insertions(+), 1 deletion(-)

antirez in commit 7f5e134:
 Modules: add ZADD_INCR flag to zset increment API.
 1 file changed, 1 insertion(+)

Itamar Haber in commit 1186f92:
 typo: %s/Emtpy/Empty/g
 1 file changed, 5 insertions(+), 5 deletions(-)

antirez in commit 227d680:
 Modules: command <-> core interface modified to get flags & keys.
 7 files changed, 177 insertions(+), 40 deletions(-)

Ramon Snir in commit 676a6a4:
 tiny typo in Redis Modules API documentation
 1 file changed, 1 insertion(+), 1 deletion(-)

Dvir Volk in commit a1f8e22:
 fixed return value of HashGet (and a slight error in the documentation)
 1 file changed, 2 insertions(+), 2 deletions(-)

antirez in commit 02c4a6c:
 Modules: REDISMODULE_POSTPONED_ARRAY_LEN doc.
 1 file changed, 45 insertions(+)

antirez in commit 42f7221:
 Modules: Hash API defines made more uniform.
 3 files changed, 38 insertions(+), 42 deletions(-)

antirez in commit 9b0556c:
 Modules: Hash type API WIP #2.
 3 files changed, 60 insertions(+), 4 deletions(-)

antirez in commit 10993ca:
 Modules: Hash type API WIP #1.
 4 files changed, 212 insertions(+), 6 deletions(-)

antirez in commit 5bf5fd2:
 Modules: a few fixes for the zset iterator.
 2 files changed, 13 insertions(+), 6 deletions(-)

antirez in commit 33e1231:
 Modules: postponed array lengths.
 2 files changed, 86 insertions(+), 3 deletions(-)

antirez in commit 00109e1:
 Modules: zset lex iterator #3.
 3 files changed, 49 insertions(+), 3 deletions(-)

antirez in commit db3ade2:
 Modules: zset lex iterator #2.
 3 files changed, 30 insertions(+), 6 deletions(-)

antirez in commit 2b04f86:
 Modules: zset lex iterator #1.
 3 files changed, 77 insertions(+), 4 deletions(-)

antirez in commit 083f527:
 Modules: zset iterator redesign #1.
 4 files changed, 76 insertions(+), 106 deletions(-)

antirez in commit d998170:
 Simple Ruby script to generate reference doc added.
 1 file changed, 38 insertions(+)

antirez in commit 0fd6d54:
 Modules: fix top comments to be user-facing doc quality. About 33% done.
 1 file changed, 137 insertions(+), 51 deletions(-)

antirez in commit f362f7a:
 Modules: sorted set iterators WIP #3.
 4 files changed, 134 insertions(+), 24 deletions(-)

antirez in commit bdbb5a0:
 Modules: put zset iterator current element in auto memory pool.
 1 file changed, 6 insertions(+), 2 deletions(-)

antirez in commit 6eeeda3:
 Modules: sorted set iterators WIP #2.
 3 files changed, 34 insertions(+), 4 deletions(-)

antirez in commit eac5a13:
 Modules: sorted set iterators WIP.
 4 files changed, 221 insertions(+), 1 deletion(-)

antirez in commit 556d593:
 Remove useless space.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit d5ecedd:
 Modules: ZSET API WIP #4.
 2 files changed, 33 insertions(+), 1 deletion(-)

antirez in commit e1b34ec:
 Modules: ZSET API WIP #3.
 2 files changed, 24 insertions(+)

antirez in commit 4457e4a:
 Modules: ZSET API WIP #2.
 2 files changed, 93 insertions(+), 1 deletion(-)

antirez in commit f199504:
 Modules: ZSET API WIP.
 2 files changed, 14 insertions(+), 5 deletions(-)

antirez in commit 11b3df2:
 Modules: expire API and documentation.
 4 files changed, 101 insertions(+)

antirez in commit f4e0129:
 Modules: RedisModule_ReplyWithCallReply().
 4 files changed, 31 insertions(+), 1 deletion(-)

Itamar Haber in commit 6054089:
 Stops SPLICE from accepting negative counts
 1 file changed, 6 insertions(+), 2 deletions(-)

Sun He in commit 2e464bf:
 modules/RM_StringTruncate: correct reallocate condition
 1 file changed, 1 insertion(+), 1 deletion(-)

Sun He in commit 3a7b170:
 modules/RM_OpenKey: avoid decrRefCount obj twice
 1 file changed, 1 deletion(-)

Sun He in commit 1868dee:
 modules/RM_StringSet: set key->value
 1 file changed, 1 insertion(+)

Sun He in commit fded8aa:
 modules: correct protolen
 1 file changed, 4 insertions(+), 4 deletions(-)

antirez in commit 4efe9e1:
 Add the last break for consistency in moduleCreateCallReplyFromProto.
 1 file changed, 1 insertion(+), 1 deletion(-)

Dvir Volk in commit e453d36e:
 fixed case in moduleCreateCallReplyFromProto
 1 file changed, 4 insertions(+), 4 deletions(-)

Dvir Volk in commit ae5cb3f:
 renamed RedisModule_ReplyWithNull to RM_ReplyWithNull to fix compilation
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 2967c00:
 Modules: RedisModule_ReplyWithNull() implemented.
 2 files changed, 9 insertions(+)

Dvir Volk in commit e711a9a:
 fixed the doc with a right function name
 1 file changed, 3 insertions(+), 2 deletions(-)

Yossi Gottlieb in commit e443ad9:
 Log loadmodule dlopen() errors.
 1 file changed, 4 insertions(+), 1 deletion(-)

antirez in commit 85919f8:
 Modules: avoid conflict between modules func pointers and dynamic symbols.
 2 files changed, 95 insertions(+), 88 deletions(-)

antirez in commit 6020469:
 Modules: remove warnings due to void/function pointer conversion.
 1 file changed, 7 insertions(+), 6 deletions(-)

Dvir Volk in commit 34f2fb7:
 fixed makefile for linux
 1 file changed, 12 insertions(+), 2 deletions(-)

antirez in commit 6dead2c:
 Modules: first preview 31 March 2016.
 13 files changed, 2625 insertions(+), 4 deletions(-)

oranagra in commit 9682b61:
 minor fixes - mainly signalModifiedKey, and GEORADIUS
 6 files changed, 19 insertions(+), 16 deletions(-)

antirez in commit 3b644e8:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
Salvatore Sanfilippo in commit b44ad30:
 Merge pull request #732 from evilpacket/remove_dofile
antirez in commit 8eb43bf:
 redis-cli: integrate help.h with COMMAND output.
 1 file changed, 70 insertions(+), 10 deletions(-)

antirez in commit f9ee039:
 Scripting test: match new error message.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 2205c46:
 Cluster: don't check scripts key slots during AOF loading.
 1 file changed, 4 insertions(+), 2 deletions(-)

antirez in commit 94dc71f:
 redis-cli: remove debugging message.
 1 file changed, 1 deletion(-)

antirez in commit bdbeb07:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
antirez in commit 68dd1c9:
 Revert "Fix commandCommand arity"
 1 file changed, 1 insertion(+), 1 deletion(-)

Salvatore Sanfilippo in commit f0fcc36:
 Merge pull request #2956 from pkulchenko/global-protection-msg-typo
Ruben Bridgewater in commit efa0840:
 Fix commandCommand arity
 1 file changed, 1 insertion(+), 1 deletion(-)

Salvatore Sanfilippo in commit f5ff91f:
 Merge pull request #2998 from danielhtshih/unstable
Salvatore Sanfilippo in commit 0c1f84f:
 Merge pull request #3006 from baishaofei/unstable
Salvatore Sanfilippo in commit 7b90815:
 Merge pull request #3008 from badboy/fix-2911
antirez in commit 02db338:
 redis-cli: don't free historyfile, is used later.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 4c53bab:
 Cluster test 12: reshard back just a few slots to speedup the test.
 1 file changed, 7 insertions(+), 7 deletions(-)

antirez in commit 971e3c5:
 Cluster: make getNodeByQuery() responsible of -CLUSTERDOWN errors.
 2 files changed, 21 insertions(+), 18 deletions(-)

Salvatore Sanfilippo in commit 330715a:
 Merge pull request #3039 from itamarhaber/patch-3
Salvatore Sanfilippo in commit a4df156:
 Merge pull request #3077 from Palethorn/ipv6-redirect-parse
antirez in commit c77b95f:
 Bind both IPv4 and IPv6 or exit with an error by default.
 1 file changed, 10 insertions(+), 8 deletions(-)

antirez in commit 0bb787d:
 Quick fix to avoid false positive in replica migration test.
 1 file changed, 4 insertions(+), 1 deletion(-)

Chris Thunes in commit d827dbf:
 Ensure slots are rechecked on EXEC.
 1 file changed, 7 insertions(+), 2 deletions(-)

Salvatore Sanfilippo in commit 91b4966:
 Merge pull request #3188 from therealbill/unstable
Salvatore Sanfilippo in commit de3a673:
 Merge pull request #3193 from sethbergman/patch-1
Salvatore Sanfilippo in commit 09153b9:
 Merge pull request #3152 from be-hase/fix/check_open_slots
antirez in commit b76d27c:
 Added a tool for generating changelogs automatically.
 1 file changed, 26 insertions(+)

antirez in commit b632f78:
 Minor redis-cli wording change in --help output.
 1 file changed, 2 insertions(+), 1 deletion(-)

antirez in commit 995b9ff:
 Allow CONFIG GET during loading.
 2 files changed, 7 insertions(+), 1 deletion(-)

antirez in commit 5500c51:
 Command "r" flag removed from commands not accessing the key space.
 1 file changed, 35 insertions(+), 35 deletions(-)

antirez in commit 840ac20:
 DEBUG command self documentation.
 2 files changed, 49 insertions(+), 2 deletions(-)

Salvatore Sanfilippo in commit b5352ee:
 Merge pull request #3191 from oranagra/minor_fix
antirez in commit 2c22f59:
 Reply with error on negative geo radius.
 1 file changed, 4 insertions(+), 1 deletion(-)

antirez in commit 9c48f28:
 Cluster regression test for #3043.
 1 file changed, 61 insertions(+)

antirez in commit 4fdde78:
 New masters with slots are now targets of migration if others are.
 1 file changed, 35 insertions(+), 1 deletion(-)

Seth Bergman in commit da26f2b:
 Fixed typo in README.md
 1 file changed, 1 insertion(+), 1 deletion(-)

Oran Agra in commit 5e3880a:
 various cleanups and minor fixes
 12 files changed, 39 insertions(+), 45 deletions(-)

Oran Agra in commit 6ed8c28:
 dict.c minor optimization
 1 file changed, 4 insertions(+), 4 deletions(-)

Oran Agra in commit 7b52ef1:
 networking.c minor optimization
 1 file changed, 5 insertions(+), 6 deletions(-)

Oran Agra in commit f8909a2:
 add DEBUG JEMALLC PURGE and JEMALLOC INFO cleanup
 2 files changed, 17 insertions(+), 2 deletions(-)

Oran Agra in commit 7ba9022:
 fix small issues in redis 3.2
 2 files changed, 3 insertions(+), 1 deletion(-)

Oran Agra in commit b554895:
 additional fix to issue #2948
 1 file changed, 3 insertions(+)

therealbill in commit 14086a4:
 fix for #3187
 3 files changed, 4 insertions(+), 4 deletions(-)

bogdanvlviv in commit 5565cc6:
 fix pidfile in redis.conf
 1 file changed, 1 insertion(+), 1 deletion(-)

Salvatore Sanfilippo in commit 4cbe044:
 Merge pull request #3174 from djanowski/fix-zincrby-return-value
Damian Janowski in commit 0b4bb50:
 Fix ZINCRBY return value.
 2 files changed, 8 insertions(+)

antirez in commit dda0f37:
 ZREM refactored into proper API.
 2 files changed, 48 insertions(+), 49 deletions(-)

antirez in commit 6f926c3:
 ZRANK refactored into proper API.
 2 files changed, 72 insertions(+), 50 deletions(-)

antirez in commit b73c7af:
 zsetAdd() API exposed into server.h.
 2 files changed, 16 insertions(+), 15 deletions(-)

antirez in commit b1f181a:
 ZADD refactored into a proper API.
 1 file changed, 182 insertions(+), 86 deletions(-)

antirez in commit e0eb5f6:
 redis-cli preferences and rc file support.
 1 file changed, 85 insertions(+), 17 deletions(-)

antirez in commit 70b3314:
 redis-cli help.h updated.
 1 file changed, 18 insertions(+), 8 deletions(-)

antirez in commit d1ddf7e:
 redis-cli hints.
 3 files changed, 62 insertions(+), 1 deletion(-)

antirez in commit d6e2cc7:
 Linenoise updated again (hints support).
 4 files changed, 248 insertions(+), 8 deletions(-)

antirez in commit 8a98b8d:
 Linenoise updated.
 1 file changed, 45 insertions(+), 15 deletions(-)

antirez in commit b9feef9:
 ae.c: Fix delay until next timer event.
 1 file changed, 12 insertions(+), 9 deletions(-)

antirez in commit ace780c:
 ae.c: comment to explain why we have a useless maxId check.
 1 file changed, 5 insertions(+), 1 deletion(-)

antirez in commit 67b70a1:
 Fix ae.c to avoid timers infinite loop.
 4 files changed, 28 insertions(+), 30 deletions(-)

Ryosuke Hasebe in commit cad9ea5:
 fix variable
 1 file changed, 5 insertions(+), 5 deletions(-)

Ryosuke Hasebe in commit d5aa7e2:
 fix check_open_slots
 1 file changed, 2 insertions(+), 1 deletion(-)

antirez in commit 28c291c:
 BITFIELD: overflow wrap behavior fuzz tester.
 1 file changed, 51 insertions(+)

antirez in commit ae7317e:
 BITFIELD basic unit tests.
 1 file changed, 85 insertions(+), 1 deletion(-)

antirez in commit fc84378:
 BITFIELD: Farest bit set is offset+bits-1. Off by one error fixed.
 1 file changed, 4 insertions(+), 2 deletions(-)

antirez in commit 9a00da0:
 BITFIELD: overflow fuzzy testing.
 2 files changed, 53 insertions(+)

antirez in commit 27fc01a:
 Fix typo in bitops.tcl comment.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit fe64960:
 More BITFIELD fixes. Overflow conditional simplified.
 1 file changed, 8 insertions(+), 9 deletions(-)

Salvatore Sanfilippo in commit 235f553:
 Merge pull request #3118 from sunheehnus/bitfield-fix-minor-bug
Sun He in commit 93cc8ba:
 bitops/bitfield: fix length, overflow condition and *sign
 1 file changed, 8 insertions(+), 5 deletions(-)

antirez in commit e85d6f2:
 Fix INFO commandstats reporting when argv is rewritten.
 2 files changed, 3 insertions(+), 3 deletions(-)

antirez in commit 32289d5:
 BITFIELD: refactoring & fix of retval on FAIL.
 1 file changed, 24 insertions(+), 8 deletions(-)

antirez in commit 11745e0:
 BITFIELD: Fix #<index> form parsing.
 1 file changed, 4 insertions(+), 6 deletions(-)

antirez in commit 2800d09:
 BITFIELD: Support #<index> offsets form.
 1 file changed, 23 insertions(+), 6 deletions(-)

antirez in commit 70af626:
 BITFIELD command initial implementation.
 3 files changed, 476 insertions(+), 32 deletions(-)

Salvatore Sanfilippo in commit 438ae49:
 Merge pull request #3101 from itamarhaber/geohumanized
Itamar Haber in commit b5149f0:
 Eliminates engineers near the equator & prime meridian
 1 file changed, 4 insertions(+), 4 deletions(-)

Itamar Haber in commit 41030ae:
 Fixes a typo in a comment
 1 file changed, 1 insertion(+), 1 deletion(-)

Itamar Haber in commit 4e9c302:
 Adjusts accuracy for GEODIST
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit cf42c48:
 addReplyHumanLongDouble() API added.
 2 files changed, 10 insertions(+)

antirez in commit f4befcc:
 GEOADD STORE/STOREDIST tests.
 1 file changed, 54 insertions(+)

antirez in commit bb75ecd:
 New options for GEORADIUS: STORE and STOREDIST.
 4 files changed, 116 insertions(+), 49 deletions(-)

antirez in commit 15f37eb:
 Cluster: resharding test provides more state when failing.
 1 file changed, 8 insertions(+), 3 deletions(-)

antirez in commit b0ec22f:
 Include full paths on RDB/AOF files errors.
 2 files changed, 32 insertions(+), 4 deletions(-)

antirez in commit fcd7df5:
 Remove Lua state reference from buffers in lua_cmsgpack.
 1 file changed, 25 insertions(+), 28 deletions(-)

Salvatore Sanfilippo in commit 66dbc5e:
 Merge pull request #3072 from yoav-steinberg/cmsgpack_fix
David Cavar in commit c30ffaa:
 Reverse redirect address parse
 1 file changed, 1 insertion(+), 1 deletion(-)

yoav@monfort.co.il in commit fdbefc9:
 cmsgpack: pass correct osize values to lua allocator, update correct buf free space in cmsgpack
 1 file changed, 4 insertions(+), 4 deletions(-)

Salvatore Sanfilippo in commit aa953b6:
 Merge pull request #3059 from itamarhaber/keyspacenotif-lrem
Itamar Haber in commit 31a70a8:
 Fixes a typo
 1 file changed, 2 insertions(+), 2 deletions(-)

Itamar Haber in commit 68e779f:
 Adds keyspace notifications for lrem
 1 file changed, 6 insertions(+), 1 deletion(-)

antirez in commit 5b7b235:
 Fix to Cluster test to support @busport format.
 1 file changed, 4 insertions(+), 2 deletions(-)

antirez in commit cbcffed:
 Cluster: redis-trib: support @busport format in ClusterNode.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit b841f3a:
 Cluster: store busport with different separator in CLUSTER NODES.
 1 file changed, 13 insertions(+), 9 deletions(-)

antirez in commit 92b9de2:
 Cluster announce: WIP, allow building again.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 5ac5e3e:
 Cluster announce ip/port/bus-port documented in redis.conf.
 1 file changed, 33 insertions(+)

antirez in commit e27b9b1:
 Merge branch 'cluster-docker' into unstable
antirez in commit cdbe8a6:
 Typo ASII -> ASCII fixed in comment.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit c285862:
 Cluster: include node IDs in SLOTS output.
 1 file changed, 6 insertions(+), 2 deletions(-)

antirez in commit d0a8512:
 Cluster anounce-ip/port WIP.
 1 file changed, 1 insertion(+)

antirez in commit 4abf486:
 Cluster announce port: set port/bport for myself at startup.
 1 file changed, 7 insertions(+), 2 deletions(-)

antirez in commit 1c03837:
 Cluster: persist bus port in nodes.conf.
 1 file changed, 8 insertions(+), 2 deletions(-)

antirez in commit dc98907:
 Cluster announce ip: take myself->ip always in sync.
 1 file changed, 30 insertions(+), 6 deletions(-)

antirez in commit 11436b1:
 Cluster announce ip / port initial implementation.
 5 files changed, 127 insertions(+), 42 deletions(-)

antirez in commit b093930:
 Cluster announce ip / port configuration handling.
 3 files changed, 12 insertions(+)

antirez in commit a455e4b:
 Cluster: add announce ip field in messages header.
 1 file changed, 3 insertions(+), 2 deletions(-)

Itamar Haber in commit 9e46bf2:
 Fixes a typo
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 8870a7e:
 03_test_release.sh: proper cleanup before testing.
 1 file changed, 2 insertions(+)

antirez in commit 5bbb09e:
 Cluster: check packets length before accessing far fields.
 1 file changed, 10 insertions(+), 5 deletions(-)

antirez in commit 751b566:
 Sentinel: improve handling of known Sentinel instances.
 1 file changed, 34 insertions(+), 19 deletions(-)

antirez in commit 5bc7e01:
 Use a smoother running average for avg_ttl in INFO.
 1 file changed, 9 insertions(+), 5 deletions(-)

antirez in commit fe44a7c:
 Cluster: mismatch sender ID log put back at DEBUG level.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit d6c5922:
 Cluster: fix missing ntohs() call to access gossip section port.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 592419b:
 Better address udpate strategy when processing gossip sections.
 1 file changed, 15 insertions(+), 6 deletions(-)

antirez in commit 22892ce:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
antirez in commit bc15586:
 Fix memory leak in masterauth config option loading.
 1 file changed, 1 insertion(+)

Salvatore Sanfilippo in commit 7837c48:
 Merge pull request #3023 from itamarhaber/patch-2
Itamar Haber in commit 57f8230:
 Removes an extra space in protected mode message
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 83b862a:
 Minor MIGRATE refactoring.
 1 file changed, 12 insertions(+), 5 deletions(-)

antirez in commit f5a1e60:
 More variadic MIGRATE fixes.
 1 file changed, 9 insertions(+), 8 deletions(-)

antirez in commit 00d3a40:
 Various fixes to MIGRATE with multiple keys.
 1 file changed, 45 insertions(+), 12 deletions(-)

antirez in commit cfc879b:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
antirez in commit b01b32b:
 Test: Handle LOADING in restart_instance.
 1 file changed, 12 insertions(+)

Salvatore Sanfilippo in commit 8637384:
 Merge pull request #2726 from seppo0010/patch-2
antirez in commit 5432fc8:
 Detect and show crashes on Sentinel/Cluster tests.
 1 file changed, 18 insertions(+)

antirez in commit fc3ca8f:
 Cluster: fix setting nodes slaveof pointer to NULL on node release.
 1 file changed, 3 insertions(+), 14 deletions(-)

antirez in commit a411d55:
 Cluster: clarify node->slave may be NULL.
 1 file changed, 4 insertions(+), 1 deletion(-)

Jan-Erik Rediger in commit 15dacfe:
 Fix nanosecond conversion
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit f984cef:
 Cluster: fix rebalancing to always empty nodes.
 1 file changed, 24 insertions(+), 3 deletions(-)

root in commit 28e80bf:
 fix linux compile bug
 2 files changed, 9 insertions(+), 9 deletions(-)

antirez in commit 152e9f6:
 Cluster: redis-trib move_to_slot: don't send SETSLOT to slaves.
 1 file changed, 1 insertion(+)

Daniel Shih in commit e6d9705:
 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.
 1 file changed, 2 insertions(+)

antirez in commit c6e5088:
 Cluster: fix redis-trib reference of variable in warning.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 02c40c9:
 CLUSTER BUMPEPOCH initial implementation fixed.
 2 files changed, 25 insertions(+), 14 deletions(-)

antirez in commit e4eb6c7:
 Cluster: implement redis-trib fix when slot is open without owners.
 1 file changed, 39 insertions(+), 9 deletions(-)

antirez in commit 04ae459:
 Cluster: implement redis-trib fix for uncovered slots.
 1 file changed, 32 insertions(+), 9 deletions(-)

antirez in commit b58796f:
 Cluster: CLUSTER BUMPEPOCH introduced to help redis-trib fix.
 1 file changed, 7 insertions(+)

antirez in commit 524be1e:
 Cluster: don't allow CLUSTER SETSLOT with slaves.
 1 file changed, 5 insertions(+)

antirez in commit f43c794:
 Scripting: handle trailing comments.
 2 files changed, 5 insertions(+), 1 deletion(-)

antirez in commit e15e518:
 Allow MIGRATE to always be called on local keys for open slots.
 1 file changed, 7 insertions(+), 6 deletions(-)

antirez in commit 36704d6:
 Fix typos & grammar in clusterBumpConfigEpochWithoutConsensus() comment.
 1 file changed, 4 insertions(+), 4 deletions(-)

antirez in commit 7c1a5ff:
 Lua debugger: support direct calls to SCRIPT DEBUG in redis-cli.
 1 file changed, 21 insertions(+)

antirez in commit a75aa4b:
 Lua debugger: fix crash printing nested or deep objects.
 1 file changed, 14 insertions(+), 4 deletions(-)

antirez in commit 1e7a8f8:
 Another typo in protected mode error message.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 08c7bba:
 Fix protected mode error message typo.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit edd4d55:
 New security feature: Redis protected mode.
 5 files changed, 75 insertions(+), 3 deletions(-)

antirez in commit 00d637f:
 Cluster: don't send -ASK to MIGRATE.
 1 file changed, 5 insertions(+), 3 deletions(-)

antirez in commit 8b3aa73:
 Cluster test: do leaks detection with OSX leaks utility.
 1 file changed, 32 insertions(+)

antirez in commit 190babe:
 redis-trib: Remove duplicated key in hash initialization.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit b1f84d4:
 Cluster/Sentinel test: report ability to run via valgrind.
 1 file changed, 1 insertion(+)

Salvatore Sanfilippo in commit 075ea16:
 Merge pull request #2954 from pkulchenko/debug-table-pretty-printing
Salvatore Sanfilippo in commit f054b4a:
 Merge pull request #2957 from pkulchenko/debug-userdata-pretty-printing
antirez in commit 80b7037:
 Cluster: rebalance now supports --threshold option.
 1 file changed, 24 insertions(+), 2 deletions(-)

antirez in commit 628af70:
 Cluster: redis-trib reshard / rebalance --pipeline support.
 1 file changed, 21 insertions(+), 5 deletions(-)

antirez in commit 77f849b:
 Cluster: verify slaves consistency after resharding.
 1 file changed, 23 insertions(+)

antirez in commit 9b4dd92:
 Cluster: resharding test now checks AOF consistency.
 1 file changed, 42 insertions(+)

antirez in commit bb21537:
 Fix a race that may lead to the active (slave) client to be freed.
 1 file changed, 6 insertions(+)

antirez in commit 218e522:
 Fix processCommand() comment about return value.
 1 file changed, 2 insertions(+), 2 deletions(-)

antirez in commit a1c9c05:
 Hopefully better memory test on crash.
 3 files changed, 133 insertions(+), 86 deletions(-)

antirez in commit b9aeb98:
 Suppress harmless warnings.
 3 files changed, 8 insertions(+), 4 deletions(-)

antirez in commit ac8f4a6:
 memtest.c now can be called as API in non interactive mode.
 2 files changed, 73 insertions(+), 43 deletions(-)

antirez in commit 30f057d:
 Crash report format improvements.
 1 file changed, 35 insertions(+), 24 deletions(-)

Paul Kulchenko in commit b754c8e:
 Update pretty printing in debugging to generate valid Lua code for userdata-like types.
 1 file changed, 2 insertions(+), 2 deletions(-)

Paul Kulchenko in commit 3969e9d:
 Update pretty printing in debugging to generate valid Lua code for tables.
 1 file changed, 2 insertions(+), 1 deletion(-)

Paul Kulchenko in commit 2f3f3fd:
 Update global protection error message to fix a typo.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 6db8e85:
 Log address causing SIGSEGV.
 1 file changed, 4 insertions(+)

antirez in commit 8f8c399:
 Cluster: allows abbreviated node IDs with rebalance --weight option.
 1 file changed, 19 insertions(+), 3 deletions(-)

antirez in commit 9df1ae8:
 Cluster: rebalancing option --simulate, and a fix.
 1 file changed, 12 insertions(+), 8 deletions(-)

antirez in commit cba1c29:
 Cluster: redis-trib rebalance initial implementation.
 1 file changed, 154 insertions(+), 17 deletions(-)

antirez in commit 3782902:
 Initial implementation of redis-trib info subcommand.
 1 file changed, 22 insertions(+)

Salvatore Sanfilippo in commit 9f63e75:
 Merge pull request #2943 from sunheehnus/issue2855
Sun He in commit 3a47c8c:
 lua_struct.c/getnum: throw error if overflow happen
 1 file changed, 6 insertions(+), 4 deletions(-)

antirez in commit f0b168e:
 Cluster: redis-trib: use variadic MIGRATE.
 1 file changed, 13 insertions(+), 15 deletions(-)

antirez in commit 4e252e4:
 MIGRATE: Fix key extraction for new form.
 3 files changed, 29 insertions(+), 1 deletion(-)

antirez in commit 82fd74a:
 MIGRATE: test more corner cases.
 1 file changed, 37 insertions(+)

antirez in commit ac0a731:
 MIGRATE: Fix new argument rewriting refcount handling.
 1 file changed, 2 insertions(+), 3 deletions(-)

antirez in commit d85fc1e:
 MIGRATE: fix replies processing and argument rewriting.
 2 files changed, 40 insertions(+), 15 deletions(-)

antirez in commit 29d680e:
 Test: pipelined MIGRATE tests added.
 1 file changed, 54 insertions(+)

antirez in commit 9ebf7a6:
 Pipelined multiple keys MIGRATE.
 2 files changed, 115 insertions(+), 63 deletions(-)

antirez in commit e7945cf:
 Cluster: redis-trib migrate default timeout set to 60 sec.
 1 file changed, 1 insertion(+), 1 deletion(-)

daniele in commit 3d254e0:
 redis-trib.rb: --timeout XXXXX option added to fix and reshard commands. Defaults to 15000 milliseconds
 1 file changed, 10 insertions(+), 4 deletions(-)

antirez in commit adc2fe6:
 Cluster: replica migration with delay.
 2 files changed, 39 insertions(+), 17 deletions(-)

antirez in commit 41db54a:
 Cluster: more reliable migration tests.
 1 file changed, 24 insertions(+), 43 deletions(-)

antirez in commit b55affb:
 Cluster: more reliable replicas migration test.
 1 file changed, 75 insertions(+)

antirez in commit 4159055:
 Remove debugging message left there for error.
 1 file changed, 1 deletion(-)

antirez in commit 69897f5:
 unlinkClient(): clear flags according to ops performed.
 1 file changed, 2 insertions(+)

antirez in commit e0f22df:
 Fix replicas migration by adding a new flag.
 2 files changed, 31 insertions(+), 20 deletions(-)

antirez in commit f147225:
 Fix typo UNCOMMENT -> COMMENT in example redis.conf.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit acc2336:
 Centralize slave replication handshake aborting.
 1 file changed, 23 insertions(+), 22 deletions(-)

antirez in commit fceaa46:
 Test HINCRBYFLOAT rounding only in x86_64 and when valgrind is not in use.
 1 file changed, 16 insertions(+), 5 deletions(-)

antirez in commit 96628cc:
 fix sprintf and snprintf format string
 2 files changed, 3 insertions(+), 3 deletions(-)

antirez in commit e6a5117:
 Fix typo in prepareClientToWrite() comment.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit c2c68c5:
 Merge branch 'unstable' of github.com:/antirez/redis into unstable
antirez in commit da82723:
 Handle wait3() errors.
 1 file changed, 7 insertions(+), 1 deletion(-)

Salvatore Sanfilippo in commit 8164418:
 Merge pull request #2899 from itamarhaber/patch-1
Itamar Haber in commit 36801f7:
 Revert Lua's `redis.LOG_<level>` to original
 1 file changed, 4 insertions(+), 4 deletions(-)

antirez in commit a0d41e5:
 Redis Cluster: hint about validity factor when slave can't failover.
 1 file changed, 3 insertions(+), 1 deletion(-)

antirez in commit 4d625bb:
 Added Tcl program to show commits graphicaly.
 2 files changed, 112 insertions(+)

antirez in commit 4b0b28b:
 Lua debugger: infinite loop detection.
 1 file changed, 35 insertions(+), 7 deletions(-)

antirez in commit 1f35f2d:
 Lua debugger: fix trace command infinite loop.
 1 file changed, 6 insertions(+), 5 deletions(-)

antirez in commit 6604e04:
 Lua debugger: redis-cli: allow restart after end of session.
 1 file changed, 3 insertions(+), 1 deletion(-)

antirez in commit 58573f1:
 Lua debugger: redis-cli can restart Lua debugging sessions.
 1 file changed, 74 insertions(+), 44 deletions(-)

antirez in commit 0cc1917:
 Lua debugger: maxlen command implemented.
 2 files changed, 55 insertions(+), 14 deletions(-)

antirez in commit c560c64:
 Lua debugger: trace command implemented.
 1 file changed, 24 insertions(+)

antirez in commit 22959e0:
 Lua debugger: redis-cli: show compile errors in LDB mode.
 1 file changed, 12 insertions(+), 3 deletions(-)

antirez in commit 70a5169:
 Lua debugger: print without args show all local vars.
 1 file changed, 34 insertions(+), 5 deletions(-)

antirez in commit fb53459:
 Lua debugger: default behavior of "list" command changed.
 1 file changed, 14 insertions(+), 4 deletions(-)

antirez in commit 6de2306:
 Lua debugger: redis-cli error when --ldb is without --eval.
 1 file changed, 7 insertions(+)

antirez in commit e57cccd:
 Lua debugger: use sds_malloc() to allocate eval cli array.
 5 files changed, 35 insertions(+), 1 deletion(-)

antirez in commit 34aadf7:
 Lua debugging: fix error message for SCRIPT DEBUG.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 3d24cd6:
 Lua debugger: reply +OK to SCRIPT DEBUG no.
 1 file changed, 1 insertion(+)

antirez in commit 333547d:
 Lua debugger: call wait3() if there are pending forked debugging sessions.
 3 files changed, 10 insertions(+), 1 deletion(-)

antirez in commit 0163643:
 Lua debugger: abort implemented.
 1 file changed, 5 insertions(+)

antirez in commit d99ce09:
 Lua debugger: ldbSendLogs() memory leak fixed.
 1 file changed, 1 insertion(+)

antirez in commit 87672ad:
 Lua debugger: better support for synchronous mode.
 2 files changed, 22 insertions(+), 3 deletions(-)

antirez in commit 7be9170:
 Lua debugger: handle forked sessions children during shutdown.
 3 files changed, 51 insertions(+), 5 deletions(-)

antirez in commit 3ab0b4d:
 Lua debugger: inform user changes are rolled back.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 56d9bb8:
 Lua debugger: fix help typo, beark -> break.
 1 file changed, 4 insertions(+), 4 deletions(-)

antirez in commit e386cd8:
 Lua debugger: clear end of session protocol.
 2 files changed, 23 insertions(+), 9 deletions(-)

antirez in commit 7492237:
 Lua debugger: redis.debug() implemented.
 2 files changed, 44 insertions(+), 15 deletions(-)

antirez in commit 23a4d70:
 Lua debugger: redis-cli, mark end of debugging session.
 1 file changed, 1 insertion(+)

antirez in commit cd112db:
 Lua debugger: removing breakpoints now works.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit a076e42:
 Lua debugger: redis command implemented.
 1 file changed, 26 insertions(+), 1 deletion(-)

antirez in commit e6eb6ea:
 Lua debugger: try to eval as expression first.
 1 file changed, 13 insertions(+), 4 deletions(-)

antirez in commit 1f8fdaf:
 Lua debugger: much better Lua values pretty printer.
 2 files changed, 70 insertions(+), 17 deletions(-)

antirez in commit f480580:
 Lua debugger: print now handles ARGV and KEYS.
 1 file changed, 10 insertions(+), 2 deletions(-)

antirez in commit 36392dd:
 Lua debugger: added comment about helper functions.
 1 file changed, 3 insertions(+)

antirez in commit 3a04cb0:
 Lua debugger: redis.breakpoint() implemented.
 1 file changed, 27 insertions(+), 2 deletions(-)

antirez in commit cf4700b:
 Lua debugger: output improvements, eval command.
 2 files changed, 186 insertions(+), 54 deletions(-)

antirez in commit 1f8d614:
 Lua debugger: breakpoints.
 2 files changed, 148 insertions(+), 12 deletions(-)

antirez in commit 5c4f492:
 Lua debugger: ability to show local vars content.
 1 file changed, 85 insertions(+), 7 deletions(-)

antirez in commit 5417217:
 Lua debugger: log Redis commands. List command.
 2 files changed, 82 insertions(+), 7 deletions(-)

antirez in commit d3d1fa9:
 Lua debugger: initial REPL.
 2 files changed, 164 insertions(+), 20 deletions(-)

antirez in commit c494db8:
 Lua debugger: foundations implemented.
 5 files changed, 206 insertions(+), 21 deletions(-)

antirez in commit 7cfdccd:
 Remove "s" flag for MIGRATE in command table.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit f3dd472:
 Update redis-cli help and the script to generate it.
 2 files changed, 183 insertions(+), 9 deletions(-)

antirez in commit 0cb66fa:
 Fix MIGRATE entry in command table.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 8a0258a:
 AOF: rewriting child killed by SIGUSR1 is not an error.
 1 file changed, 4 insertions(+), 2 deletions(-)

antirez in commit 54f5ecf:
 call() deserves a good top-comment.
 1 file changed, 38 insertions(+), 2 deletions(-)

Salvatore Sanfilippo in commit c950fac:
 Merge pull request #2848 from badboy/removed-printf
antirez in commit 87a12a6:
 Best effort flush of slave buffers before SHUTDOWN.
 2 files changed, 14 insertions(+), 1 deletion(-)

antirez in commit b719eed:
 Use clientHasPendingReplies() in flushSlavesOutputBuffers()
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 1b5d24e:
 Scripting: fix redis.call() error reporting.
 1 file changed, 18 insertions(+), 5 deletions(-)

antirez in commit 111d24f:
 Fix error reply in subscribed Pub/Sub mode.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit cd8f19e:
 Initialize all Lua scripting related things into scripting.c
 3 files changed, 33 insertions(+), 12 deletions(-)

antirez in commit 9aa1f94:
 scripting.c source code better organized into sections.
 2 files changed, 182 insertions(+), 155 deletions(-)

antirez in commit 71aa9b7:
 Fix HINCRBYFLOAT to work with long doubles.
 3 files changed, 8 insertions(+), 8 deletions(-)

antirez in commit f625570:
 Add regression test for HINCRBYFLOAT formatting change.
 1 file changed, 7 insertions(+)

Salvatore Sanfilippo in commit de776a4:
 Merge pull request #2850 from Joe8Bit/fix_typo-in-readme
antirez in commit dfe90ac:
 README new internals section improved a bit more.
 1 file changed, 9 insertions(+), 8 deletions(-)

Joe Pettersson in commit 8bc8f6f:
 Fix typo in READme sever/server
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 462026c:
 README: remove garbage at end of line.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 73510f4:
 README operations -> commands, is more clear now #2.
 1 file changed, 2 insertions(+), 2 deletions(-)

antirez in commit b9fb240:
 README operations -> commands, is more clear now.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 8badf16:
 A few README typos fixed #2.
 1 file changed, 2 insertions(+), 2 deletions(-)

antirez in commit d80d051:
 A few README typos fixed.
 1 file changed, 6 insertions(+), 6 deletions(-)

antirez in commit 15d57c3:
 README now has info about Redis codebase layout.
 1 file changed, 257 insertions(+), 2 deletions(-)

Jan-Erik Rediger in commit 35afefc:
 Remove printf
 1 file changed, 1 deletion(-)

antirez in commit 30b3246:
 Test: improve PFCOUNT with multiple keys testing.
 1 file changed, 17 insertions(+), 2 deletions(-)

antirez in commit 77362b9:
 Dependencies updated.
 1 file changed, 150 insertions(+), 106 deletions(-)

antirez in commit 5b63ae3:
 Scripting: commands replication tests.
 1 file changed, 107 insertions(+), 1 deletion(-)

antirez in commit f26072e:
 More reliable DEBUG loadaof.
 1 file changed, 1 insertion(+)

antirez in commit 073a42b:
 Scripting: execute tests with command replication as well.
 1 file changed, 88 insertions(+), 79 deletions(-)

antirez in commit ff6d296:
 Scripting: ability to turn on Lua commands style replication globally.
 4 files changed, 8 insertions(+), 1 deletion(-)

antirez in commit eda06b5:
 Scripting: test Redis provided Lua functions error reporting.
 1 file changed, 9 insertions(+)

antirez in commit ebaa922:
 Scripting: fix error reporting of many Redis provided functions.
 1 file changed, 14 insertions(+), 14 deletions(-)

antirez in commit 2dabf82:
 Fix call() FORCE_REPL/AOF flags setting.
 2 files changed, 16 insertions(+), 15 deletions(-)

antirez in commit 514a234:
 Lua script selective replication fixes.
 3 files changed, 32 insertions(+), 20 deletions(-)

antirez in commit a3e8de0:
 Lua script selective replication WIP.
 2 files changed, 58 insertions(+), 3 deletions(-)

antirez in commit fc38235:
 Scripting: single commands replication mode implemented.
 3 files changed, 72 insertions(+), 8 deletions(-)

antirez in commit cdda674:
 call(): selective ability to prevent propagation on AOF / slaves.
 2 files changed, 35 insertions(+), 7 deletions(-)

antirez in commit 9dd3d2e:
 call(): don't inherit CLIENT_PREVENT_PROP + minor refactoring.
 1 file changed, 6 insertions(+), 3 deletions(-)

antirez in commit d37ef78:
 CONTRIBUTING updated.
 1 file changed, 7 insertions(+), 5 deletions(-)

antirez in commit 86f0a2e:
 CLIENT REPLY command implemented: ON, OFF and SKIP modes.
 2 files changed, 31 insertions(+), 1 deletion(-)

Salvatore Sanfilippo in commit bdcb145:
 Merge pull request #2810 from dwlt/add-copy-replace-parameters-to-redis-trib-import
antirez in commit 6ed12bd:
 Redis.conf example: make clear user must pass its path as argument.
 1 file changed, 6 insertions(+), 1 deletion(-)

antirez in commit 5f0fef5:
 Regression test for issue #2813.
 1 file changed, 53 insertions(+)

antirez in commit ed62288:
 PR 2813 fix ported to unstable.
 2 files changed, 25 insertions(+), 20 deletions(-)

David Thomson in commit 8a85ad2:
 Add back blank line
 1 file changed, 1 insertion(+)

David Thomson in commit 03d0de7:
 Update import command to optionally use copy and replace parameters
 1 file changed, 7 insertions(+), 3 deletions(-)

antirez in commit 35a0c77:
 DEBUG RESTART/CRASH-AND-RECOVER [delay] implemented.
 2 files changed, 17 insertions(+)

antirez in commit 7342746:
 Server: restartServer() API.
 2 files changed, 73 insertions(+), 4 deletions(-)

antirez in commit c372a59:
 Cluster: redis-trib fix, coverage for migrating=1 case.
 1 file changed, 12 insertions(+), 2 deletions(-)

antirez in commit 6ddcba6:
 Test: basic lazyfree unit test.
 2 files changed, 40 insertions(+)

antirez in commit 363c0f6:
 Test: fix attach_to_replication_stream to handle newlines.
 1 file changed, 5 insertions(+), 2 deletions(-)

antirez in commit f29e384:
 Fix extractLongLatOrReply() sanity check conditionals.
 1 file changed, 9 insertions(+), 9 deletions(-)

antirez in commit 3f38b51:
 Jemalloc configure script fixed to work nested.
 1 file changed, 18 deletions(-)

antirez in commit a9951b1:
 Jemalloc updated to 4.0.3.
 140 files changed, 25333 insertions(+), 15474 deletions(-)

antirez in commit e3ded02:
 Added a README into deps on dependencies and how to upgrade.
 1 file changed, 66 insertions(+)

antirez in commit ceaf58d:
 Regression test for GEORADIUS COUNT arity check.
 1 file changed, 5 insertions(+)

antirez in commit 319d180:
 Fix GEORADIUS COUNT option arity checks.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 19f6ab5:
 Lazyfree options documented in the example redis.conf.
 1 file changed, 52 insertions(+), 1 deletion(-)

antirez in commit 880c606:
 Lazyfree options implemented in the configuration.
 1 file changed, 36 insertions(+)

antirez in commit 252cfa0:
 Lazyfree: cond vars to enabled/disable it based on DEL context.
 4 files changed, 51 insertions(+), 35 deletions(-)

antirez in commit 5359696:
 Fixed a bug in the emptyDb() new implementation.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit ecdbc33:
 FLUSHDB and FLUSHALL ASYNC option implemented.
 2 files changed, 39 insertions(+), 8 deletions(-)

antirez in commit 1f26a94:
 Lazyfree: pending objects count in INFO output.
 3 files changed, 10 insertions(+), 2 deletions(-)

antirez in commit c69c6c8:
 Lazyfree: ability to free whole DBs in background.
 7 files changed, 106 insertions(+), 14 deletions(-)

antirez in commit b08c36c:
 Lazyfree: keep count of objects to free.
 2 files changed, 11 insertions(+), 3 deletions(-)

antirez in commit c7b46a4:
 zmalloc.c converted to use atomicvar.h.
 1 file changed, 5 insertions(+), 33 deletions(-)

antirez in commit 7e5d690:
 Atomic vars implemented in a more general way.
 1 file changed, 94 insertions(+)

antirez in commit 7af4eeb:
 Lazyfree: incremental removed, only threaded survived.
 3 files changed, 24 insertions(+), 191 deletions(-)

antirez in commit 9253d85:
 Threaded lazyfree WIP #1.
 5 files changed, 36 insertions(+), 8 deletions(-)

antirez in commit 4d50d69:
 bio.c: new API bioWaitStepOfType().
 2 files changed, 32 insertions(+), 5 deletions(-)

antirez in commit 5b850d7:
 Test: stack_logging var should be initialized to 0.
 1 file changed, 1 insertion(+)

antirez in commit 1dab60d:
 Hash new implementation memleaks fixed.
 2 files changed, 52 insertions(+), 12 deletions(-)

antirez in commit 97ba4e3:
 Lazyfree: Hash converted to use plain SDS WIP 5.
 3 files changed, 30 insertions(+), 34 deletions(-)

antirez in commit 36be34b:
 Test: support for stack logging for OSX malloc/leaks.
 2 files changed, 7 insertions(+)

antirez in commit 974514b:
 Lazyfree: Hash converted to use plain SDS WIP 4.
 9 files changed, 76 insertions(+), 70 deletions(-)

antirez in commit 4a18352:
 Lazyfree: Hash converted to use plain SDS WIP 3.
 2 files changed, 20 insertions(+), 29 deletions(-)

antirez in commit 777396a:
 Lazyfree: Hash converted to use plain SDS WIP 2.
 4 files changed, 64 insertions(+), 37 deletions(-)

antirez in commit 1c24755:
 Lazyfree: Hash converted to use plain SDS WIP 1.
 5 files changed, 188 insertions(+), 163 deletions(-)

antirez in commit afc4b92:
 DEBUG DIGEST Set type memory leak fixed.
 1 file changed, 1 insertion(+)

antirez in commit 34e489c:
 SORT memory leak fixed.
 1 file changed, 3 insertions(+), 3 deletions(-)

antirez in commit a7c5be1:
 Lazyfree: Sorted sets convereted to plain SDS. (several commits squashed)
 10 files changed, 306 insertions(+), 266 deletions(-)

antirez in commit 86d48ef:
 Lazyfree: Convert Sets to use plains SDS (several commits squashed).
 9 files changed, 183 insertions(+), 163 deletions(-)

antirez in commit 4ff3c17:
 Lazyfree: client output buffers no longer use Redis Objects.
 2 files changed, 72 insertions(+), 97 deletions(-)

antirez in commit 0c05436:
 Lazyfree: a first implementation of non blocking DEL.
 8 files changed, 341 insertions(+), 53 deletions(-)

antirez in commit 712ea72:
 Call writeToClient() directly instead of the write handler.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 01c08b5:
 Fix processEventsWhileBlocked() to handle PENDING_WRITE clients.
 2 files changed, 7 insertions(+), 3 deletions(-)

antirez in commit 1e71538:
 Refactoring: unlinkClient() added to lower freeClient() complexity.
 3 files changed, 48 insertions(+), 51 deletions(-)

antirez in commit fdb3be9:
 Refactoring: new function to test if client has pending output.
 3 files changed, 17 insertions(+), 8 deletions(-)

antirez in commit 825f65d:
 Reverse list of clients with pending writes.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 063ecbd:
 writeToClient(): don't remove write handler if not needed.
 1 file changed, 4 insertions(+), 4 deletions(-)

antirez in commit b741a90:
 handleClientsWithPendingWrites(): detect dead clients.
 1 file changed, 17 insertions(+), 7 deletions(-)

antirez in commit 481a0db:
 Move handleClientsWithPendingWrites() in networking.c.
 3 files changed, 29 insertions(+), 28 deletions(-)

antirez in commit 1c7d87d:
 Avoid installing the client write handler when possible.
 4 files changed, 56 insertions(+), 7 deletions(-)

antirez in commit d1b6a17:
 redis-cli pipe mode: don't stay in the write loop forever.
 1 file changed, 6 insertions(+), 1 deletion(-)

antirez in commit 622366a:
 Mark version of unstable branch in an unique way.
 1 file changed, 1 insertion(+), 1 deletion(-)

Sebastian Waisbrot in commit 97a2248:
 Fix race condition in unit/introspection
 1 file changed, 4 insertions(+), 3 deletions(-)

Adam Baldwin in commit 45fa113:
 Removed dofile() from Lua
 1 file changed, 2 insertions(+)

Migrating from 3.2 to 4.0
=========================

Redis 3.2 is mostly a strict subset of 4.0, you should not have any problem
upgrading your application from 3.2 to 4.0. However this is a list of small
non-backward compatible changes introduced in the 4.0 release:

* Writable slaves do not propagate writes to their sub-slaves, so writes to
  writable slaves remain just local.
* The RDB format changed. Redis 4.0 is still able to read 3.2 (and all the
  past versions) files, but not the other way around.
* Certain log formats and sentences are different in Redis 4.0.
* Certain INFO fields, especially related to replication, are now different.

--------------------------------------------------------------------------------

Credits: For each release, a list of changes with the relative author is
provided. Where not specified the implementation and design is done by
Salvatore Sanfilippo. Thanks to Redis Labs for making all this possible.
Also many thanks to all the other contributors and the amazing community
we have.

Commit messages may contain additional credits.

Enjoy,
Salvatore