summaryrefslogtreecommitdiff
path: root/00-RELEASENOTES
blob: 9acc5f3444213f8729ea6118279d9cad95ae3995 (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
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
Redis 6.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.
SECURITY: There are security fixes in the release.
--------------------------------------------------------------------------------


================================================================================
Redis 6.0.19 Released Mon Apr 17 16:00:00 IST 2023
================================================================================

Upgrade urgency: SECURITY, contains fixes to security issues.

Security Fixes:
* (CVE-2023-28856) Authenticated users can use the HINCRBYFLOAT command to create
  an invalid hash field that will crash Redis on access


Bug Fixes
=========

* Fix CLIENT REPLY OFF|SKIP to not silence push notifications (#11875)


================================================================================
Redis 6.0.18 Released Tue Feb 28 12:00:00 IST 2023
================================================================================

Upgrade urgency: SECURITY, contains fixes to security issues.

Security Fixes:
* (CVE-2023-25155) Specially crafted SRANDMEMBER, ZRANDMEMBER, and HRANDFIELD
  commands can trigger an integer overflow, resulting in a runtime assertion
  and termination of the Redis server process.
* (CVE-2022-36021) String matching commands (like SCAN or KEYS) with a specially
  crafted pattern to trigger a denial-of-service attack on Redis, causing it to
  hang and consume 100% CPU time.

Bug Fixes
=========

* Make sure that fork child doesn't do incremental rehashing (#11692)
* Fix cluster inbound link keepalive time (#11785)

================================================================================
Redis 6.0.17 Released Tue Jan 17 12:00:00 IDT 2023
================================================================================

Upgrade urgency: SECURITY, contains fixes to security issues.

Security Fixes:
* (CVE-2022-35977) Integer overflow in the Redis SETRANGE and SORT/SORT_RO
  commands can drive Redis to OOM panic

Bug Fixes
=========

* Avoid hang when client issues long SRANDMEMBER command and gets
  disconnected by client output buffer limit (#11676)
* Lua: fix crash on a script call with many arguments, a regression in v6.0.16 (#9809)
* Lua: Add checks for min-slave-* configs when evaluating Lua scripts (#10160)
* Fix BITFIELD overflow detection on some compilers due to undefined behavior (#9601)

================================================================================
Redis 6.0.16 Released Mon Oct 4 12:00:00 IDT 2021
================================================================================

Upgrade urgency: SECURITY, contains fixes to security issues.

Security Fixes:
* (CVE-2021-41099) Integer to heap buffer overflow handling certain string
  commands and network payloads, when proto-max-bulk-len is manually configured
  to a non-default, very large value [reported by yiyuaner].
* (CVE-2021-32762) Integer to heap buffer overflow issue in redis-cli and
  redis-sentinel parsing large multi-bulk replies on some older and less common
  platforms [reported by Microsoft Vulnerability Research].
* (CVE-2021-32687) Integer to heap buffer overflow with intsets, when
  set-max-intset-entries is manually configured to a non-default, very large
  value [reported by Pawel Wieczorkiewicz, AWS].
* (CVE-2021-32675) Denial Of Service when processing RESP request payloads with
  a large number of elements on many connections.
* (CVE-2021-32672) Random heap reading issue with Lua Debugger [reported by
  Meir Shpilraien].
* (CVE-2021-32628) Integer to heap buffer overflow handling ziplist-encoded
  data types, when configuring a large, non-default value for
  hash-max-ziplist-entries, hash-max-ziplist-value, zset-max-ziplist-entries
  or zset-max-ziplist-value [reported by sundb].
* (CVE-2021-32627) Integer to heap buffer overflow issue with streams, when
  configuring a non-default, large value for proto-max-bulk-len and
  client-query-buffer-limit [reported by sundb].
* (CVE-2021-32626) Specially crafted Lua scripts may result with Heap buffer
  overflow [reported by Meir Shpilraien].

Other bug fixes:
* Fix appendfsync to always guarantee fsync before reply, on MacOS and FreeBSD (kqueue) (#9416)
* Fix the wrong mis-detection of sync_file_range system call, affecting performance (#9371)
* Fix replication issues when repl-diskless-load is used (#9280)

================================================================================
Redis 6.0.15 Released Wed Jul 21 16:32:19 IDT 2021
================================================================================

Upgrade urgency: SECURITY, contains fixes to security issues that affect
authenticated client connections on 32-bit versions. MODERATE otherwise.

Fix integer overflow in BITFIELD on 32-bit versions (CVE-2021-32761).
An integer overflow bug in Redis version 2.2 or newer can be exploited using the
BITFIELD command to corrupt the heap and potentially result with remote code
execution.

Bug fixes that involve behavior changes:
* Change reply type for ZPOPMAX/MIN with count in RESP3 to nested array (#8981).
  Was using a flat array like in RESP2 instead of a nested array like ZRANGE does.

Bug fixes:
* Fail EXEC command in case a watched key is expired (#9194)
* Fix SMOVE not to invalidate dest key (WATCH and tracking) when member already exists (#9244)
* Fix SINTERSTORE not to delete dest key when getting a wrong type error (#9032)
* Fix overflows on 32-bit versions in GETBIT, SETBIT, BITCOUNT, BITPOS, and BITFIELD (#9191)
* Set TCP keepalive on inbound cluster bus connections (#9230)
* Fix ziplist length updates on big-endian platforms (#2080)
* Fix diskless replica loading to recover from RDB short read on module AUX data (#9199)
* Fix race in client side tracking (#9116)
* If diskless repl child is killed, make sure to reap the child pid (#7742)
* Add a timeout mechanism for replicas stuck in fullsync (#8762)

CLI tools:
* redis-cli cluster import support source and target that require auth (#7994)
* redis-cli cluster import command may issue wrong MIGRATE command, sending COPY instead of REPLACE (#8945)
* redis-cli support for RESP3 set type in CSV and RAW output (#7338)

================================================================================
Redis 6.0.14 Released Tue June 1 12:00:00 IST 2021
================================================================================

Upgrade urgency: SECURITY, Contains fixes to security issues that affect
authenticated client connections. MODERATE otherwise.

Fix integer overflow in STRALGO LCS (CVE-2021-32625)
An integer overflow bug in Redis version 6.0 or newer can be exploited using the
STRALGO LCS command to corrupt the heap and potentially result with remote code
execution. This is a result of an incomplete fix by CVE-2021-29477.

Other bug fixes:
* Fix crash in UNLINK on a stream key with deleted consumer groups (#8932)
* SINTERSTORE: Add missing keyspace del event when none of the sources exist (#8949)

================================================================================
Redis 6.0.13 Released Mon May 3 19:00:00 IST 2021
================================================================================

Upgrade urgency: SECURITY, Contains fixes to security issues that affect
authenticated client connections. LOW otherwise.

Integer overflow in STRALGO LCS command (CVE-2021-29477):
An integer overflow bug in Redis version 6.0 or newer could be exploited using
the STRALGO LCS command to corrupt the heap and potentially result in remote
code execution. The integer overflow bug exists in all versions of Redis
starting with 6.0.

Integer overflow in COPY command for large intsets (CVE-2021-29478):
An integer overflow bug in Redis 6.2 could be exploited to corrupt the heap and
potentially result with remote code execution. The vulnerability involves
changing the default set-max-intset-entries configuration value, creating a
large set key that consists of integer values and using the COPY command to
duplicate it. The integer overflow bug exists in all versions of Redis starting
with 2.6, where it could result with a corrupted RDB or DUMP payload, but not
exploited through COPY (which did not exist before 6.2).

Bug fixes:
* Cluster: Skip unnecessary check which may prevent failure detection (#8585)
* Fix not starting on alpine/libmusl without IPv6 (#8655)

Improvements:
* Fix performance regression in BRPOP on Redis 6.0 (#8689)

Modules:
* Fix edge-case when a module client is unblocked (#8618)

================================================================================
Redis 6.0.12     Released Mon Mar  1 17:29:52 IST 2021
================================================================================

Upgrade urgency: LOW, fixes a compilation issue.

Bug fixes:
* Fix compilation error on non-glibc systems if jemalloc is not used (#8533)

================================================================================
Redis 6.0.11     Released Mon Feb 22 16:13:23 IST 2021
================================================================================

Upgrade urgency: SECURITY if you use 32bit build of redis (see bellow), LOW
otherwise.

Integer overflow on 32-bit systems (CVE-2021-21309):
Redis 4.0 or newer uses a configurable limit for the maximum supported bulk
input size. By default, it is 512MB which is a safe value for all platforms.
If the limit is significantly increased, receiving a large request from a client
may trigger several integer overflow scenarios, which would result with buffer
overflow and heap corruption.

Bug fixes:
* Avoid 32-bit overflows when proto-max-bulk-len is set high (#8522)
* Fix handling of threaded IO and CLIENT PAUSE (failover), could lead to data loss or a crash (#8520)
* Fix the selection of a random element from large hash tables (#8133)
* Fix broken protocol in client tracking tracking-redir-broken message (#8456)
* XINFO able to access expired keys on a replica (#8436)
* Fix broken protocol in redis-benchmark when used with -a or --dbnum (#8486)
* Avoid assertions (on older kernels) when testing arm64 CoW bug (#8405)
* CONFIG REWRITE should honor umask settings (#8371)
* Fix firstkey,lastkey,step in COMMAND command for some commands (#8367)

Modules:
* RM_ZsetRem: Delete key if empty, the bug could leave empty zset keys (#8453)

================================================================================
Redis 6.0.10     Released Tue Jan 12 16:20:20 IST 2021
================================================================================

Upgrade urgency MODERATE: several bugs with moderate impact are fixed,
Here is a comprehensive list of changes in this release compared to 6.0.9.

Command behavior changes:
* SWAPDB invalidates WATCHed keys (#8239)
* SORT command behaves differently when used on a writable replica (#8283)
* EXISTS should not alter LRU (#8016)
  In Redis 5.0 and 6.0 it would have touched the LRU/LFU of the key.
* OBJECT should not reveal logically expired keys (#8016)
  Will now behave the same TYPE or any other non-DEBUG command.
* GEORADIUS[BYMEMBER] can fail with -OOM if Redis is over the memory limit (#8107)

Other behavior changes:
* Sentinel: Fix missing updates to the config file after SENTINEL SET command (#8229)
* CONFIG REWRITE is atomic and safer, but requires write access to the config file's folder (#7824, #8051)
  This change was already present in 6.0.9, but was missing from the release notes.

Bug fixes with compatibility implications (bugs introduced in Redis 6.0):
* Fix RDB CRC64 checksum on big-endian systems (#8270)
  If you're using big-endian please consider the compatibility implications with
  RESTORE, replication and persistence.
* Fix wrong order of key/value in Lua's map response (#8266)
  If your scripts use redis.setresp() or return a map (new in Redis 6.0), please
  consider the implications.

Bug fixes:
* Fix an issue where a forked process deletes the parent's pidfile (#8231)
* Fix crashes when enabling io-threads-do-reads (#8230)
* Fix a crash in redis-cli after executing cluster backup (#8267)
* Handle output buffer limits for module blocked clients (#8141)
  Could result in a module sending reply to a blocked client to go beyond the limit.
* Fix setproctitle related crashes. (#8150, #8088)
  Caused various crashes on startup, mainly on Apple M1 chips or under instrumentation.
* Backup/restore cluster mode keys to slots map for repl-diskless-load=swapdb (#8108)
  In cluster mode with repl-diskless-load, when loading failed, slot map wouldn't
  have been restored.
* Fix oom-score-adj-values range, and bug when used in config file (#8046)
  Enabling setting this in the config file in a line after enabling it, would
  have been buggy.
* Reset average ttl when empty databases (#8106)
  Just causing misleading metric in INFO
* Disable rehash when Redis has child process (#8007)
  This could have caused excessive CoW during BGSAVE, replication or AOFRW.
* Further improved ACL algorithm for picking categories (#7966)
  Output of ACL GETUSER is now more similar to the one provided by ACL SETUSER.
* Fix bug with module GIL being released prematurely (#8061)
  Could in theory (and rarely) cause multi-threaded modules to corrupt memory.
* Reduce effect of client tracking causing feedback loop in key eviction (#8100)
* Fix cluster access to unaligned memory (SIGBUS on old ARM) (#7958)
* Fix saving of strings larger than 2GB into RDB files (#8306)

Additional improvements:
* Avoid wasteful transient memory allocation in certain cases (#8286, #5954)

Platform / toolchain support related improvements:
* Fix crash log registers output on ARM. (#8020)
* Add a check for an ARM64 Linux kernel bug (#8224)
  Due to the potential severity of this issue, Redis will print log warning on startup.
* Raspberry build fix. (#8095)

New configuration options:
* oom-score-adj-values config can now take absolute values (besides relative ones) (#8046)

Module related fixes:
* Moved RMAPI_FUNC_SUPPORTED so that it's usable (#8037)
* Improve timer accuracy (#7987)
* Allow '\0' inside of result of RM_CreateStringPrintf (#6260)

================================================================================
Redis 6.0.9     Released Mon Oct 26 10:37:47 IST 2020
================================================================================

Upgrade urgency: SECURITY if you use an affected platform (see below).
                 Otherwise the upgrade urgency is MODERATE.

This release fixes a potential heap overflow when using a heap allocator other
than jemalloc or glibc's malloc. See:
https://github.com/redis/redis/pull/7963

Other fixes in this release:

New:
* Memory reporting of clients argv (#7874)
* Add redis-cli control on raw format line delimiter (#7841)
* Add redis-cli support for rediss:// -u prefix (#7900)
* Get rss size support for NetBSD and DragonFlyBSD

Behavior changes:
* WATCH no longer ignores keys which have expired for MULTI/EXEC (#7920)
* Correct OBJECT ENCODING response for stream type (#7797)
* Allow blocked XREAD on a cluster replica (#7881)
* TLS: Do not require CA config if not used (#7862)

Bug fixes:
* INFO report real peak memory (before eviction) (#7894)
* Allow requirepass config to clear the password (#7899)
* Fix config rewrite file handling to make it really atomic (#7824)
* Fix excessive categories being displayed from ACLs (#7889)
* Add fsync in replica when full RDB payload was received (#7839)
* Don't write replies to socket when output buffer limit reached (#7202)
* Fix redis-check-rdb support for modules aux data (#7826)
* Other smaller bug fixes

Modules API:
* Add APIs for version and compatibility checks (#7865)
* Add RM_GetClientCertificate (#7866)
* Add RM_GetDetachedThreadSafeContext (#7886)
* Add RM_GetCommandKeys (#7884)
* Add Swapdb Module Event (#7804)
* RM_GetContextFlags provides indication of being in a fork child (#7783)
* RM_GetContextFlags document missing flags: MULTI_DIRTY, IS_CHILD (#7821)
* Expose real client on connection events (#7867)
* Minor improvements to module blocked on keys (#7903)

Full list of commits:

Yossi Gottlieb in commit ce0d74d8f:
 Fix wrong zmalloc_size() assumption. (#7963)
 1 file changed, 3 deletions(-)

Oran Agra in commit d3ef26822:
 Attempt to fix sporadic test failures due to wait_for_log_messages (#7955)
 1 file changed, 2 insertions(+)

David CARLIER in commit 76993a0d4:
 cpu affinity: DragonFlyBSD support (#7956)
 2 files changed, 9 insertions(+), 2 deletions(-)

Zach Fewtrell in commit b23cdc14a:
 fix invalid 'failover' identifier in cluster slave selection test (#7942)
 1 file changed, 1 insertion(+), 1 deletion(-)

WuYunlong in commit 99a4cb401:
 Update rdb_last_bgsave_time_sec in INFO on diskless replication (#7917)
 1 file changed, 11 insertions(+), 14 deletions(-)

Wen Hui in commit 258287c35:
 do not add save parameter during config rewrite in sentinel mode (#7945)
 1 file changed, 6 insertions(+)

Qu Chen in commit 6134279e2:
 WATCH no longer ignores keys which have expired for MULTI/EXEC. (#7920)
 2 files changed, 3 insertions(+), 3 deletions(-)

Oran Agra in commit d15ec67c6:
 improve verbose logging on failed test. print log file lines (#7938)
 1 file changed, 4 insertions(+)

Yossi Gottlieb in commit 8a2e6d24f:
 Add a --no-latency tests flag. (#7939)
 5 files changed, 23 insertions(+), 9 deletions(-)

filipe oliveira in commit 0a1737dc5:
 Fixed bug concerning redis-benchmark non clustered benchmark forcing always the same hash tag {tag} (#7931)
 1 file changed, 31 insertions(+), 24 deletions(-)

Oran Agra in commit 6d9b3df71:
 fix 32bit build warnings (#7926)
 2 files changed, 3 insertions(+), 3 deletions(-)

Wen Hui in commit ed6f7a55e:
 fix double fclose in aofrewrite (#7919)
 1 file changed, 6 insertions(+), 5 deletions(-)

Oran Agra in commit 331d73c92:
 INFO report peak memory before eviction (#7894)
 1 file changed, 11 insertions(+), 1 deletion(-)

Yossi Gottlieb in commit e88e13528:
 Fix tests failure on busybox systems. (#7916)
 2 files changed, 2 insertions(+), 2 deletions(-)

Oran Agra in commit b7f53738e:
 Allow requirepass config to clear the password (#7899)
 1 file changed, 18 insertions(+), 8 deletions(-)

Wang Yuan in commit 2ecb28b68:
 Remove temporary aof and rdb files in a background thread (#7905)
 2 files changed, 3 insertions(+), 3 deletions(-)

guybe7 in commit 7bc605e6b:
 Minor improvements to module blocked on keys (#7903)
 3 files changed, 15 insertions(+), 9 deletions(-)

Andreas Lind in commit 1b484608d:
 Support redis-cli -u rediss://... (#7900)
 1 file changed, 9 insertions(+), 1 deletion(-)

Yossi Gottlieb in commit 95095d680:
 Modules: fix RM_GetCommandKeys API. (#7901)
 3 files changed, 4 insertions(+), 7 deletions(-)

Meir Shpilraien (Spielrein) in commit cd3ae2f2c:
 Add Module API for version and compatibility checks (#7865)
 9 files changed, 180 insertions(+), 3 deletions(-)

Yossi Gottlieb in commit 1d723f734:
 Module API: Add RM_GetClientCertificate(). (#7866)
 6 files changed, 88 insertions(+)

Yossi Gottlieb in commit d72172752:
 Modules: Add RM_GetDetachedThreadSafeContext(). (#7886)
 4 files changed, 52 insertions(+), 2 deletions(-)

Yossi Gottlieb in commit e4f9aff19:
 Modules: add RM_GetCommandKeys().
 6 files changed, 238 insertions(+), 1 deletion(-)

Yossi Gottlieb in commit 6682b913e:
 Introduce getKeysResult for getKeysFromCommand.
 7 files changed, 170 insertions(+), 121 deletions(-)

Madelyn Olson in commit 9db65919c:
 Fixed excessive categories being displayed from acls (#7889)
 2 files changed, 29 insertions(+), 2 deletions(-)

Oran Agra in commit f34c50cf6:
 Add some additional signal info to the crash log (#7891)
 1 file changed, 4 insertions(+), 1 deletion(-)

Oran Agra in commit 300bb4701:
 Allow blocked XREAD on a cluster replica (#7881)
 3 files changed, 43 insertions(+)

Oran Agra in commit bc5cf0f1a:
 memory reporting of clients argv (#7874)
 5 files changed, 55 insertions(+), 5 deletions(-)

DvirDukhan in commit 13d2e6a57:
 redis-cli add control on raw format line delimiter (#7841)
 1 file changed, 8 insertions(+), 6 deletions(-)

Oran Agra in commit d54e25620:
 Include internal sds fragmentation in MEMORY reporting (#7864)
 2 files changed, 7 insertions(+), 7 deletions(-)

Oran Agra in commit ac2c2b74e:
 Fix crash in script timeout during AOF loading (#7870)
 2 files changed, 47 insertions(+), 4 deletions(-)

Rafi Einstein in commit 00d2082e7:
 Makefile: enable program suffixes via PROG_SUFFIX (#7868)
 2 files changed, 10 insertions(+), 6 deletions(-)

nitaicaro in commit d2c2c26e7:
 Fixed Tracking test “The other connection is able to get invalidations” (#7871)
 1 file changed, 3 insertions(+), 2 deletions(-)

Yossi Gottlieb in commit 2c172556f:
 Modules: expose real client on conn events.
 1 file changed, 11 insertions(+), 2 deletions(-)

Yossi Gottlieb in commit 2972d0c1f:
 Module API: Fail ineffective auth calls.
 1 file changed, 5 insertions(+)

Yossi Gottlieb in commit aeb2a3b6a:
 TLS: Do not require CA config if not used. (#7862)
 1 file changed, 5 insertions(+), 3 deletions(-)

Oran Agra in commit d8e64aeb8:
 warning: comparison between signed and unsigned integer in 32bit build (#7838)
 1 file changed, 2 insertions(+), 2 deletions(-)

David CARLIER in commit 151209982:
 Add support for Haiku OS (#7435)
 3 files changed, 16 insertions(+)

Gavrie Philipson in commit b1d3e169f:
 Fix typo in module API docs (#7861)
 1 file changed, 2 insertions(+), 2 deletions(-)

David CARLIER in commit 08e3b8d13:
 getting rss size implementation for netbsd (#7293)
 1 file changed, 20 insertions(+)

Oran Agra in commit 0377a889b:
 Fix new obuf-limits tests to work with TLS (#7848)
 2 files changed, 29 insertions(+), 13 deletions(-)

caozb in commit a057ad9b1:
 ignore slaveof no one in redis.conf (#7842)
 1 file changed, 10 insertions(+), 1 deletion(-)

Wang Yuan in commit 87ecee645:
 Don't support Gopher if enable io threads to read queries (#7851)
 2 files changed, 8 insertions(+), 5 deletions(-)

Wang Yuan in commit b92902236:
 Set 'loading' and 'shutdown_asap' to volatile sig_atomic_t type (#7845)
 1 file changed, 2 insertions(+), 2 deletions(-)

Uri Shachar in commit ee0875a02:
 Fix config rewrite file handling to make it really atomic (#7824)
 1 file changed, 49 insertions(+), 47 deletions(-)

WuYunlong in commit d577519e1:
 Add fsync to readSyncBulkPayload(). (#7839)
 1 file changed, 11 insertions(+)

Wen Hui in commit 104e0ea3e:
 rdb.c: handle fclose error case differently to avoid double fclose (#7307)
 1 file changed, 7 insertions(+), 6 deletions(-)

Wang Yuan in commit 0eb015ac6:
 Don't write replies if close the client ASAP (#7202)
 7 files changed, 144 insertions(+), 2 deletions(-)

Guy Korland in commit 08a03e32c:
 Fix RedisModule_HashGet examples (#6697)
 1 file changed, 4 insertions(+), 4 deletions(-)

Oran Agra in commit 09551645d:
 fix recently broken TLS build error, and add coverage for CI (#7833)
 2 files changed, 4 insertions(+), 3 deletions(-)

David CARLIER in commit c545ba5d0:
 Further NetBSD update and build fixes. (#7831)
 3 files changed, 72 insertions(+), 3 deletions(-)

WuYunlong in commit ec9050053:
 Fix redundancy use of semicolon in do-while macros in ziplist.c. (#7832)
 1 file changed, 3 insertions(+), 3 deletions(-)

yixiang in commit 27a4d1314:
 Fix connGetSocketError usage (#7811)
 2 files changed, 6 insertions(+), 4 deletions(-)

Oran Agra in commit 30795dcae:
 RM_GetContextFlags - document missing flags (#7821)
 1 file changed, 6 insertions(+)

Yossi Gottlieb in commit 14a12849f:
 Fix occasional hangs on replication reconnection. (#7830)
 2 files changed, 14 insertions(+), 3 deletions(-)

Ariel Shtul in commit d5a1b06dc:
 Fix redis-check-rdb support for modules aux data (#7826)
 3 files changed, 21 insertions(+), 1 deletion(-)

Wen Hui in commit 39f793693:
 refactor rewriteStreamObject code for adding missing streamIteratorStop call (#7829)
 1 file changed, 36 insertions(+), 18 deletions(-)

WuYunlong in commit faad29bfb:
 Make IO threads killable so that they can be canceled at any time.
 1 file changed, 1 insertion(+)

WuYunlong in commit b3f1b5830:
 Make main thread killable so that it can be canceled at any time. Refine comment of makeThreadKillable().
 3 files changed, 11 insertions(+), 4 deletions(-)

Oran Agra in commit 0f43d1f55:
 RM_GetContextFlags provides indication that we're in a fork child (#7783)
 8 files changed, 28 insertions(+), 18 deletions(-)

Wen Hui in commit a55ea9cdf:
 Add Swapdb Module Event (#7804)
 5 files changed, 52 insertions(+)

Daniel Dai in commit 1d8f72bef:
 fix make warnings in debug.c MacOS (#7805)
 2 files changed, 3 insertions(+), 2 deletions(-)

David CARLIER in commit 556953d93:
 debug.c: NetBSD build warning fix. (#7810)
 1 file changed, 4 insertions(+), 3 deletions(-)

Wang Yuan in commit d02435b66:
 Remove tmp rdb file in background thread (#7762)
 6 files changed, 82 insertions(+), 8 deletions(-)

Oran Agra in commit 1bd7bfdc0:
 Add printf attribute and fix warnings and a minor bug (#7803)
 2 files changed, 12 insertions(+), 4 deletions(-)

WuYunlong in commit d25147b4c:
 bio: doFastMemoryTest should try to kill io threads as well.
 3 files changed, 19 insertions(+)

WuYunlong in commit 4489ba081:
 bio: fix doFastMemoryTest.
 4 files changed, 25 insertions(+), 3 deletions(-)

Wen Hui in commit cf85def67:
 correct OBJECT ENCODING response for stream type (#7797)
 1 file changed, 1 insertion(+)

WuYunlong in commit cf5bcf892:
 Clarify help text of tcl scripts. (#7798)
 1 file changed, 1 insertion(+)

Mykhailo Pylyp in commit f72665c65:
 Recalculate hardcoded variables from $::instances_count in sentinel tests (#7561)
 3 files changed, 15 insertions(+), 13 deletions(-)

Oran Agra in commit c67b19e7a:
 Fix failing valgrind installation in github actions (#7792)
 1 file changed, 1 insertion(+)

Oran Agra in commit 92763fd2a:
 fix broken PEXPIREAT test (#7791)
 1 file changed, 10 insertions(+), 6 deletions(-)

Wang Yuan in commit f5b4c0ccb:
 Remove dead global variable 'lru_clock' (#7782)
 1 file changed, 1 deletion(-)

Oran Agra in commit 82d431fd6:
 Squash merging 125 typo/grammar/comment/doc PRs (#7773)
 80 files changed, 436 insertions(+), 416 deletions(-)

================================================================================
Redis 6.0.8     Released Wed Sep 09 23:34:17 IDT 2020
================================================================================

Upgrade urgency HIGH: Anyone who's using Redis 6.0.7 with Sentinel or
CONFIG REWRITE command is affected and should upgrade ASAP, see #7760.

Bug fixes:

* CONFIG REWRITE after setting oom-score-adj-values either via CONFIG SET or
  loading it from a config file, will generate a corrupt config file that will
  cause Redis to fail to start
* Fix issue with redis-cli --pipe on MacOS
* Fix RESP3 response for HKEYS/HVALS on non-existing key
* Various small bug fixes

New features / Changes:

* Remove THP warning when set to madvise
* Allow EXEC with read commands on readonly replica in cluster
* Add masters/replicas options to redis-cli --cluster call command

Module API:

* Add RedisModule_ThreadSafeContextTryLock

Full list of commits:

Oran Agra in commit cdabf696a:
 Fix RESP3 response for HKEYS/HVALS on non-existing key
 1 file changed, 3 insertions(+), 1 deletion(-)

Oran Agra in commit ec633c716:
 Fix leak in new blockedclient module API test
 1 file changed, 3 insertions(+)

Yossi Gottlieb in commit 6bac07c5c:
 Tests: fix oom-score-adj false positives. (#7772)
 1 file changed, 1 insertion(+), 1 deletion(-)

杨博东 in commit 6043dc614:
 Tests: Add aclfile load and save tests (#7765)
 2 files changed, 41 insertions(+)

Roi Lipman in commit c0b5f9bf0:
 RM_ThreadSafeContextTryLock a non-blocking method for acquiring GIL (#7738)
 7 files changed, 122 insertions(+), 1 deletion(-)

Yossi Gottlieb in commit 5780a1599:
 Tests: validate CONFIG REWRITE for all params. (#7764)
 6 files changed, 43 insertions(+), 6 deletions(-)

Oran Agra in commit e3c14b25d:
 Change THP warning to use madvise rather than never (#7771)
 1 file changed, 1 insertion(+), 1 deletion(-)

Itamar Haber in commit 28929917b:
 Documents RM_Call's fmt (#5448)
 1 file changed, 25 insertions(+)

Jan-Erik Rediger in commit 9146402c2:
 Check that THP is not set to always (madvise is ok) (#4001)
 1 file changed, 1 insertion(+), 1 deletion(-)

Yossi Gottlieb in commit d05089429:
 Tests: clean up stale .cli files. (#7768)
 1 file changed, 2 insertions(+)

Eran Liberty in commit 8861c1bae:
 Allow exec with read commands on readonly replica in cluster (#7766)
 3 files changed, 59 insertions(+), 3 deletions(-)

Yossi Gottlieb in commit 2cf2ff2f6:
 Fix CONFIG REWRITE of oom-score-adj-values. (#7761)
 1 file changed, 2 insertions(+), 1 deletion(-)

Oran Agra in commit 1386c80f7:
 handle cur_test for nested tests
 1 file changed, 3 insertions(+)

Oran Agra in commit c7d4945f0:
 Add daily CI for MacOS (#7759)
 1 file changed, 18 insertions(+)

bodong.ybd in commit 32548264c:
 Tests: Some fixes for macOS
 3 files changed, 26 insertions(+), 11 deletions(-)

Oran Agra in commit 1e17f9812:
 Fix cluster consistency-check test (#7754)
 1 file changed, 55 insertions(+), 29 deletions(-)

Yossi Gottlieb in commit f4ecdf86a:
 Tests: fix unmonitored servers. (#7756)
 1 file changed, 5 insertions(+)

Oran Agra in commit 9f020050d:
 fix broken cluster/sentinel tests by recent commit (#7752)
 1 file changed, 1 insertion(+), 1 deletion(-)

Oran Agra in commit fdbabb496:
 Improve valgrind support for cluster tests (#7725)
 3 files changed, 83 insertions(+), 23 deletions(-)

Oran Agra in commit 35a6a0bbc:
 test infra - add durable mode to work around test suite crashing
 3 files changed, 35 insertions(+), 3 deletions(-)

Oran Agra in commit e3136b13f:
 test infra - wait_done_loading
 2 files changed, 16 insertions(+), 36 deletions(-)

Oran Agra in commit 83c75dbd9:
 test infra - flushall between tests in external mode
 1 file changed, 1 insertion(+)

Oran Agra in commit 265f5d3cf:
 test infra - improve test skipping ability
 3 files changed, 91 insertions(+), 36 deletions(-)

Oran Agra in commit fcd3a9908:
 test infra - reduce disk space usage
 3 files changed, 33 insertions(+), 11 deletions(-)

Oran Agra in commit b6ea4699f:
 test infra - write test name to logfile
 3 files changed, 35 insertions(+)

Yossi Gottlieb in commit 4a4b07fc6:
 redis-cli: fix writeConn() buffer handling. (#7749)
 1 file changed, 37 insertions(+), 6 deletions(-)

Oran Agra in commit f2d08de2e:
 Print server startup messages after daemonization (#7743)
 1 file changed, 4 insertions(+), 4 deletions(-)

Thandayuthapani in commit 77541d555:
 Add masters/replicas options to redis-cli --cluster call command (#6491)
 1 file changed, 13 insertions(+), 2 deletions(-)

Oran Agra in commit 91d13a854:
 fix README about BUILD_WITH_SYSTEMD usage (#7739)
 1 file changed, 1 insertion(+), 1 deletion(-)

Yossi Gottlieb in commit 88d03d965:
 Fix double-make issue with make && make install. (#7734)
 1 file changed, 2 insertions(+)

================================================================================
Redis 6.0.7     Released Fri Aug 28 11:05:09 IDT 2020
================================================================================

Upgrade urgency MODERATE: several bugs with moderate impact are fixed,
Specifically the first two listed below which cause protocol errors for clients.

Bug fixes:

* CONFIG SET could hung the client when arrives during RDB/ROF loading (When
  processed after another command that was also rejected with -LOADING error)
* LPOS command when RANK is greater than matches responded wiht broken protocol
  (negative multi-bulk count)
* UNLINK / Lazyfree for stream type key would have never do async freeing
* PERSIST should invalidate WATCH (Like EXPIRE does)
* EXEC with only read commands could have be rejected when OOM
* TLS: relax verification on CONFIG SET (Don't error if some configs are set
  and tls isn't enabled)
* TLS: support cluster/replication without tls-port
* Systemd startup after network is online
* Redis-benchmark improvements
* Various small bug fixes

New features:

* Add oom-score-adj configuration option to control Linux OOM killer
* Show IO threads statistics and status in INFO output
* Add optional tls verification mode (see tls-auth-clients)

Module API:

* Add RedisModule_HoldString
* Add loaded keyspace event
* Fix RedisModuleEvent_LoadingProgress
* Fix RedisModuleEvent_MasterLinkChange hook missing on successful psync
* Fix missing RM_CLIENTINFO_FLAG_SSL
* Refactor redismodule.h for use with -fno-common / extern

Full list of commits:

Oran Agra in commit c26394e4f:
 Reduce the probability of failure when start redis in runtest-cluster #7554 (#7635)
 1 file changed, 23 insertions(+), 5 deletions(-)

Leoš Literák in commit 745d5e802:
 Update README.md with instructions how to build with systemd support (#7730)
 1 file changed, 5 insertions(+)

Yossi Gottlieb in commit 03f1d208a:
 Fix oom-score-adj on older distros. (#7724)
 1 file changed, 2 insertions(+), 2 deletions(-)

Yossi Gottlieb in commit 941174d9c:
 Backport Lua 5.2.2 stack overflow fix. (#7733)
 1 file changed, 1 insertion(+), 1 deletion(-)

Wang Yuan in commit c897dba14:
 Fix wrong format specifiers of 'sdscatfmt' for the INFO command (#7706)
 1 file changed, 1 insertion(+), 1 deletion(-)

Wen Hui in commit 5e3fab5e7:
 fix make warnings (#7692)
 1 file changed, 4 insertions(+), 3 deletions(-)

Nathan Scott in commit a2b09c13f:
 Annotate module API functions in redismodule.h for use with -fno-common (#6900)
 1 file changed, 265 insertions(+), 241 deletions(-)

Yossi Gottlieb in commit bf244273f:
 Add oom-score-adj configuration option to control Linux OOM killer. (#1690)
 8 files changed, 306 insertions(+), 1 deletion(-)

Meir Shpilraien (Spielrein) in commit b5a6ab98f:
 see #7544, added RedisModule_HoldString api. (#7577)
 4 files changed, 83 insertions(+), 8 deletions(-)

ShooterIT in commit ff04cf62b:
 [Redis-benchmark] Remove zrem test, add zpopmin test
 1 file changed, 5 insertions(+), 5 deletions(-)

ShooterIT in commit 0f3260f31:
 [Redis-benchmark] Support zset type
 1 file changed, 16 insertions(+)

Arun Ranganathan in commit 45d0b94fc:
 Show threading configuration in INFO output (#7446)
 3 files changed, 46 insertions(+), 14 deletions(-)

Meir Shpilraien (Spielrein) in commit a22f61e12:
 This PR introduces a new loaded keyspace event (#7536)
 8 files changed, 135 insertions(+), 4 deletions(-)

Oran Agra in commit 1c9ca1030:
 Fix rejectCommand trims newline in shared error objects, hung clients (#7714)
 4 files changed, 42 insertions(+), 23 deletions(-)

valentinogeron in commit 217471795:
 EXEC with only read commands should not be rejected when OOM (#7696)
 2 files changed, 51 insertions(+), 8 deletions(-)

Itamar Haber in commit 6e6c47d16:
 Expands lazyfree's effort estimate to include Streams (#5794)
 1 file changed, 24 insertions(+)

Yossi Gottlieb in commit da6813623:
 Add language servers stuff, test/tls to gitignore. (#7698)
 1 file changed, 4 insertions(+)

Valentino Geron in commit de7fb126e:
 Assert that setDeferredAggregateLen isn't called with negative value
 1 file changed, 1 insertion(+)

Valentino Geron in commit 6cf27f25f:
 Fix LPOS command when RANK is greater than matches
 2 files changed, 9 insertions(+), 2 deletions(-)

Yossi Gottlieb in commit 9bba54ace:
 Tests: fix redis-cli with remote hosts. (#7693)
 3 files changed, 5 insertions(+), 5 deletions(-)

huangzhw in commit 0fec2cb81:
 RedisModuleEvent_LoadingProgress always at 100% progress (#7685)
 1 file changed, 2 insertions(+), 2 deletions(-)

guybe7 in commit 931e19aa6:
 Modules: Invalidate saved_oparray after use (#7688)
 1 file changed, 2 insertions(+)

杨博东 in commit 6f2065570:
 Fix flock cluster config may cause failure to restart after kill -9 (#7674)
 4 files changed, 31 insertions(+), 7 deletions(-)

Raghav Muddur in commit 200149a2a:
 Update clusterMsgDataPublish to clusterMsgModule (#7682)
 1 file changed, 1 insertion(+), 1 deletion(-)

Madelyn Olson in commit 72daa1b4e:
 Fixed hset error since it's shared with hmset (#7678)
 1 file changed, 1 insertion(+), 1 deletion(-)

guybe7 in commit 3bf9ac994:
 PERSIST should signalModifiedKey (Like EXPIRE does) (#7671)
 1 file changed, 1 insertion(+)

Oran Agra in commit b37501684:
 OOM Crash log include size of allocation attempt. (#7670)
 1 file changed, 2 insertions(+), 1 deletion(-)

Wen Hui in commit 2136cb68f:
 [module] using predefined REDISMODULE_NO_EXPIRE in RM_GetExpire (#7669)
 1 file changed, 2 insertions(+), 1 deletion(-)

Oran Agra in commit f56aee4bc:
 Trim trailing spaces in error replies coming from rejectCommand (#7668)
 1 file changed, 5 insertions(+), 1 deletion(-)

Yossi Gottlieb in commit 012d7506a:
 Module API: fix missing RM_CLIENTINFO_FLAG_SSL. (#7666)
 6 files changed, 82 insertions(+), 1 deletion(-)

Yossi Gottlieb in commit a0adbc857:
 TLS: relax verification on CONFIG SET. (#7665)
 2 files changed, 24 insertions(+), 7 deletions(-)

Madelyn Olson in commit 2ef29715b:
 Fixed timer warning (#5953)
 1 file changed, 1 insertion(+), 1 deletion(-)

Wagner Francisco Mezaroba in commit b76f171f5:
 allow --pattern to be used along with --bigkeys (#3586)
 1 file changed, 9 insertions(+), 2 deletions(-)

zhaozhao.zz in commit cc7b57765:
 redis-benchmark: fix wrong random key for hset (#4895)
 1 file changed, 1 insertion(+), 1 deletion(-)

zhaozhao.zz in commit 479c1ba77:
 CLIENT_MASTER should ignore server.proto_max_bulk_len
 1 file changed, 2 insertions(+), 1 deletion(-)

zhaozhao.zz in commit f61ce8a52:
 config: proto-max-bulk-len must be 1mb or greater
 2 files changed, 2 insertions(+), 2 deletions(-)

zhaozhao.zz in commit 0350f597a:
 using proto-max-bulk-len in checkStringLength for SETRANGE and APPEND
 1 file changed, 2 insertions(+), 2 deletions(-)

YoongHM in commit eea63548d:
 Start redis after network is online (#7639)
 1 file changed, 2 insertions(+)

Yossi Gottlieb in commit aef6d74fb:
 Run daily workflow on main repo only (no forks). (#7646)
 1 file changed, 7 insertions(+)

WuYunlong in commit 917b4d241:
 see #7250, fix signature of RedisModule_DeauthenticateAndCloseClient (#7645)
 1 file changed, 1 insertion(+), 1 deletion(-)

Wang Yuan in commit efab7fd54:
 Print error info if failed opening config file (#6943)
 1 file changed, 2 insertions(+), 1 deletion(-)

Wen Hui in commit 8c4468bcf:
 fix memory leak in ACLLoadFromFile error handling (#7623)
 1 file changed, 1 insertion(+)

Oran Agra in commit 89724e1d2:
 redis-cli --cluster-yes - negate force flag for clarity
 1 file changed, 9 insertions(+), 9 deletions(-)

Frank Meier in commit c813739af:
 reintroduce REDISCLI_CLUSTER_YES env variable in redis-cli
 1 file changed, 6 insertions(+)

Frank Meier in commit 7e3b86c18:
 add force option to 'create-cluster create' script call (#7612)
 1 file changed, 6 insertions(+), 2 deletions(-)

Oran Agra in commit 3f7fa4312:
 fix new rdb test failing on timing issues (#7604)
 1 file changed, 2 insertions(+), 2 deletions(-)

Yossi Gottlieb in commit 417976d7a:
 Fix test-centos7-tls daily job. (#7598)
 1 file changed, 2 insertions(+), 2 deletions(-)

Oran Agra in commit c41818c51:
 module hook for master link up missing on successful psync (#7584)
 2 files changed, 22 insertions(+), 2 deletions(-)

Yossi Gottlieb in commit 6ef3fc185:
 CI: Add daily CentOS 7.x jobs. (#7582)
 1 file changed, 50 insertions(+), 4 deletions(-)

WuYunlong in commit 002c37482:
 Fix running single test 14-consistency-check.tcl (#7587)
 1 file changed, 1 insertion(+)

Yossi Gottlieb in commit 66cbbb6ad:
 Clarify  RM_BlockClient() error condition. (#6093)
 1 file changed, 9 insertions(+)

namtsui in commit 22aba2207:
 Avoid an out-of-bounds read in the redis-sentinel (#7443)
 1 file changed, 2 insertions(+), 2 deletions(-)

Wen Hui in commit af08887dc:
 Add SignalModifiedKey hook in XGROUP CREATE with MKSTREAM option (#7562)
 1 file changed, 1 insertion(+)

Wen Hui in commit a5e0a64b0:
 fix leak in error handling of debug populate command (#7062)
 1 file changed, 3 insertions(+), 4 deletions(-)

Yossi Gottlieb in commit cbfdfa231:
 Fix TLS cluster tests. (#7578)
 1 file changed, 4 insertions(+), 1 deletion(-)

Yossi Gottlieb in commit 6d5376d30:
 TLS: Propagate and handle SSL_new() failures. (#7576)
 4 files changed, 48 insertions(+), 6 deletions(-)

Oran Agra in commit a662cd577:
 Fix failing tests due to issues with wait_for_log_message (#7572)
 3 files changed, 38 insertions(+), 34 deletions(-)

Jiayuan Chen in commit 2786a4b5e:
 Add optional tls verification (#7502)
 6 files changed, 40 insertions(+), 5 deletions(-)

Oran Agra in commit 3ef3d3612:
 Daily github action: run cluster and sentinel tests with tls (#7575)
 1 file changed, 2 insertions(+), 2 deletions(-)

Yossi Gottlieb in commit f20f63322:
 TLS: support cluster/replication without tls-port.
 2 files changed, 5 insertions(+), 4 deletions(-)

grishaf in commit 3c9ae059d:
 Fix prepareForShutdown function declaration (#7566)
 1 file changed, 1 insertion(+), 1 deletion(-)

Oran Agra in commit 3f4803af9:
 Stabilize bgsave test that sometimes fails with valgrind (#7559)
 1 file changed, 20 insertions(+), 2 deletions(-)

Madelyn Olson in commit 1a3c51a1f:
 Properly reset errno for rdbLoad (#7542)
 1 file changed, 1 insertion(+)

Oran Agra in commit 92d80b13a:
 testsuite may leave servers alive on error (#7549)
 1 file changed, 3 insertions(+)

Yossi Gottlieb in commit 245582ba7:
 Tests: drop TCL 8.6 dependency. (#7548)
 1 file changed, 27 insertions(+), 22 deletions(-)

Oran Agra in commit f20e1ba2d:
 Fixes to release scripts (#7547)
 2 files changed, 2 insertions(+), 2 deletions(-)

Remi Collet in commit 60ff56993:
 Fix deprecated tail syntax in tests (#7543)
 1 file changed, 1 insertion(+), 1 deletion(-)

Wen Hui in commit 34e8541b9:
 Add missing calls to raxStop (#7532)
 4 files changed, 63 insertions(+), 19 deletions(-)

Wen Hui in commit 2f7bc5435:
 add missing caching command in client help (#7399)
 1 file changed, 1 insertion(+)

zhaozhao.zz in commit c15be9ffe:
 replication: need handle -NOPERM error after send ping (#7538)
 1 file changed, 1 insertion(+)

Scott Brenner in commit 1b29152c3:
 GitHub Actions workflows - use latest version of actions/checkout (#7534)
 2 files changed, 10 insertions(+), 10 deletions(-)

================================================================================
Redis 6.0.6     Released Mon Jul 20 09:31:30 IDT 2020
================================================================================

Upgrade urgency MODERATE: several bugs with moderate impact are fixed here.

The most important issues are listed here:

* Fix crash when enabling CLIENT TRACKING with prefix
* EXEC always fails with EXECABORT and multi-state is cleared
* RESTORE ABSTTL won't store expired keys into the db
* redis-cli better handling of non-pritable key names
* TLS: Ignore client cert when tls-auth-clients off
* Tracking: fix invalidation message on flush
* Notify systemd on Sentinel startup
* Fix crash on a misuse of STRALGO
* Few fixes in module API
* Fix a few rare leaks (STRALGO error misuse, Sentinel)
* Fix a possible invalid access in defrag of scripts (unlikely to cause real harm)

New features:

* LPOS command to search in a list
* Use user+pass for MIGRATE in redis-cli and redis-benchmark in cluster mode
* redis-cli support TLS for --pipe, --rdb and --replica options
* TLS: Session caching configuration support

And this is the full list of commits:

Itamar Haber in commit 50548cafc:
 Adds SHA256SUM to redis-stable tarball upload
 1 file changed, 1 insertion(+)

yoav-steinberg in commit 3a4c6684f:
 Support passing stack allocated module strings to moduleCreateArgvFromUserFormat (#7528)
 1 file changed, 4 insertions(+), 1 deletion(-)

Luke Palmer in commit 2fd0b2bd6:
 Send null for invalidate on flush (#7469)
 1 file changed, 14 insertions(+), 10 deletions(-)

dmurnane in commit c3c81e1a8:
 Notify systemd on sentinel startup (#7168)
 1 file changed, 4 insertions(+)

Developer-Ecosystem-Engineering in commit e2770f29b:
 Add registers dump support for Apple silicon (#7453)
 1 file changed, 54 insertions(+), 2 deletions(-)

Wen Hui in commit b068eae97:
 correct error msg for num connections reaching maxclients in cluster mode (#7444)
 1 file changed, 2 insertions(+), 2 deletions(-)

WuYunlong in commit e6169ae5c:
 Fix command help for unexpected options (#7476)
 6 files changed, 20 insertions(+), 3 deletions(-)

WuYunlong in commit abf08fc02:
 Refactor RM_KeyType() by using macro. (#7486)
 1 file changed, 1 insertion(+), 1 deletion(-)

Oran Agra in commit 11b83076a:
 diskless master disconnect replicas when rdb child failed (#7518)
 1 file changed, 6 insertions(+), 5 deletions(-)

Oran Agra in commit 8f27f2f7d:
 redis-cli tests, fix valgrind timing issue (#7519)
 1 file changed, 1 insertion(+), 1 deletion(-)

WuYunlong in commit 180b588e8:
 Fix out of update help info in tcl tests. (#7516)
 1 file changed, 2 deletions(-)

Qu Chen in commit 417c60bdc:
 Replica always reports master's config epoch in CLUSTER NODES output. (#7235)
 1 file changed, 5 insertions(+), 1 deletion(-)

Oran Agra in commit 72a242419:
 RESTORE ABSTTL skip expired keys - leak (#7511)
 1 file changed, 1 insertion(+)

Oran Agra in commit 2ca45239f:
 fix recently added time sensitive tests failing with valgrind (#7512)
 2 files changed, 12 insertions(+), 6 deletions(-)

Oran Agra in commit 123dc8b21:
 runtest --stop pause stops before terminating the redis server (#7513)
 2 files changed, 8 insertions(+), 2 deletions(-)

Oran Agra in commit a6added45:
 update release scripts for new hosts, and CI to run more tests (#7480)
 5 files changed, 68 insertions(+), 26 deletions(-)

jimgreen2013 in commit cf4869f9e:
 fix description about ziplist, the code is ok (#6318)
 1 file changed, 2 insertions(+), 2 deletions(-)

马永泽 in commit d548f219b:
 fix benchmark in cluster mode fails to authenticate (#7488)
 1 file changed, 56 insertions(+), 40 deletions(-)

Abhishek Soni in commit e58eb7b89:
 fix: typo in CI job name (#7466)
 1 file changed, 1 insertion(+), 1 deletion(-)

Jiayuan Chen in commit 6def10a2b:
 Fix typo in deps README (#7500)
 1 file changed, 1 insertion(+), 1 deletion(-)

WuYunlong in commit 8af61afef:
 Add missing latency-monitor tcl test to test_helper.tcl. (#6782)
 1 file changed, 1 insertion(+)

Yossi Gottlieb in commit a419f400e:
 TLS: Session caching configuration support. (#7420)
 6 files changed, 56 insertions(+), 16 deletions(-)

Yossi Gottlieb in commit 2e4bb2667:
 TLS: Ignore client cert when tls-auth-clients off. (#7457)
 1 file changed, 1 insertion(+), 3 deletions(-)

James Hilliard in commit f0b1aee9e:
 Use pkg-config to properly detect libssl and libcrypto libraries (#7452)
 1 file changed, 15 insertions(+), 3 deletions(-)

Yossi Gottlieb in commit e92b99564:
 TLS: Add missing redis-cli options. (#7456)
 3 files changed, 166 insertions(+), 52 deletions(-)

Oran Agra in commit 1f3db5bf5:
 redis-cli --hotkeys fixed to handle non-printable key names
 1 file changed, 11 insertions(+), 5 deletions(-)

Oran Agra in commit c3044f369:
 redis-cli --bigkeys fixed to handle non-printable key names
 1 file changed, 24 insertions(+), 16 deletions(-)

Oran Agra in commit b3f75527b:
 RESTORE ABSTTL won't store expired keys into the db (#7472)
 4 files changed, 46 insertions(+), 16 deletions(-)

huangzhw in commit 6f87fc92f:
 defrag.c activeDefragSdsListAndDict when defrag sdsele, We can't use (#7492)
 1 file changed, 1 insertion(+), 1 deletion(-)

Oran Agra in commit d8e6a3e5b:
 skip a test that uses +inf on valgrind (#7440)
 1 file changed, 12 insertions(+), 9 deletions(-)

Oran Agra in commit 28fd1a110:
 stabilize tests that look for log lines (#7367)
 3 files changed, 33 insertions(+), 11 deletions(-)

Oran Agra in commit a513b4ed9:
 tests/valgrind: don't use debug restart (#7404)
 4 files changed, 114 insertions(+), 57 deletions(-)

Oran Agra in commit 70e72fc1b:
 change references to the github repo location (#7479)
 5 files changed, 7 insertions(+), 7 deletions(-)

zhaozhao.zz in commit c63e533cc:
 BITOP: propagate only when it really SET or DEL targetkey (#5783)
 1 file changed, 2 insertions(+), 1 deletion(-)

antirez in commit 31040ff54:
 Update comment to clarify change in #7398.
 1 file changed, 4 insertions(+), 1 deletion(-)

antirez in commit b605fe827:
 LPOS: option FIRST renamed RANK.
 2 files changed, 19 insertions(+), 19 deletions(-)

Dave Nielsen in commit 8deb24954:
 updated copyright year
 1 file changed, 1 insertion(+), 1 deletion(-)

Oran Agra in commit a61c2930c:
 EXEC always fails with EXECABORT and multi-state is cleared
 6 files changed, 204 insertions(+), 91 deletions(-)

antirez in commit 3c8041637:
 Include cluster.h for getClusterConnectionsCount().
 1 file changed, 1 insertion(+)

antirez in commit 5be673ee8:
 Fix BITFIELD i64 type handling, see #7417.
 1 file changed, 8 insertions(+), 6 deletions(-)

antirez in commit 5f289df9b:
 Clarify maxclients and cluster in conf. Remove myself too.
 2 files changed, 9 insertions(+), 1 deletion(-)

hwware in commit 000f928d6:
 fix memory leak in sentinel connection sharing
 1 file changed, 1 insertion(+)

chenhui0212 in commit d9a3c0171:
 Fix comments in function raxLowWalk of listpack.c
 1 file changed, 2 insertions(+), 2 deletions(-)

Tomasz Poradowski in commit 7526e4506:
 ensure SHUTDOWN_NOSAVE in Sentinel mode
 2 files changed, 9 insertions(+), 8 deletions(-)

chenhui0212 in commit 6487cbc33:
 fix comments in listpack.c
 1 file changed, 2 insertions(+), 2 deletions(-)

antirez in commit 69b66bfca:
 Use cluster connections too, to limit maxclients.
 3 files changed, 23 insertions(+), 8 deletions(-)

antirez in commit 5a960a033:
 Tracking: fix enableBcastTrackingForPrefix() invalid sdslen() call.
 1 file changed, 1 insertion(+), 1 deletion(-)

root in commit 1c2e50de3:
 cluster.c remove if of clusterSendFail in markNodeAsFailingIfNeeded
 1 file changed, 1 insertion(+), 1 deletion(-)

meir@redislabs.com in commit 040efb697:
 Fix RM_ScanKey module api not to return int encoded strings
 3 files changed, 24 insertions(+), 7 deletions(-)

antirez in commit 1b8b7941d:
 Fix LCS object type checking. Related to #7379.
 1 file changed, 17 insertions(+), 10 deletions(-)

hwware in commit 6b571b45a:
 fix memory leak
 1 file changed, 11 insertions(+), 12 deletions(-)

hwware in commit 674759062:
 fix server crash in STRALGO command
 1 file changed, 7 insertions(+)

Benjamin Sergeant in commit a05ffefdc:
 Update redis-cli.c
 1 file changed, 19 insertions(+), 6 deletions(-)

Jamie Scott in commit 870b63733:
 minor fix
 1 file changed, 2 insertions(+), 3 deletions(-)

================================================================================
Redis 6.0.5     Released Tue Jun 09 11:56:08 CEST 2020
================================================================================

Upgrade urgency MODERATE: several bugs with moderate impact are fixed here.

The most important issues are listed here:

* Fix handling of speical chars in ACL LOAD.
* Make Redis Cluster more robust about operation errors that may lead
  to two clusters to mix together.
* Revert the sendfile() implementation of RDB transfer. It causes some delay.
* Fix TLS certificate loading for chained certificates.
* Fix AOF rewirting of KEEPTTL SET option.
* Fix MULTI/EXEC behavior during -BUSY script errors.

And this is the full list of commits:

antirez in commit ee8dd01bb:
 Temporary fix for #7353 issue about EVAL during -BUSY.
 1 file changed, 9 insertions(+)

xhe in commit a4a856d53:
 return the correct proto version HELLO should return the current proto version, while the code hardcoded 3
 1 file changed, 1 insertion(+), 1 deletion(-)

Oran Agra in commit e2046b300:
 Don't queue commands in an already aborted MULTI state
 1 file changed, 7 insertions(+)

Oran Agra in commit b35fdf1de:
 Avoid rejecting WATCH / UNWATCH, like MULTI/EXEC/DISCARD
 1 file changed, 4 insertions(+), 2 deletions(-)

zhaozhao.zz in commit 1d7bf208c:
 AOF: append origin SET if no expire option
 2 files changed, 23 insertions(+), 8 deletions(-)

Oran Agra in commit 676445ad9:
 fix disconnectSlaves, to try to free each slave.
 1 file changed, 1 deletion(-)

zhaozhao.zz in commit 4846c0c8a:
 donot free protected client in freeClientsInAsyncFreeQueue
 1 file changed, 9 insertions(+), 3 deletions(-)

Oran Agra in commit f33de403e:
 fix pingoff  test race
 1 file changed, 1 insertion(+)

Kevin Fwu in commit 49af4d07e:
 Fix TLS certificate loading for chained certificates.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 329fddbda:
 Revert "Implements sendfile for redis."
 2 files changed, 2 insertions(+), 55 deletions(-)

antirez in commit 925a2cd5a:
 Revert "avoid using sendfile if tls-replication is enabled"
 1 file changed, 27 insertions(+), 34 deletions(-)

Liu Zhen in commit 84a7a9058:
 fix clusters mixing accidentally by gossip
 1 file changed, 10 insertions(+), 2 deletions(-)

antirez in commit cd63359a1:
 Fix handling of special chars in ACL LOAD.
 1 file changed, 8 insertions(+), 4 deletions(-)

================================================================================
Redis 6.0.4     Released Thu May 28 11:36:45 CEST 2020
================================================================================

Upgrade urgency CRITICAL: this release fixes a severe replication bug.

Redis 6.0.4 fixes a critical replication bug caused by a new feature introduced
in Redis 6. The feature, called "meaningful offset" and strongly wanted by
myself (antirez) was an improvement that avoided that masters were no longer
able, during a failover where they were demoted to replicas, to partially
synchronize with the new master. In short the feature was able to avoid full
synchronizations with RDB. How did it work? By trimming the replication backlog
of the final "PING" commands the master was sending in the replication channel:
this way the replication offset would no longer go "after" the one of the
promoted replica, allowing the master to just continue in the same replication
history, receiving only a small data difference.

However after the introduction of the feature we (the Redis core team) quickly
understood there was something wrong: the apparently harmless feature had
many bugs, and the last bug we discovered, after a joined effort of multiple
people, we were not even able to fully understand after fixing it. Enough was
enough, we decided that the complexity cost of this feature was too high.
So Redis 6.0.4 removes the feature entirely, and fixes the data corruption that
it was able to cause.

However there are two facts to take in mind.

Fact 1: Setups using chained replication, that means that certain replicas
are replicating from other replicas, up to Redis 6.0.3 can experience data
corruption. For chained replication we mean that:

    +--------+          +---------+         +-------------+
    | master |--------->| replica |-------->| sub-replica |
    +--------+          +---------+         +-------------+


People using chained replication SHOULD UPGRADE ASAP away from Redis 6.0.0,
6.0.1, 6.0.2 or 6.0.3 to Redis 6.0.4.

To be clear, people NOT using this setup, but having just replicas attached
directly to the master, SHOUDL NOT BE in danger of any problem. But we
are no longer confident on 6.0.x replication implementation complexities
so we suggest to upgrade to 6.0.4 to everybody using an older 6.0.3 release.
We just so far didn't find any bug that affects Redis 6.0.3 that does not
involve chained replication.

People starting with Redis 6.0.4 are fine. People with Redis 5 are fine.
People upgrading from Redis 5 to Redis 6.0.4 are fine.
TLDR: The problem is with users of 6.0.0, 6.0.1, 6.0.2, 6.0.3.

Fact 2: Upgrading from Redis 6.0.x to Redis 6.0.4, IF AND ONLY IF you
use chained replication, requires some extra care:

1. Once you attach your new Redis 6.0.4 instance as a replica of the current
   Redis 6.0.x master, you should wait for the first full synchronization,
   then you should promote it right away, if your setup involves chained
   replication. Don't give it the time to do a new partial synchronization
   in the case the link between the master and the replica  will break in
   the mean time.

2. As an additional care, you may want to set the replication ping period
   to a very large value (for instance 1000000) using the following command:

       CONFIG SET repl-ping-replica-period 1000000

   Note that if you do "1" with care, "2" is not needed.
   However if you do it, make sure to later restore it to its default:

       CONFIG SET repl-ping-replica-period 10

So this is the main change in Redis 6. Later we'll find a different way in
order to achieve what we wanted to achieve with the Meaningful Offset feature,
but without the same complexity.

Other changes in this release:

* PSYNC2 tests improved.
* Fix a rare active defrag edge case bug leading to stagnation
* Fix Redis 6 asserting at startup in 32 bit systems.
* Redis 6 32 bit is now added back to our testing environments.
* Fix server crash for STRALGO command,
* Implement sendfile for RDB transfer.
* TLS fixes.
* Make replication more resistant by disconnecting the master if we
  detect a protocol error. Basically we no longer accept inline protocol
  from the master.
* Other improvements in the tests.

Regards,
antirez

This is the full list of commits:

antirez in commit 59cd4c9f6:
 Test: take PSYNC2 test master timeout high during switch.
 1 file changed, 1 deletion(-)

antirez in commit 6c1bb7b19:
 Test: add the tracking unit as default.
 1 file changed, 1 insertion(+)

Oran Agra in commit 1aee695e5:
 tests: find_available_port start search from next port
 1 file changed, 12 insertions(+), 7 deletions(-)

Oran Agra in commit a2ae46352:
 tests: each test client work on a distinct port range
 5 files changed, 39 insertions(+), 27 deletions(-)

Oran Agra in commit 86e562d69:
 32bit CI needs to build modules correctly
 2 files changed, 7 insertions(+), 2 deletions(-)

Oran Agra in commit ab2984b1e:
 adjust revived meaningful offset tests
 1 file changed, 39 insertions(+), 20 deletions(-)

Oran Agra in commit 1ff5a222d:
 revive meaningful offset tests
 2 files changed, 213 insertions(+)

antirez in commit cc549b46a:
 Replication: showLatestBacklog() refactored out.
 3 files changed, 36 insertions(+), 25 deletions(-)

antirez in commit 377dd0515:
 Drop useless line from replicationCacheMaster().
 1 file changed, 2 deletions(-)

antirez in commit 3f8d113f1:
 Another meaningful offset test removed.
 1 file changed, 100 deletions(-)

antirez in commit d4541349d:
 Remove the PSYNC2 meaningful offset test.
 2 files changed, 113 deletions(-)

antirez in commit 2112a5702:
 Remove the meaningful offset feature.
 4 files changed, 10 insertions(+), 93 deletions(-)

antirez in commit d2eb6e0b4:
 Set a protocol error if master use the inline protocol.
 1 file changed, 17 insertions(+), 2 deletions(-)

Oran Agra in commit 9c1df3b76:
 daily CI test with tls
 1 file changed, 15 insertions(+)

Oran Agra in commit 115ed1911:
 avoid using sendfile if tls-replication is enabled
 1 file changed, 34 insertions(+), 27 deletions(-)

antirez in commit 11c748aac:
 Replication: log backlog creation event.
 1 file changed, 3 insertions(+)

antirez in commit 8f1013722:
 Test: PSYNC2 test can now show server logs.
 1 file changed, 88 insertions(+), 25 deletions(-)

antirez in commit 2e591fc4a:
 Clarify what is happening in PR #7320.
 1 file changed, 5 insertions(+), 1 deletion(-)

zhaozhao.zz in commit cbb51fb8f:
 PSYNC2: second_replid_offset should be real meaningful offset
 1 file changed, 3 insertions(+), 3 deletions(-)

Oran Agra in commit e0fc88b4d:
 add CI for 32bit build
 2 files changed, 34 insertions(+)

antirez in commit e3f864b5f:
 Make disconnectSlaves() synchronous in the base case.
 3 files changed, 20 insertions(+), 9 deletions(-)

ShooterIT in commit 8af1e513f:
 Implements sendfile for redis.
 2 files changed, 55 insertions(+), 2 deletions(-)

antirez in commit 3c21418cd:
 Fix #7306 less aggressively.
 2 files changed, 29 insertions(+), 17 deletions(-)

Madelyn Olson in commit e201f83ce:
 EAGAIN for tls during diskless load
 1 file changed, 4 insertions(+)

Qu Chen in commit 58fc456cb:
 Disconnect chained replicas when the replica performs PSYNC with the master always to avoid replication offset mismatch between master and chained replicas.
 2 files changed, 60 insertions(+), 3 deletions(-)

hwware in commit 3febc5c29:
 using moreargs variable
 1 file changed, 2 insertions(+), 2 deletions(-)

hwware in commit 8d6738559:
 fix server crash for STRALGO command
 1 file changed, 2 insertions(+), 2 deletions(-)

ShooterIT in commit 7a35eec54:
 Replace addDeferredMultiBulkLength with addReplyDeferredLen in comment
 1 file changed, 2 insertions(+), 2 deletions(-)

Yossi Gottlieb in commit f93e1417b:
 TLS: Improve tls-protocols clarity in redis.conf.
 1 file changed, 3 insertions(+), 2 deletions(-)

ShooterIT in commit d0c9e4454:
 Fix reply bytes calculation error
 1 file changed, 1 insertion(+), 1 deletion(-)

zhaozhao.zz in commit 1cde6a060:
 Tracking: flag CLIENT_TRACKING_BROKEN_REDIR when redir broken
 1 file changed, 1 insertion(+)

Oran Agra in commit 436be3498:
 fix a rare active defrag edge case bug leading to stagnation
 4 files changed, 146 insertions(+), 23 deletions(-)

Oran Agra in commit f9d2ffdc5:
 improve DEBUG MALLCTL to be able to write to write only fields.
 1 file changed, 27 insertions(+), 7 deletions(-)

hujie in commit d7968ee92:
 fix clear USER_FLAG_ALLCOMMANDS flag in acl
 1 file changed, 5 insertions(+), 4 deletions(-)

ShooterIT in commit a902e6b25:
 Redis Benchmark: generate random test data
 1 file changed, 12 insertions(+), 1 deletion(-)

hwware in commit 9564ed7c3:
 Redis-Benchmark: avoid potentical memmory leaking
 1 file changed, 1 insertion(+), 1 deletion(-)

WuYunlong in commit 2e4182743:
 Handle keys with hash tag when computing hash slot using tcl cluster client.
 1 file changed, 23 insertions(+), 2 deletions(-)

WuYunlong in commit eb2c8b2c6:
 Add a test to prove current tcl cluster client can not handle keys with hash tag.
 1 file changed, 7 insertions(+), 1 deletion(-)

ShooterIT in commit 928e6976b:
 Use dictSize to get the size of dict in dict.c
 1 file changed, 2 insertions(+), 2 deletions(-)

Madelyn Olson in commit cdcf5af5a:
 Converge hash validation for adding and removing
 1 file changed, 21 insertions(+), 14 deletions(-)

Benjamin Sergeant in commit e8b09d220:
 do not handle --cluster-yes for cluster fix mode
 1 file changed, 16 insertions(+), 7 deletions(-)

Benjamin Sergeant in commit 57b4fb0d8:
 fix typo ...
 1 file changed, 1 insertion(+), 1 deletion(-)

Benjamin Sergeant in commit 29f25e411:
 Redis-cli 6.0.1 `--cluster-yes` doesn't work (fix #7246)
 1 file changed, 5 insertions(+), 1 deletion(-)

Oran Agra in commit 00d8b92b8:
 fix valgrind test failure in replication test
 1 file changed, 1 insertion(+), 1 deletion(-)

Oran Agra in commit 5e17e6276:
 add regression test for the race in #7205
 1 file changed, 52 insertions(+)

antirez in commit 96e7c011e:
 Improve the PSYNC2 test reliability.
 1 file changed, 33 insertions(+), 15 deletions(-)

================================================================================
Redis 6.0.3     Released Sat May 16 18:10:21 CEST 2020
================================================================================

Upgrade urgency CRITICAL: a crash introduced in 6.0.2 is now fixed.

1eab62f7e Remove the client from CLOSE_ASAP list before caching the master.

================================================================================
Redis 6.0.2     Released Fri May 15 22:24:36 CEST 2020
================================================================================

Upgrade urgency MODERATE: many not critical bugfixes in different areas.
                          Critical fix to client side caching when
                          keys are evicted from the tracking table but
                          no notifications are sent.

The following are the most serious fix:

* XPENDING should not update consumer's seen-time
* optimize memory usage of deferred replies - fixed
* Fix CRC64 initialization outside the Redis server itself.
* stringmatchlen() should not expect null terminated strings.
* Cluster nodes availability checks improved when there is
  high Pub/Sub load on the cluster bus.
* Redis Benchmark: Fix coredump because of double free
* Tracking: send eviction messages when evicting entries.
* rax.c updated from upstream antirez/rax.
* fix redis 6.0 not freeing closed connections during loading.

New features:

* Support setcpuaffinity on linux/bsd
* Client Side Caching: Add Tracking Prefix Number Stats in Server Info
* Add --user argument to redis-benchmark.c (ACL)

Full list of commits:

Yossi Gottlieb in commit 16ba33c05:
 TLS: Fix test failures on recent Debian/Ubuntu.
 1 file changed, 20 deletions(-)

Yossi Gottlieb in commit 77ae66930:
 TLS: Add crypto locks for older OpenSSL support.
 1 file changed, 45 insertions(+)

David Carlier in commit 389697988:
 NetBSD build update.
 3 files changed, 30 insertions(+), 1 deletion(-)

Madelyn Olson in commit 2435341d7:
 Added a refcount on timer events to prevent deletion of recursive timer calls
 2 files changed, 12 insertions(+)

antirez in commit 80c906bd3:
 Cache master without checking of deferred close flags.
 3 files changed, 11 insertions(+), 8 deletions(-)

antirez in commit 74249be4a:
 Track events processed while blocked globally.
 5 files changed, 32 insertions(+), 17 deletions(-)

antirez in commit 8bf660af9:
 Some rework of #7234.
 4 files changed, 77 insertions(+), 65 deletions(-)

Oran Agra in commit 9da134cd8:
 fix redis 6.0 not freeing closed connections during loading.
 3 files changed, 133 insertions(+), 58 deletions(-)

antirez in commit f7f219a13:
 Regression test for #7249.
 1 file changed, 22 insertions(+)

antirez in commit 693629585:
 rax.c updated from upstream antirez/rax.
 1 file changed, 4 insertions(+), 2 deletions(-)

antirez in commit e3b5648df:
 Tracking: send eviction messages when evicting entries.
 2 files changed, 29 insertions(+), 12 deletions(-)

Oran Agra in commit 5c41802d5:
 fix unstable replication test
 1 file changed, 2 insertions(+), 2 deletions(-)

ShooterIT in commit a23cdbb94:
 Redis Benchmark: Fix coredump because of double free
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 1276058ea:
 Cluster: clarify we always resolve the sender.
 1 file changed, 3 insertions(+), 1 deletion(-)

antirez in commit 002fcde3d:
 Cluster: refactor ping/data delay handling.
 1 file changed, 13 insertions(+), 11 deletions(-)

antirez in commit 960186a71:
 Cluster: introduce data_received field.
 2 files changed, 27 insertions(+), 10 deletions(-)

antirez in commit 3672875b4:
 stringmatchlen() should not expect null terminated strings.
 1 file changed, 2 insertions(+), 2 deletions(-)

Brad Dunbar in commit 24e12641d:
 Remove unreachable branch.
 1 file changed, 2 deletions(-)

hwware in commit c7edffbd5:
 add jemalloc-bg-thread config in redis conf
 1 file changed, 3 insertions(+)

hwware in commit 8a9c84f4a:
 add include guard for lolwut.h
 1 file changed, 6 insertions(+)

antirez in commit cb683a84f:
 Don't propagate spurious MULTI on DEBUG LOADAOF.
 2 files changed, 6 insertions(+), 3 deletions(-)

antirez in commit 84d9766d6:
 Dump recent backlog on master query generating errors.
 1 file changed, 29 insertions(+)

Titouan Christophe in commit ec1e106ec:
 make struct user anonymous (only typedefed)
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit e48c37316:
 Test: --dont-clean should do first cleanup.
 1 file changed, 2 insertions(+), 5 deletions(-)

Benjamin Sergeant in commit 1e561cfaa:
 Add --user argument to redis-benchmark.c (ACL)
 1 file changed, 15 insertions(+), 2 deletions(-)

antirez in commit d1af82a88:
 Drop not needed part from #7194.
 1 file changed, 1 insertion(+), 1 deletion(-)

Muhammad Zahalqa in commit 897a360d0:
 Fix compiler warnings on function rev(unsigned long)
 1 file changed, 3 insertions(+), 3 deletions(-)

antirez in commit ac316d8cc:
 Move CRC64 initialization in main().
 2 files changed, 1 insertion(+), 4 deletions(-)

antirez in commit fc7bc3204:
 Fix CRC64 initialization outside the Redis server itself.
 1 file changed, 3 insertions(+)

hwware in commit a6e55c096:
 Client Side Caching: Add Tracking Prefix Number Stats in Server Info
 3 files changed, 8 insertions(+)

antirez in commit b062fd523:
 Fix NetBSD build by fixing redis_set_thread_title() support.
 1 file changed, 4 insertions(+), 1 deletion(-)

antirez in commit 4efb25d9c:
 Rework a bit the documentation for CPU pinning.
 2 files changed, 18 insertions(+), 8 deletions(-)

zhenwei pi in commit d6436eb7c:
 Support setcpuaffinity on linux/bsd
 12 files changed, 180 insertions(+), 1 deletion(-)

Guy Benoish in commit 3a441c7d9:
 XPENDING should not update consumer's seen-time
 4 files changed, 33 insertions(+), 20 deletions(-)

Oran Agra in commit 75addb4fe:
 optimize memory usage of deferred replies - fixed
 1 file changed, 29 insertions(+)

Deliang Yang in commit c57d9146f:
 reformat code
 1 file changed, 1 insertion(+), 1 deletion(-)

Oran Agra in commit 3d3861dd8:
 add daily github actions with libc malloc and valgrind
 5 files changed, 106 insertions(+), 18 deletions(-)


================================================================================
Redis 6.0.1     Released Sat May 02 00:06:07 CEST 2020
================================================================================

Upgrade urgency HIGH: This release fixes a crash when builiding against
                      Libc malloc.

Here we revert 8110ba888, an optimization that causes a crash due to a
bug in the code. It does not happen with the default allocator because of
differences between Jemalloc and libc malloc, so this escaped all our
testing but was reported by a user. We'll add back the original optimization
that was reverted here later, after checking what happens: it is not a
critical optimization.

The other commits are minor stuff:

antirez in commit db73d0998:
 Cast printf() argument to the format specifier.
 1 file changed, 3 insertions(+), 1 deletion(-)

antirez in commit 7c0fe7271:
 Revert "optimize memory usage of deferred replies"
 1 file changed, 31 deletions(-)

antirez in commit 8fe25edc7:
 Save a call to stopThreadedIOIfNeeded() for the base case.
 1 file changed, 3 insertions(+), 3 deletions(-)

================================================================================
Redis 6.0.0 GA  Released Thu Apr 30 14:55:02 CEST 2020
================================================================================

Upgrade urgency CRITICAL: many bugs fixed compared to the last release
                          candidate. Better to upgrade if you see things
                          affecting your environment in the changelog.

Hi all, finally we have Redis 6.0.0 GA! Enjoy this new Redis release.
Most of the documentation was updated today so that you can likely
find what you are looking for about the new features at redis.io.
This is the list of what changed compared to the previoius release candidate:

* XCLAIM AOF/replicas propagation fixed.
* Client side caching: new NOLOOP option to avoid getting notified about
  changes performed by ourselves.
* ACL GENPASS now uses HMAC-SHA256 and have an optional "bits" argument.
  It means you can use it as a general purpose "secure random strings"
  primitive!
* Cluster "SLOTS" subcommand memory optimization.
* The LCS command is now a subcommand of STRALGO.
* Meaningful offset for replicas as well. More successful partial
  resynchronizations.
* Optimize memory usage of deferred replies.
* Faster CRC64 algorithm for faster RDB loading.
* XINFO STREAM FULL, a new subcommand to get the whole stream state.
* CLIENT KILL USER <username>.
* MIGRATE AUTH2 option, for ACL style authentication support.
* Other random bugfixes.

Enjoy Redis 6! :-)
Goodbye antirez

List of commits in this release:

antirez in commit 1f9b82bd5:
 Update help.h again before Redis 6 GA.
 1 file changed, 17 insertions(+), 12 deletions(-)

antirez in commit 3fcffe7d0:
 redis-cli: fix hints with subcommands.
 1 file changed, 2 insertions(+), 1 deletion(-)

antirez in commit 455d8a05c:
 redis-cli command help updated.
 1 file changed, 165 insertions(+), 25 deletions(-)

zhaozhao.zz in commit 70287bbc9:
 lazyfree & eviction: record latency generated by lazyfree eviction
 1 file changed, 18 insertions(+), 13 deletions(-)

antirez in commit 7be21139a:
 MIGRATE AUTH2 for ACL support.
 1 file changed, 19 insertions(+), 5 deletions(-)

antirez in commit e1ee1a49d:
 CLIENT KILL USER <username>.
 1 file changed, 11 insertions(+)

antirez in commit d56f058c0:
 Fix tracking table max keys option in redis.conf.
 1 file changed, 12 insertions(+), 9 deletions(-)

antirez in commit 96dd5fc93:
 redis-cli: safer cluster fix with unreachalbe masters.
 1 file changed, 26 insertions(+), 1 deletion(-)

antirez in commit 5b59d9c5d:
 redis-cli: simplify cluster nodes coverage display.
 1 file changed, 10 insertions(+), 17 deletions(-)

antirez in commit c163d4add:
 redis-cli: try to make clusterManagerFixOpenSlot() more readable.
 1 file changed, 25 insertions(+), 6 deletions(-)

Guy Benoish in commit aab74b715:
 XINFO STREAM FULL should have a default COUNT of 10
 1 file changed, 8 insertions(+), 4 deletions(-)

antirez in commit 606134f9d:
 Comment clearly why we moved some code in #6623.
 1 file changed, 4 insertions(+), 1 deletion(-)

srzhao in commit ee627bb66:
 fix pipelined WAIT performance issue.
 1 file changed, 13 insertions(+), 13 deletions(-)

antirez in commit 47b8a7f9b:
 Fix create-cluster BIN_PATH.
 1 file changed, 1 insertion(+), 1 deletion(-)

Guy Benoish in commit 6c0bc608a:
 Extend XINFO STREAM output
 2 files changed, 226 insertions(+), 34 deletions(-)

hwware in commit 5bfc18950:
 Fix not used marco in cluster.c
 1 file changed, 1 insertion(+), 1 deletion(-)

Itamar Haber in commit 56d628f85:
 Update create-cluster
 1 file changed, 1 insertion(+), 1 deletion(-)

Itamar Haber in commit cac9d7cf7:
 Adds `BIN_PATH` to create-cluster
 1 file changed, 8 insertions(+), 6 deletions(-)

Oran Agra in commit b712fba17:
 hickup, re-fix dictEncObjKeyCompare
 1 file changed, 4 insertions(+), 4 deletions(-)

Oran Agra in commit ea63aea72:
 fix loading race in psync2 tests
 3 files changed, 15 insertions(+), 1 deletion(-)

antirez in commit 64e588bfa:
 Rework comment in dictEncObjKeyCompare().
 1 file changed, 8 insertions(+), 9 deletions(-)

Oran Agra in commit 0d1e8c93b:
 allow dictFind using static robj
 1 file changed, 9 insertions(+), 4 deletions(-)

Madelyn Olson in commit a1bed447b:
 Added crcspeed library
 2 files changed, 341 insertions(+)

Madelyn Olson in commit a75fa3aad:
 Made crc64 test consistent
 1 file changed, 3 insertions(+), 2 deletions(-)

Madelyn Olson in commit 52c75e9db:
 Implemented CRC64 based on slice by 4
 5 files changed, 124 insertions(+), 157 deletions(-)

Oran Agra in commit 8110ba888:
 optimize memory usage of deferred replies
 1 file changed, 31 insertions(+)

Oran Agra in commit e4d2bb62b:
 Keep track of meaningful replication offset in replicas too
 5 files changed, 212 insertions(+), 92 deletions(-)

antirez in commit fea9788cc:
 Fix STRALGO command flags.
 1 file changed, 1 insertion(+), 1 deletion(-)

Dave-in-lafayette in commit 2144047e1:
 fix for unintended crash during panic response
 1 file changed, 1 insertion(+), 1 deletion(-)

Guy Benoish in commit 43329c9b6:
 Add the stream tag to XSETID tests
 1 file changed, 1 insertion(+), 1 deletion(-)

Dave-in-lafayette in commit 1e17d3de7:
 fix for crash during panic before all threads are up
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 3722f89f4:
 LCS -> STRALGO LCS.
 4 files changed, 28 insertions(+), 15 deletions(-)

antirez in commit 373ae6061:
 Also use propagate() in streamPropagateGroupID().
 1 file changed, 11 insertions(+), 1 deletion(-)

yanhui13 in commit f03f1fad6:
 add tcl test for cluster slots
 1 file changed, 44 insertions(+)

yanhui13 in commit 374ffdf1c:
 optimize the output of cluster slots
 1 file changed, 7 insertions(+), 4 deletions(-)

antirez in commit 4db38d2ef:
 Minor aesthetic changes to #7135.
 1 file changed, 5 insertions(+), 7 deletions(-)

Valentino Geron in commit f0a261448:
 XREADGROUP with NOACK should propagate only one XGROUP SETID command
 1 file changed, 13 insertions(+), 7 deletions(-)

antirez in commit fbdef6a9b:
 ACL: re-enable command execution of disabled users.
 1 file changed, 4 deletions(-)

antirez in commit 05a41da75:
 getRandomBytes(): use HMAC-SHA256.
 1 file changed, 30 insertions(+), 10 deletions(-)

antirez in commit 345c3768d:
 ACL GENPASS: take number of bits as argument.
 1 file changed, 21 insertions(+), 6 deletions(-)

antirez in commit 639c8a1d9:
 ACL GENPASS: emit 256 bits instead of 128.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 321acea03:
 ACL: deny commands execution of disabled users.
 1 file changed, 4 insertions(+)

Theo Buehler in commit b0920e6e8:
 TLS: Fix build with SSL_OP_NO_CLIENT_RENEGOTIATION
 1 file changed, 1 insertion(+), 1 deletion(-)

Yossi Gottlieb in commit 149b658b5:
 TLS: Fix build on older verisons of OpenSSL.
 1 file changed, 2 insertions(+)

antirez in commit 06917e581:
 Tracking: test expired keys notifications.
 1 file changed, 13 insertions(+)

antirez in commit e434b2ce4:
 Tracking: NOLOOP tests.
 1 file changed, 32 insertions(+)

antirez in commit f3a172887:
 Tracking: signal key as modified when evicting.
 1 file changed, 1 insertion(+)

antirez in commit e63bb7ec8:
 Tracking: NOLOOP further implementation and fixes.
 2 files changed, 21 insertions(+), 6 deletions(-)

antirez in commit 6791ff052:
 Tracking: NOLOOP internals implementation.
 17 files changed, 174 insertions(+), 112 deletions(-)

antirez in commit 725b8cc68:
 Implement redis_set_thread_title for MacOS.
 1 file changed, 6 insertions(+)

zhenwei pi in commit 3575b8706:
 Threaded IO: set thread name for redis-server
 3 files changed, 28 insertions(+)

antirez in commit a76c67578:
 Sentinel: small refactoring of sentinelCollectTerminatedScripts().
 1 file changed, 1 insertion(+), 2 deletions(-)

omg-by in commit 3a27064c4:
 fix(sentinel): sentinel.running_scripts will always increase more times and not reset
 1 file changed, 1 insertion(+)

antirez in commit 5c4c73e2c:
 A few comments and name changes for #7103.
 1 file changed, 13 insertions(+), 4 deletions(-)

Oran Agra in commit 6148f9493:
 testsuite run the defrag latency test solo
 3 files changed, 42 insertions(+), 2 deletions(-)

Jamie Scott in commit 51d3012d4:
 Adding acllog-max-len to Redis.conf
 1 file changed, 9 insertions(+)

antirez in commit c39f16c42:
 Fix XCLAIM propagation in AOF/replicas for blocking XREADGROUP.
 2 files changed, 8 insertions(+), 3 deletions(-)

================================================================================
Redis 6.0-rc4     Released Thu Apr 16 16:10:35 CEST 2020
================================================================================

Upgrade urgency LOW: If you are using RC3 without issues, don't rush.

Hi all, this the latest release candidate of Redis 6. This is likely to
be very similar to what you'll see in Redis 6 GA. Please test it and
report any issue :-)

Main changes in this release:

    * Big INFO speedup when using a lot of of clients.
    * Big speedup on all the blocking commands: now blocking
      on the same key is O(1) instead of being O(N).
    * Stale replicas now allow MULTI/EXEC.
    * New command: LCS (Longest Common Subsequence).
    * Add a new configuration to make DEL like UNLINK.
    * RDB loading speedup.
    * Many bugs fixed (see the commit messages at the end of this node)

See you in 14 days for Redis 6 GA.

List of commits:

antirez in commit 9f594e243:
 Update SDS to latest version.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 48781dd95:
 RESP3: fix HELLO map len in Sentinel mode.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 371ab0cff:
 Don't allow empty spaces in ACL usernames.
 1 file changed, 36 insertions(+), 8 deletions(-)

antirez in commit b86140ac5:
 Don't allow empty spaces in ACL key patterns.
 1 file changed, 12 insertions(+), 1 deletion(-)

liumiuyong in commit a7ee3c3e7:
 FIX: truncate max/min longitude,latitude related geo_point (ex:  {180, 85.05112878} )
 1 file changed, 4 insertions(+)

Guy Benoish in commit e5b9eb817:
 Typo in getTimeoutFromObjectOrReply's error reply
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 0f31bb5c1:
 Fix HELLO reply in Sentinel mode, see #6160.
 1 file changed, 1 insertion(+), 1 deletion(-)

hwware in commit b92d9a895:
 fix spelling in acl.c
 1 file changed, 2 insertions(+), 2 deletions(-)

antirez in commit 8f896e57a:
 Fix zsetAdd() top comment spelling.
 1 file changed, 3 insertions(+), 3 deletions(-)

hayleeliu in commit 8f5157058:
 fix spelling mistake in bitops.c
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit ddeda9ceb:
 Fix function names in zslDeleteNode() top comment.
 1 file changed, 2 insertions(+), 1 deletion(-)

antirez in commit bde1f0a8e:
 RESP3: change streams items from maps to arrays.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit bec68bff2:
 Use the special static refcount for stack objects.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 0f239e51b:
 RDB: refactor some RDB loading code into dbAddRDBLoad().
 3 files changed, 22 insertions(+), 4 deletions(-)

antirez in commit f855db61b:
 incrRefCount(): abort on statically allocated object.
 2 files changed, 12 insertions(+), 2 deletions(-)

antirez in commit 23094ba01:
 More powerful DEBUG RELOAD.
 3 files changed, 55 insertions(+), 16 deletions(-)

antirez in commit 8161a7a3e:
 RDB: clarify a condition in rdbLoadRio().
 2 files changed, 9 insertions(+), 2 deletions(-)

antirez in commit 61b153073:
 RDB: load files faster avoiding useless free+realloc.
 7 files changed, 40 insertions(+), 28 deletions(-)

antirez in commit 414debfd0:
 Speedup: unblock clients on keys in O(1).
 4 files changed, 50 insertions(+), 23 deletions(-)

antirez in commit cbcd07777:
 Fix ACL HELP table missing comma.
 1 file changed, 12 insertions(+), 12 deletions(-)

mymilkbottles in commit 2437455f2:
 Judge the log level in advance
 1 file changed, 1 insertion(+)

antirez in commit 35c64b898:
 Speedup INFO by counting client memory incrementally.
 4 files changed, 52 insertions(+), 26 deletions(-)

qetu3790 in commit c3ac71748:
 fix comments about RESIZE DB opcode in rdb.c
 1 file changed, 1 insertion(+), 4 deletions(-)

antirez in commit c8dbcff9d:
 Clarify redis.conf comment about lazyfree-lazy-user-del.
 1 file changed, 9 insertions(+), 5 deletions(-)

zhaozhao.zz in commit abd5156f2:
 lazyfree: add a new configuration lazyfree-lazy-user-del
 4 files changed, 7 insertions(+), 2 deletions(-)

antirez in commit 5719b3054:
 LCS: more tests.
 1 file changed, 8 insertions(+)

antirez in commit c89e1f293:
 LCS: allow KEYS / STRINGS to be anywhere.
 1 file changed, 6 deletions(-)

antirez in commit 0b16f8d44:
 LCS tests.
 1 file changed, 22 insertions(+)

antirez in commit 9254a805d:
 LCS: get rid of STOREIDX option. Fix get keys helper.
 2 files changed, 20 insertions(+), 21 deletions(-)

antirez in commit a4c490703:
 LCS: fix stale comment.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit cb92c23de:
 LCS: output LCS len as well in IDX mode.
 1 file changed, 6 insertions(+), 1 deletion(-)

antirez in commit 56a52e804:
 LCS: MINMATCHLEN and WITHMATCHLEN options.
 1 file changed, 24 insertions(+), 11 deletions(-)

antirez in commit ebb09a5c3:
 LCS: 7x speedup by accessing the array with better locality.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit a9f8a8cba:
 LCS: implement KEYS option.
 1 file changed, 18 insertions(+), 2 deletions(-)

antirez in commit 4aa24e62a:
 LCS: other fixes to range emission.
 1 file changed, 20 insertions(+), 16 deletions(-)

antirez in commit 2b67b6b87:
 LCS: fix emission of last range starting at index 0.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 420aac727:
 LCS: implement range indexes option.
 1 file changed, 59 insertions(+), 9 deletions(-)

antirez in commit a518a9a76:
 LCS: initial functionality implemented.
 4 files changed, 156 insertions(+), 1 deletion(-)

srzhao in commit 026cc11b0:
 Check OOM at script start to get stable lua OOM state.
 3 files changed, 11 insertions(+), 4 deletions(-)

Oran Agra in commit 02b594f6a:
 diffrent fix for runtest --host --port
 2 files changed, 13 insertions(+), 13 deletions(-)

Guy Benoish in commit f695d1830:
 Try to fix time-sensitive tests in blockonkey.tcl
 1 file changed, 54 insertions(+), 1 deletion(-)

Guy Benoish in commit 0e42cfc36:
 Use __attribute__ only if __GNUC__ is defined
 1 file changed, 12 insertions(+), 3 deletions(-)

Guy Benoish in commit 91ed9b3c4:
 Modules: Perform printf-like format checks in variadic API
 1 file changed, 3 insertions(+), 3 deletions(-)

Valentino Geron in commit 3e0d20962:
 XREAD and XREADGROUP should not be allowed from scripts when BLOCK option is being used
 3 files changed, 18 insertions(+), 2 deletions(-)

Guy Benoish in commit 240094c9b:
 Stale replica should allow MULTI/EXEC
 1 file changed, 3 insertions(+), 3 deletions(-)

Xudong Zhang in commit 209f3a1eb:
 fix integer overflow
 1 file changed, 2 insertions(+), 2 deletions(-)

Guy Benoish in commit 024c380b9:
 Fix no-negative-zero test
 1 file changed, 1 insertion(+)

Oran Agra in commit a38ff404b:
 modules don't signalModifiedKey in setKey() since that's done (optionally) in RM_CloseKey
 4 files changed, 8 insertions(+), 8 deletions(-)

Oran Agra in commit 814874d68:
 change CI to build and run the module api tests
 1 file changed, 2 insertions(+)

Oran Agra in commit 061616c1b:
 fix possible warning on incomplete struct init
 1 file changed, 1 insertion(+), 1 deletion(-)

Guy Benoish in commit 7764996be:
 Make sure Redis does not reply with negative zero
 2 files changed, 10 insertions(+)

Guy Benoish in commit eba28e2ce:
 DEBUG OBJECT should pass keyname to module when loading
 3 files changed, 4 insertions(+), 4 deletions(-)

David Carlier in commit 15c9e79a7:
 debug, dump registers on arm too.
 1 file changed, 55 insertions(+), 27 deletions(-)

hwware in commit cd2b5df97:
 fix spelling in cluster.c
 1 file changed, 1 insertion(+), 1 deletion(-)

Valentino Geron in commit 8cdc153f5:
 XACK should be executed in a "all or nothing" fashion.
 2 files changed, 23 insertions(+), 1 deletion(-)

hwware in commit b35407fa7:
 add check for not switching between optin optout mode directly
 1 file changed, 12 insertions(+), 1 deletion(-)

hwware in commit 4395889c9:
 add check for not providing both optin optout flag
 1 file changed, 8 insertions(+)

Guy Benoish in commit 1907e0f18:
 PERSIST should notify a keyspace event
 1 file changed, 1 insertion(+)

Guy Benoish in commit c35a53169:
 streamReplyWithRange: Redundant XSETIDs to replica
 1 file changed, 2 insertions(+), 1 deletion(-)

antirez in commit 6fe66e096:
 Simplify comment in moduleTryServeClientBlockedOnKey().
 1 file changed, 3 insertions(+), 12 deletions(-)

Guy Benoish in commit 193fc241c:
 Fix memory corruption in moduleHandleBlockedClients
 3 files changed, 149 insertions(+), 46 deletions(-)

================================================================================
Redis 6.0-rc3     Released Tue Mar 31 17:42:39 CEST 2020
================================================================================

Upgrade urgency CRITICAL: A connection management bug introduced with the
                          SSL implementation can crash Redis easily.

Dear users, this is a list of the major changes in this release, please check 
the list of commits for detail:

* Fix crash due to refactoring for SSL, for the connection code.
* Precise timeouts for blocking commands. Now the timeouts have HZ
  resolution regardless of the number of connected clinets. New timeouts
  are stored in a radix tree and sorted by expire time.
* Fix rare crash when resizing the event loop because of CONFIG maxclients.
* Fix systemd readiness after successful partial resync.
* Redis-cli ask password mode to be prompted at startup (for additional safety).
* Keyspace notifications added to MIGRATE / RESTORE.
* Threaded I/O bugs fixed.
* Implement new ACL style AUTH in Sentinel.
* Make 'requirepass' more backward compatible with Redis <= 5.
* ACL: Handle default user as disabled if it's off regardless of "nopass".
* Fix a potential inconsistency when upgrading an instance in Redis Cluster
  and restarting it. The instance will act as a replica but will actually be
  set as a master immediately. However the choice of what to do with already
  expired keys, on loading, was made from the POV of replicas.
* Abort transactions after -READONLY error.
* Many different fixes to module APIs.
* BITFIELD_RO added to call the command on read only replicas.
* PSYNC2: meaningful offset implementation. Allow the disconnected master
  that is still sending PINGs to replicas, to be able to successfully
  PSYNC incrementally to new slaves, discarding the last part of the
  replication backlog consisting only of PINGs.
* Fix pipelined MULTI/EXEC during Lua scripts are in BUSY state.
* Re-fix propagation API in modules, broken again after other changes.

antirez in commit ef1b1f01:
 cast raxSize() to avoid warning with format spec.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 9f347fab:
 Minor changes to #7037.
 2 files changed, 14 insertions(+), 5 deletions(-)

Guy Benoish in commit a509400d:
 Modules: Test MULTI/EXEC replication of RM_Replicate
 6 files changed, 49 insertions(+), 9 deletions(-)

Guy Benoish in commit 805c8c94:
 RENAME can unblock XREADGROUP
 3 files changed, 25 insertions(+), 1 deletion(-)

antirez in commit 97b80b57:
 Fix the propagate Tcl test after module changes.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 4f6b6b80:
 Modify the propagate unit test to show more cases.
 1 file changed, 30 insertions(+), 2 deletions(-)

antirez in commit 616b1cb7:
 Fix module commands propagation double MULTI bug.
 4 files changed, 25 insertions(+), 8 deletions(-)

antirez in commit 08fdef4b:
 Fix RM_Call() stale comment due to cut&paste.
 1 file changed, 1 insertion(+), 3 deletions(-)

OMG-By in commit 26b79ca1:
 fix: dict.c->dictResize()->minimal  type
 1 file changed, 1 insertion(+), 1 deletion(-)

zhaozhao.zz in commit fa418637:
 PSYNC2: reset backlog_idx and master_repl_offset correctly
 1 file changed, 10 insertions(+), 5 deletions(-)

antirez in commit bbbc80ac:
 Precise timeouts: reference client pointer directly.
 1 file changed, 13 insertions(+), 16 deletions(-)

antirez in commit c3b268a0:
 timeout.c created: move client timeouts code there.
 5 files changed, 198 insertions(+), 167 deletions(-)

Oran Agra in commit 0f7dfc37:
 AOFRW on an empty stream created with MKSTREAM loads badkly
 2 files changed, 15 insertions(+), 1 deletion(-)

antirez in commit 67643ead:
 Precise timeouts: cleaup the table on unblock.
 3 files changed, 21 insertions(+), 2 deletions(-)

antirez in commit ad94066e:
 Precise timeouts: fix comments after functional change.
 2 files changed, 6 insertions(+), 6 deletions(-)

antirez in commit a443ec2e:
 Precise timeouts: use only radix tree for timeouts.
 3 files changed, 15 insertions(+), 38 deletions(-)

antirez in commit 6862fd70:
 Precise timeouts: fast exit for clientsHandleShortTimeout().
 1 file changed, 1 insertion(+)

antirez in commit 30f1df8c:
 Precise timeouts: fix bugs in initial implementation.
 2 files changed, 5 insertions(+), 1 deletion(-)

antirez in commit 7add0f24:
 Precise timeouts: working initial implementation.
 3 files changed, 110 insertions(+), 28 deletions(-)

antirez in commit 9d6d1779:
 Precise timeouts: refactor unblocking on timeout.
 2 files changed, 33 insertions(+), 13 deletions(-)

antirez in commit 316a8f15:
 PSYNC2: fix backlog_idx when adjusting for meaningful offset
 1 file changed, 3 insertions(+)

伯成 in commit 11db53f8:
 Boost up performance for redis PUB-SUB patterns matching
 3 files changed, 43 insertions(+), 11 deletions(-)

antirez in commit e257f121:
 PSYNC2: meaningful offset test.
 2 files changed, 62 insertions(+)

antirez in commit 5f72f696:
 PSYNC2: meaningful offset implemented.
 3 files changed, 40 insertions(+), 1 deletion(-)

antirez in commit 8caa2714:
 Explain why we allow transactions in -BUSY state.
 1 file changed, 9 insertions(+), 2 deletions(-)

Oran Agra in commit e43cd831:
 MULTI/EXEC during LUA script timeout are messed up
 2 files changed, 73 insertions(+)

antirez in commit 34b89832:
 Improve comments of replicationCacheMasterUsingMyself().
 1 file changed, 6 insertions(+), 1 deletion(-)

antirez in commit 70a98a43:
 Fix BITFIELD_RO test.
 2 files changed, 5 insertions(+), 5 deletions(-)

antirez in commit 8783304a:
 Abort transactions after -READONLY error. Fix #7014.
 1 file changed, 1 insertion(+)

antirez in commit ec9cf002:
 Minor changes to BITFIELD_RO PR #6951.
 1 file changed, 9 insertions(+), 6 deletions(-)

bodong.ybd in commit b3e4abf0:
 Added BITFIELD_RO variants for read-only operations.
 4 files changed, 54 insertions(+), 1 deletion(-)

antirez in commit 50f8f950:
 Modules: updated function doc after #7003.
 1 file changed, 6 insertions(+), 1 deletion(-)

Guy Benoish in commit f2f3dc5e:
 Allow RM_GetContextFlags to work with ctx==NULL
 1 file changed, 16 insertions(+), 14 deletions(-)

hwware in commit eb808879:
 fix potentical memory leak in redis-cli
 1 file changed, 2 insertions(+)

Yossi Gottlieb in commit cdcab0e8:
 Fix crashes related to failed/rejected accepts.
 1 file changed, 6 insertions(+), 5 deletions(-)

Yossi Gottlieb in commit 50dcd9f9:
 Cluster: fix misleading accept errors.
 1 file changed, 4 insertions(+), 3 deletions(-)

Yossi Gottlieb in commit 87dbd8f5:
 Conns: Fix connClose() / connAccept() behavior.
 3 files changed, 48 insertions(+), 32 deletions(-)

hwware in commit 81e8686c:
 remove redundant Semicolon
 1 file changed, 1 insertion(+), 1 deletion(-)

hwware in commit c7524a7e:
 clean CLIENT_TRACKING_CACHING flag when disabled caching
 1 file changed, 1 insertion(+), 1 deletion(-)

hwware in commit 2dd1ca6a:
 add missing commands in cluster help
 1 file changed, 2 insertions(+), 1 deletion(-)

artix in commit 95324b81:
 Support Redis Cluster Proxy PROXY INFO command
 1 file changed, 5 insertions(+), 1 deletion(-)

박승현 in commit 04c53fa1:
 Update redis.conf
 1 file changed, 1 insertion(+), 1 deletion(-)

WuYunlong in commit 0578157d:
 Fix master replica inconsistency for upgrading scenario.
 3 files changed, 9 insertions(+), 2 deletions(-)

WuYunlong in commit 299f1d02:
 Add 14-consistency-check.tcl to prove there is a data consistency issue.
 1 file changed, 87 insertions(+)

antirez in commit 61b98f32:
 Regression test for #7011.
 1 file changed, 7 insertions(+)

antirez in commit 34ea2f4e:
 ACL: default user off should not allow automatic authentication.
 2 files changed, 3 insertions(+), 2 deletions(-)

antirez in commit cbbf9b39:
 Sentinel: document auth-user directive.
 1 file changed, 12 insertions(+)

antirez in commit 9c2e42dd:
 ACL: Make Redis 6 more backward compatible with requirepass.
 4 files changed, 17 insertions(+), 15 deletions(-)

antirez in commit d387f67d:
 Sentinel: implement auth-user directive for ACLs.
 1 file changed, 38 insertions(+), 7 deletions(-)

zhaozhao.zz in commit 7c078416:
 Threaded IO: bugfix client kill may crash redis
 1 file changed, 11 insertions(+), 5 deletions(-)

zhaozhao.zz in commit 9cc7038e:
 Threaded IO: handle pending reads clients ASAP after event loop
 1 file changed, 3 insertions(+), 1 deletion(-)

antirez in commit da8c7c49:
 Example sentinel conf: document requirepass.
 1 file changed, 8 insertions(+)

antirez in commit bdb338cf:
 Aesthetic changes in PR #6989.
 1 file changed, 9 insertions(+), 5 deletions(-)

zhaozhao.zz in commit b3e03054:
 Threaded IO: bugfix #6988 process events while blocked
 1 file changed, 5 insertions(+)

antirez in commit e628f944:
 Restore newline at the end of redis-cli.c
 1 file changed, 2 insertions(+), 1 deletion(-)

chendianqiang in commit 5d4c4df3:
 use correct list for moduleUnregisterUsedAPI
 1 file changed, 1 insertion(+), 1 deletion(-)

guodongxiaren in commit da14982d:
 string literal should be const char*
 1 file changed, 1 insertion(+), 1 deletion(-)

Itamar Haber in commit dc8885a1:
 Adds keyspace notifications to migrate and restore
 1 file changed, 3 insertions(+), 1 deletion(-)

bodong.ybd in commit bfb18e55:
 Remove duplicate obj files in Makefile
 1 file changed, 2 insertions(+), 2 deletions(-)

bodong.ybd in commit 76d57161:
 Fix bug of tcl test using external server
 2 files changed, 8 insertions(+), 2 deletions(-)

fengpf in commit 0e5820d8:
 fix comments in latency.c
 2 files changed, 2 insertions(+), 1 deletion(-)

antirez in commit 916dd79f:
 Update linenoise.
 1 file changed, 2 insertions(+), 1 deletion(-)

lifubang in commit c0c67c9b:
 add askpass mode
 1 file changed, 19 insertions(+), 1 deletion(-)

lifubang in commit e1c29434:
 update linenoise to https://github.com/antirez/linenoise/tree/fc9667a81d43911a6690fb1e68c16e6e3bb8df05
 4 files changed, 59 insertions(+), 4 deletions(-)

Jamie Scott in commit e5a063bc:
 Remove default guidance in Redis.conf
 1 file changed, 1 insertion(+), 2 deletions(-)

Jamie Scott in commit d28cbaf7:
 Update Redis.conf to improve TLS usability
 1 file changed, 2 insertions(+), 1 deletion(-)

Johannes Truschnigg in commit 23d5e8b8:
 Signal systemd readiness atfer Partial Resync
 1 file changed, 4 insertions(+)

Oran Agra in commit 61738154:
 fix for flaky psync2 test
 1 file changed, 21 insertions(+)

antirez in commit 70e0e499:
 ae.c: fix crash when resizing the event loop.
 1 file changed, 6 insertions(+), 2 deletions(-)

antirez in commit b3e4aa67:
 Fix release notes spelling mistake.
 1 file changed, 1 insertion(+), 1 deletion(-)


================================================================================
Redis 6.0 RC2     Released Thu Mar 05 15:40:53 CET 2020
================================================================================

Upgrade urgency MODERATE: Normal bugfixing release of a non-GA branch.

Hi Redis users, Redis 6 is approaching and will be released 30th of April.
New release candidates will be released at the end of March, then another
one mid April, to finally reach the GA at the end of April.

Redis 6 RC2 brings many fixes and new things, especially in the area of
client side caching. This is the list of big changes in this release. As
usually you can find the full list of commits at the end:

New features and improvements:

* ACL LOG: log denied commands, keys accesses and authentications.
* Client side caching redesigned. Now we use keys not caching slots.
* Client side caching: Broadcasting mode implemented.
* Client side caching: OPTIN/OPTOUT modes implemented.
* Remove RDB files used for replication in persistence-less instances (option).

Fixes (only selected ones, see commits for all the fixes):

* Different fixes to streams in edge cases.
* Fix duplicated CLIENT SETNAME reply because of RESP3 changes.
* Fix crash due to new active expire division by zero.
* Avoid sentinel changes promoted_slave to be its own replica.
* Fix bug on KEYS command where pattern starts with * followed by \x00.
* Threaded I/O: now the main thread is used as well to do I/O.
* Many fixes to modules APIs, and more to come in the next RCs.
* ld2string should fail if string contains \0 in the middle.
* Make the Redis test more reliable.
* Fix SPOP returning nil (see #4709). WARNING: API change.

qetu3790 in commit 4af0d7fd:
 Fix not used constant in lru_test_mode.
 1 file changed, 1 insertion(+), 1 deletion(-)

hwware in commit 6ef01878:
 add missing file marco
 1 file changed, 5 insertions(+)

ShooterIT in commit fe81d5c8:
 Avoid compiler warnings
 1 file changed, 1 insertion(+)

antirez in commit c2f01d7f:
 RDB deletion: document it in example redis.conf.
 1 file changed, 13 insertions(+)

antirez in commit 127e09bc:
 Make sync RDB deletion configurable. Default to no.
 3 files changed, 22 insertions(+), 4 deletions(-)

antirez in commit a20303c6:
 Check that the file exists in removeRDBUsedToSyncReplicas().
 1 file changed, 8 insertions(+), 4 deletions(-)

antirez in commit 7a23b945:
 Log RDB deletion in persistence-less instances.
 1 file changed, 15 insertions(+), 2 deletions(-)

antirez in commit baaf869f:
 Introduce bg_unlink().
 1 file changed, 31 insertions(+), 3 deletions(-)

antirez in commit be4bc1a5:
 Remove RDB files used for replication in persistence-less instances.
 3 files changed, 56 insertions(+), 1 deletion(-)

antirez in commit 07dc1b42:
 Use a smaller getkeys global buffer.
 1 file changed, 1 insertion(+), 1 deletion(-)

Oran Agra in commit 10e71b3d:
 Optimize temporary memory allocations for getKeysFromCommand mechanism
 1 file changed, 31 insertions(+), 10 deletions(-)

antirez in commit edc0ed14:
 Modules: reformat RM_Scan() top comment a bit.
 1 file changed, 21 insertions(+), 12 deletions(-)

antirez in commit c5319612:
 Modules: more details in RM_Scan API top comment.
 1 file changed, 22 insertions(+), 6 deletions(-)

Oran Agra in commit fff6b26a:
 RM_Scan disable dict rehashing
 2 files changed, 21 insertions(+), 6 deletions(-)

Guy Benoish in commit 65048460:
 Add RM_CreateStringFromDouble
 2 files changed, 14 insertions(+)

Oran Agra in commit 3144a278:
 add no_auth to COMMAND INFO
 1 file changed, 1 insertion(+)

Oran Agra in commit afe0b16c:
 module api docs for aux_save and aux_load
 2 files changed, 7 insertions(+), 1 deletion(-)

Guy Benoish in commit df152b0c:
 streamReplyWithRangeFromConsumerPEL: Redundant streamDecodeID
 1 file changed, 1 insertion(+), 3 deletions(-)

antirez in commit e3c1f439:
 Show Redis version when not understanding a config directive.
 1 file changed, 2 insertions(+), 1 deletion(-)

antirez in commit 141c0679:
 Changelog: explain Redis 6 SPOP change.
 1 file changed, 4 insertions(+), 1 deletion(-)

bodong.ybd in commit fe902461:
 Fix spop return nil #4709
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 9d4219eb:
 Fix SDS misuse in enumConfigSet(). Related to #6778.
 1 file changed, 3 insertions(+), 3 deletions(-)

antirez in commit 84243064:
 Remove useless comment from enumConfigSet().
 1 file changed, 1 deletion(-)

Ponnuvel Palaniyappan in commit dafb94db:
 Fix a potential overflow with strncpy
 1 file changed, 5 insertions(+), 5 deletions(-)

antirez in commit ea697b63:
 Improve aeDeleteEventLoop() top comment grammar.
 1 file changed, 2 insertions(+), 1 deletion(-)

wangyuan21 in commit dd479880:
 free time event when delete eventloop
 1 file changed, 7 insertions(+)

srzhao in commit ecf3b2ef:
 fix impl of aof-child whitelist SIGUSR1 feature.
 1 file changed, 5 insertions(+), 4 deletions(-)

meir@redislabs.com in commit 2966132c:
 Changed log level for module fork api from 'notice' to 'verbos'.
 1 file changed, 2 insertions(+), 2 deletions(-)

hwware in commit 7277e5d8:
 format fix
 1 file changed, 1 insertion(+), 1 deletion(-)

hwware in commit 1bb5ee9c:
 fix potentical memory leaks
 1 file changed, 4 insertions(+), 1 deletion(-)

Hengjian Tang in commit 97329733:
 modify the read buf size according to the write buf size PROTO_IOBUF_LEN defined before
 1 file changed, 1 insertion(+), 1 deletion(-)

Ariel in commit 15ea1324:
 fix ThreadSafeContext lock/unlock function names
 1 file changed, 2 insertions(+), 2 deletions(-)

Guy Benoish in commit 4d12c37c:
 XREADGROUP should propagate XCALIM/SETID in MULTI/EXEC
 1 file changed, 2 insertions(+), 2 deletions(-)

Oran Agra in commit 12626ce9:
 fix race in module api test for fork
 2 files changed, 2 insertions(+), 3 deletions(-)

Guy Benoish in commit 2ecab0b6:
 Modules: Do not auto-unblock clients if not blocked on keys
 1 file changed, 22 insertions(+), 7 deletions(-)

Oran Agra in commit 635321d4:
 fix github actions failing latency test for active defrag - part 2
 2 files changed, 5 insertions(+), 4 deletions(-)

Oran Agra in commit 0b988fa9:
 fix github actions failing latency test for active defrag
 2 files changed, 14 insertions(+), 13 deletions(-)

Oran Agra in commit 60096bc1:
 Fix latency sensitivity of new defrag test
 1 file changed, 32 insertions(+), 8 deletions(-)

antirez in commit b4395426:
 Tracking: optin/out implemented.
 3 files changed, 82 insertions(+), 16 deletions(-)

antirez in commit ef3551d1:
 Test engine: experimental change to avoid busy port problems.
 1 file changed, 84 insertions(+), 49 deletions(-)

antirez in commit 72c05351:
 Test engine: detect timeout when checking for Redis startup.
 1 file changed, 11 insertions(+), 1 deletion(-)

antirez in commit 294c9af4:
 Test engine: better tracking of what workers are doing.
 2 files changed, 12 insertions(+), 4 deletions(-)

hwware in commit ba027079:
 add missing subcommand description for debug oom
 1 file changed, 1 insertion(+)

Guy Benoish in commit 5d0890c0:
 Fix memory leak in test_ld_conv
 1 file changed, 4 insertions(+)

Madelyn Olson in commit d1f22eac:
 Give an error message if you specify redirect twice
 1 file changed, 7 insertions(+)

Madelyn Olson in commit 762fbcb6:
 Minor CSC fixes and fixed documentation
 2 files changed, 16 insertions(+), 17 deletions(-)

Oran Agra in commit 349aa245:
 Defrag big lists in portions to avoid latency and freeze
 4 files changed, 350 insertions(+), 34 deletions(-)

Guy Benoish in commit b4ddc7b7:
 XGROUP DESTROY should unblock XREADGROUP with -NOGROUP
 2 files changed, 11 insertions(+)

hayashier in commit 73806f74:
 fix typo from fss to rss
 1 file changed, 2 insertions(+), 2 deletions(-)

antirez in commit b6129f86:
 Test is more complex now, increase default timeout.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit f15fb727:
 Tracking: fix max-keys configuration directive.
 2 files changed, 2 insertions(+), 2 deletions(-)

Itamar Haber in commit e374573f:
 Fixes segfault on calling trackingGetTotalKeys
 1 file changed, 1 insertion(+)

antirez in commit 73d47d57:
 Signal key as modified when expired on-access.
 1 file changed, 4 insertions(+), 2 deletions(-)

antirez in commit b7cb28d5:
 Tracking: first set of tests for the feature.
 1 file changed, 66 insertions(+)

antirez in commit 1db72571:
 Tracking: fix operators precedence error in bcast check.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit fe96e29d:
 Tracking: fix behavior when switchinig from normal to BCAST.
 1 file changed, 11 insertions(+), 1 deletion(-)

antirez in commit f21be1ec:
 Tracking: fix sending messages bug + tracking off bug.
 2 files changed, 28 insertions(+), 20 deletions(-)

antirez in commit 6fb1aa23:
 Tracking: BCAST: basic feature now works.
 3 files changed, 55 insertions(+), 40 deletions(-)

antirez in commit d4fe79a1:
 Tracking: BCAST: broadcasting of keys in prefixes implemented.
 2 files changed, 94 insertions(+), 9 deletions(-)

antirez in commit abb81c63:
 Tracking: BCAST: registration in the prefix table.
 3 files changed, 67 insertions(+), 20 deletions(-)

antirez in commit 77da9608:
 Tracking: BCAST: parsing of the options + skeleton.
 4 files changed, 73 insertions(+), 19 deletions(-)

antirez in commit 3e8c69a9:
 Tracking: always reply with an array of keys.
 2 files changed, 10 insertions(+), 3 deletions(-)

antirez in commit a788c373:
 Tracking: minor change of names and new INFO field.
 4 files changed, 11 insertions(+), 4 deletions(-)

antirez in commit df838927:
 Rax.c: populate data field after random walk.
 1 file changed, 1 insertion(+)

antirez in commit 0517da36:
 Tracking: rename INFO field with total items.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 3c16d6b3:
 Tracking: first conversion from hashing to key names.
 3 files changed, 84 insertions(+), 114 deletions(-)

Oran Agra in commit 3b4f1477:
 add no-slowlog option to RM_CreateCommand
 1 file changed, 3 insertions(+)

Khem Raj in commit 5e762d84:
 Mark extern definition of SDS_NOINIT in sds.h
 1 file changed, 1 insertion(+), 1 deletion(-)

lifubang in commit 54f5499a:
 correct help info for --user and --pass
 1 file changed, 2 insertions(+), 2 deletions(-)

Seunghoon Woo in commit 0c952b13:
 [FIX] revisit CVE-2015-8080 vulnerability
 1 file changed, 6 insertions(+), 4 deletions(-)

Guy Benoish in commit dd34f703:
 Diskless-load emptyDb-related fixes
 3 files changed, 44 insertions(+), 28 deletions(-)

lifubang in commit 5e042dbc:
 fix ssl flag check for redis-cli
 1 file changed, 10 insertions(+), 9 deletions(-)

Guy Benoish in commit dcbe8bfa:
 Exclude "keymiss" notification from NOTIFY_ALL
 5 files changed, 12 insertions(+), 7 deletions(-)

Oran Agra in commit 36caf2e4:
 update RM_SignalModifiedKey doc comment
 1 file changed, 2 insertions(+), 1 deletion(-)

Oran Agra in commit 3067352a:
 Add handling of short read of module id in rdb
 1 file changed, 4 insertions(+), 1 deletion(-)

Yossi Gottlieb in commit 9baaf858:
 TLS: Update documentation.
 2 files changed, 32 insertions(+), 31 deletions(-)

Oran Agra in commit 4440133e:
 A few non-data commands that should be allowed while loading or stale
 1 file changed, 8 insertions(+), 8 deletions(-)

Oran Agra in commit c9577941:
 Memory leak when bind config is provided twice
 1 file changed, 4 insertions(+)

Oran Agra in commit 1333a46b:
 fix maxmemory config warning
 1 file changed, 3 insertions(+), 2 deletions(-)

Oran Agra in commit 8e7282eb:
 Fix client flags to be int64 in module.c
 1 file changed, 3 insertions(+), 3 deletions(-)

Oran Agra in commit a678390e:
 moduleRDBLoadError, add key name, and use panic rather than exit
 1 file changed, 5 insertions(+), 4 deletions(-)

Oran Agra in commit 919fbf42:
 reduce repeated calls to use_diskless_load
 1 file changed, 3 insertions(+), 4 deletions(-)

Oran Agra in commit 22e45d46:
 freeClientAsync don't lock mutex if there's just one thread
 1 file changed, 6 insertions(+), 1 deletion(-)

Oran Agra in commit ba289244:
 move restartAOFAfterSYNC from replicaofCommand to replicationUnsetMaster
 1 file changed, 4 insertions(+), 3 deletions(-)

Oran Agra in commit f42ce57d:
 stopAppendOnly resets aof_rewrite_scheduled
 1 file changed, 1 insertion(+)

Oran Agra in commit df096bc9:
 add SAVE subcommand to ACL HELP and top comment
 1 file changed, 2 insertions(+)

Oran Agra in commit a55e5847:
 DEBUG HELP - add PROTOCOL
 1 file changed, 3 insertions(+), 2 deletions(-)

Guy Benoish in commit 5a6cfbf4:
 Some refactroing using getClientType instead of CLIENT_SLAVE
 2 files changed, 18 insertions(+), 26 deletions(-)

Guy Benoish in commit fae306b3:
 Fix small bugs related to replica and monitor ambiguity
 2 files changed, 8 insertions(+), 6 deletions(-)

Yossi Gottlieb in commit 73630966:
 TLS: Some redis.conf clarifications.
 1 file changed, 10 insertions(+), 11 deletions(-)

Oran Agra in commit 488e1947:
 config.c verbose error replies for CONFIG SET, like config file parsing
 1 file changed, 31 insertions(+), 97 deletions(-)

Oran Agra in commit c82ccf06:
 memoryGetKeys helper function so that ACL can limit access to keys for MEMORY command
 3 files changed, 18 insertions(+), 1 deletion(-)

antirez in commit 51c1a9f8:
 ACL LOG: make max log entries configurable.
 4 files changed, 19 insertions(+)

antirez in commit ea1e1b12:
 ACL LOG: test for AUTH reason.
 1 file changed, 9 insertions(+)

antirez in commit 7379c78a:
 ACL LOG: log failed auth attempts.
 5 files changed, 34 insertions(+), 12 deletions(-)

antirez in commit 9f6e84f6:
 ACL LOG: implement a few basic tests.
 1 file changed, 87 insertions(+)

antirez in commit 82790e51:
 ACL LOG: also log ACL errors in the scripting/MULTI ctx.
 2 files changed, 6 insertions(+), 2 deletions(-)

antirez in commit 943008eb:
 ACL LOG: implement LOG RESET.
 1 file changed, 6 insertions(+), 2 deletions(-)

antirez in commit e271a611:
 ACL LOG: group similar entries in a given time delta.
 1 file changed, 58 insertions(+), 3 deletions(-)

antirez in commit f1974d5d:
 ACL LOG: actually emit entries.
 3 files changed, 34 insertions(+), 5 deletions(-)

antirez in commit d9b153c9:
 ACL LOG: implement ACL LOG subcommadn skeleton.
 1 file changed, 37 insertions(+)

antirez in commit 577fc438:
 ACL LOG: data structures and initial functions.
 5 files changed, 54 insertions(+), 5 deletions(-)

Leo Murillo in commit f7a94526:
 Set ZSKIPLIST_MAXLEVEL to optimal value given 2^64 elements and p=0.25
 1 file changed, 1 insertion(+), 1 deletion(-)

WuYunlong in commit eecfa979:
 Fix lua related memory leak.
 1 file changed, 1 insertion(+)

WuYunlong in commit d2509811:
 Add tcl regression test in scripting.tcl to reproduce memory leak.
 1 file changed, 5 insertions(+)

Yossi Gottlieb in commit 29d4a150:
 TLS: Fix missing initialization in redis-cli.
 1 file changed, 9 insertions(+)

Oran Agra in commit ec0c61da:
 fix uninitialized info_cb var in module.c
 1 file changed, 1 insertion(+)

Guy Benoish in commit 6fe55c2f:
 ld2string should fail if string contains \0 in the middle
 5 files changed, 20 insertions(+), 11 deletions(-)

antirez in commit bbce3ba9:
 Add more info in the unblockClientFromModule() function.
 1 file changed, 7 insertions(+), 1 deletion(-)

Guy Benoish in commit 40295fb3:
 Modules: Fix blocked-client-related memory leak
 3 files changed, 51 insertions(+), 6 deletions(-)

antirez in commit 8e9d19bc:
 Change error message for #6775.
 1 file changed, 2 insertions(+), 2 deletions(-)

Vasyl Melnychuk in commit ba146d4c:
 Make error when submitting command in incorrect context more explicit
 1 file changed, 4 insertions(+), 1 deletion(-)

antirez in commit 721a39dd:
 Document I/O threads in redis.conf.
 1 file changed, 46 insertions(+)

antirez in commit 5be3a15a:
 Setting N I/O threads should mean N-1 additional + 1 main thread.
 1 file changed, 25 insertions(+), 22 deletions(-)

antirez in commit cbabf779:
 Simplify #6379 changes.
 2 files changed, 4 insertions(+), 9 deletions(-)

WuYunlong in commit 658749cc:
 Free allocated sds in pfdebugCommand() to avoid memory leak.
 1 file changed, 1 insertion(+)

WuYunlong in commit 47988c96:
 Fix potential memory leak of clusterLoadConfig().
 1 file changed, 20 insertions(+), 5 deletions(-)

WuYunlong in commit cc90f79b:
 Fix potential memory leak of rioWriteBulkStreamID().
 1 file changed, 4 insertions(+), 1 deletion(-)

antirez in commit ecd17e81:
 Jump to right label on AOF parsing error.
 1 file changed, 6 insertions(+), 4 deletions(-)

antirez in commit 1927932b:
 Port PR #6110 to new connection object code.
 1 file changed, 2 insertions(+), 2 deletions(-)

antirez in commit f2df5773:
 A few comments about main thread serving I/O as well.
 1 file changed, 7 insertions(+), 1 deletion(-)

zhaozhao.zz in commit b3ff8a4b:
 Threaded IO: use main thread to handle read work
 1 file changed, 8 insertions(+), 1 deletion(-)

zhaozhao.zz in commit b1f2c510:
 Threaded IO: use main thread to handle write work
 1 file changed, 10 insertions(+), 2 deletions(-)

ShooterIT in commit 7bbafc56:
 Rename rdb asynchronously
 1 file changed, 7 insertions(+)

Leo Murillo in commit c7f75266:
 Fix bug on KEYS command where pattern starts with * followed by \x00 (null char).
 1 file changed, 1 insertion(+), 1 deletion(-)

Jamie Scott in commit ed7ea13a:
 Update to directive in redis.conf (missing s)
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 3be77623:
 Free fakeclient argv on AOF error.
 1 file changed, 11 insertions(+), 3 deletions(-)

antirez in commit 15f6b748:
 Git ignore: ignore more files.
 1 file changed, 2 insertions(+)

Guy Benoish in commit 1b5bf40c:
 Blocking XREAD[GROUP] should always reply with valid data (or timeout)
 3 files changed, 44 insertions(+), 10 deletions(-)

John Sully in commit 954c20ed:
 Add support for incremental build with header files
 2 files changed, 6 insertions(+), 1 deletion(-)

WuYunlong in commit 11c3afd7:
 Fix petential cluster link error.
 1 file changed, 4 insertions(+)

Yossi Gottlieb in commit b752e83d:
 Add REDISMODULE_CTX_FLAGS_MULTI_DIRTY.
 2 files changed, 8 insertions(+)

hwware in commit e16eb874:
 typo fix in acl.c
 1 file changed, 2 insertions(+), 2 deletions(-)

Itamar Haber in commit 35ea9d23:
 Adjusts 'io_threads_num' max to 128
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 38729126:
 XCLAIM: Create the consumer only on successful claims.
 1 file changed, 4 insertions(+), 2 deletions(-)

yz1509 in commit b9a15303:
 avoid sentinel changes promoted_slave to be its own replica.
 1 file changed, 1 insertion(+), 1 deletion(-)

antirez in commit 5e7e5e6b:
 Fix active expire division by zero.
 1 file changed, 7 insertions(+), 4 deletions(-)

antirez in commit e61dde88:
 Fix duplicated CLIENT SETNAME reply.
 1 file changed, 1 deletion(-)

Guy Benoish in commit cddf1da2:
 Stream: Handle streamID-related edge cases
 4 files changed, 54 insertions(+), 4 deletions(-)

Oran Agra in commit 52ea44e5:
 config.c adjust config limits and mutable
 2 files changed, 7 insertions(+), 7 deletions(-)

antirez in commit 0f28ea16:
 Inline protocol: handle empty strings well.
 1 file changed, 2 insertions(+), 6 deletions(-)

antirez in commit 00e5fefe:
 Fix ip and missing mode in RM_GetClusterNodeInfo().
 1 file changed, 5 insertions(+), 2 deletions(-)

================================================================================
Redis 6.0 RC1   Released Thu Dec 19 09:58:24 CEST 2019
================================================================================

Upgrade urgency LOW: This is the first RC of Redis 6.

Introduction to the Redis 6 release
===================================

Redis 6 improves Redis in a number of key areas and is one of the largest
Redis releases in the history of the project, so here we'll list only
the biggest features in this release:

* The modules system now has a number of new APIs that allow module authors
  to make things otherwise not possible in the past. It is possible to
  store arbitrary module private data in RDB files, to hook on different
  server events, capture and rewrite commands executions, block clients on
  keys, and so forth. 
* The Redis active expire cycle was rewritten for much faster eviction of keys
  that are already expired. Now the effort is tunable.
* Redis now supports SSL on all channels.
* ACL support, you can define users that can run only certain commands and/or
  can only access only certain keys patterns.
* Redis now supports a new protocol called RESP3, which returns more
  semantical replies: new clients using this protocol can understand just
  from the reply what type to return to the calling program.
* There is server-side support for client-side caching of key values. This
  feature is still experimental and will get more changes during the next
  release candidates, but you can already test it and read about it here:
  https://redis.io/topics/client-side-caching
* Redis can now optionally use threads to handle I/O, allowing to serve
  2 times as much operations per second in a single instance when
  pipelining cannot be used.
* Diskless replication is now supported even on replicas: a replica is now
  able, under certain conditions the user can configure, to load the RDB
  in the first synchronization directly from the socket to the memory.
* Redis-benchmark now supports a Redis Cluster mode.
* SRANDMEMBER and similar commands have a better distribution.
* Redis-cli improvements.
* Systemd support rewritten.
* A Redis Cluster proxy was released here:
  https://github.com/artix75/redis-cluster-proxy
* A Disque module for Redis was released here:
  https://github.com/antirez/disque-module

Thanks to all the users and developers who made this release possible.
We'll follow up with more RC releases, until the code looks production ready
and we don't get reports of serious issues for a while.

A special thank you for the amount of work put into this release
(in decreasing number of commits, only listing contributors with more
than a single commit) by:

   685  antirez
    81  zhaozhao.zz
    76  Oran Agra
    51  artix
    28  Madelyn Olson
    27  Yossi Gottlieb
    15  David Carlier
    14  Guy Benoish
    14  Guy Korland
    13  Itamar Haber
     9  Angus Pearson
     8  WuYunlong
     8  yongman
     7  vattezhang
     7  Chris Lamb
     5  Dvir Volk
     5  meir@redislabs.com
     5  chendianqiang
     5  John Sully
     4  dejun.xdj
     4  Daniel Dai
     4  Johannes Truschnigg
     4  swilly22
     3  Bruce Merry
     3  filipecosta90
     3  youjiali1995
     2  James Rouzier
     2  Andrey Bugaevskiy
     2  Brad Solomon
     2  Hamid Alaei
     2  Michael Chaten
     2  Steve Webster
     2  Wander Hillen
     2  Weiliang Li
     2  Yuan Zhou
     2  charsyam
     2  hujie
     2  jem
     2  shenlongxing
     2  valentino
     2  zhudacai 00228490
     2  喜欢兰花山丘

Migrating from 5.0 to 6.0
=========================

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

* The SPOP <count> command no longer returns null when the set key does not
  exist. Now it returns the empty set as it should and as happens when it is
  called with a 0 argument. This is technically a fix, however it changes the
  old behavior.

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

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