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
|
redis (5:6.0.16-1+deb11u2) bullseye-security; urgency=high
* CVE-2022-0543: Prevent a Debian-specific Lua sandbox escape vulnerability.
This vulnerability existed because the Lua library in Debian is provided as
a dynamic library. A "package" variable was automatically populated that
in turn permitted access to arbitrary Lua functionality. As this extended
to, for example, the "execute" function from the "os" module, an attacker
with the ability to execute arbitrary Lua code could potentially execute
arbitrary shell commands.
Thanks to Reginaldo Silva <https://www.ubercomp.com> for discovering and
reporting this issue. (Closes: #1005787)
-- Chris Lamb <lamby@debian.org> Mon, 14 Feb 2022 14:45:00 -0800
redis (5:6.0.16-1+deb11u1) bullseye-security; urgency=high
* New upstream security release:
- 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.
- 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.
- 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.
- 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.
- 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.
- CVE-2021-32626: Specially crafted Lua scripts may result with Heap
buffer overflow.
- 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.
-- Chris Lamb <lamby@debian.org> Mon, 04 Oct 2021 14:37:24 +0100
redis (5:6.0.15-1) unstable; urgency=medium
* New upstream security release.
- CVE-2021-32761: Integer overflow issues with BITFIELD command
on 32-bit systems.
* Bump Standards-Version to 4.5.1.
-- Chris Lamb <lamby@debian.org> Wed, 21 Jul 2021 22:21:54 +0100
redis (5:6.0.14-1) unstable; urgency=medium
* CVE-2021-32625: Fix a vulnerability in the STRALGO LCS command.
(Closes: #989351)
-- Chris Lamb <lamby@debian.org> Tue, 01 Jun 2021 17:35:19 +0100
redis (5:6.0.13-1) unstable; urgency=medium
* New upstream security release:
- CVE-2021-29477: Vulnerability in the STRALGO LCS command.
- CVE-2021-29478: Vulnerability in the COPY command for large intsets.
(Closes: #988045)
* Refresh patches.
-- Chris Lamb <lamby@debian.org> Tue, 04 May 2021 11:06:14 +0100
redis (5:6.0.12-1) unstable; urgency=medium
* New upstream release.
-- Chris Lamb <lamby@debian.org> Sat, 06 Mar 2021 11:03:47 +0000
redis (5:6.0.11-1) unstable; urgency=medium
* New upstream release, incorporating security issues. (Closes: #983446)
- Refresh patches.
-- Chris Lamb <lamby@debian.org> Wed, 24 Feb 2021 11:05:06 +0000
redis (5:6.0.10-4) unstable; urgency=medium
* New upstream release
- Fix cluster access to unaligned memory on ARM architectures with hard
alignment requirements such as armhf and arm64. (Closes: #982504)
* wrap-and-sort -sa.
-- Chris Lamb <lamby@debian.org> Thu, 11 Feb 2021 14:49:41 +0000
redis (5:6.0.9-4) unstable; urgency=medium
* Send systemd readiness notification when we are ready to accept connections
in order to fix systemd integration when Redis is used with replicaof.
Thanks to Guillem Jover for the report and patch. (Closes: #981226)
-- Chris Lamb <lamby@debian.org> Thu, 28 Jan 2021 10:12:06 +0000
redis (5:6.0.9-3) unstable; urgency=medium
* Also remove the /etc/redis directory in purge.
* Allow /etc/redis to be rewritten. Thanks to Yossi Gottlieb for the patch.
(Closes: #981000)
-- Chris Lamb <lamby@debian.org> Mon, 25 Jan 2021 12:44:05 +0000
redis (5:6.0.9-2) unstable; urgency=medium
* Enable systemd Type=notify support. Thanks to Michael Prokop for all his
help in integration. (Closes: #977852)
* Bump Standards-Version to 4.5.1.
-- Chris Lamb <lamby@debian.org> Wed, 13 Jan 2021 11:11:40 +0000
redis (5:6.0.9-1) unstable; urgency=medium
* New upstream release.
- Update patches.
-- Chris Lamb <lamby@debian.org> Tue, 27 Oct 2020 10:24:49 +0000
redis (5:6.0.8-2) unstable; urgency=medium
* Apply a patch from Yossi Gottlieb to fix a crash when reporting RDB/AOF
file errors. (Closes: #972683)
* Refresh patches.
-- Chris Lamb <lamby@debian.org> Thu, 22 Oct 2020 15:50:56 +0100
redis (5:6.0.8-1) unstable; urgency=medium
* New upstream release.
-- Chris Lamb <lamby@debian.org> Wed, 16 Sep 2020 10:57:22 +0100
redis (5:6.0.7-1) unstable; urgency=medium
* New upstream release.
* Refresh patches.
* Set some Forwarded headers.
-- Chris Lamb <lamby@debian.org> Sat, 05 Sep 2020 11:44:29 +0100
redis (5:6.0.6-1) unstable; urgency=medium
* New upstream release.
<https://raw.githubusercontent.com/antirez/redis/6.0/00-RELEASENOTES>
* Refresh patches.
-- Chris Lamb <lamby@debian.org> Sat, 25 Jul 2020 16:05:56 +0100
redis (5:6.0.5-1) unstable; urgency=medium
* New upstream release.
<https://raw.githubusercontent.com/antirez/redis/6.0/00-RELEASENOTES>
-- Chris Lamb <lamby@debian.org> Sat, 13 Jun 2020 10:48:30 +0100
redis (5:6.0.4-1) unstable; urgency=medium
* New upstream release.
<https://raw.githubusercontent.com/antirez/redis/6.0/00-RELEASENOTES>
-- Chris Lamb <lamby@debian.org> Wed, 03 Jun 2020 10:28:58 +0100
redis (5:6.0.3-1) unstable; urgency=medium
* New upstream release.
<https://raw.githubusercontent.com/antirez/redis/6.0/00-RELEASENOTES>
-- Chris Lamb <lamby@debian.org> Wed, 20 May 2020 11:53:47 +0100
redis (5:6.0.1-2) unstable; urgency=medium
* Upload to unstable.
-- Chris Lamb <lamby@debian.org> Sat, 16 May 2020 16:19:33 +0100
redis (5:6.0.1-1) experimental; urgency=medium
* New upstream "General Availability" release.
<https://raw.githubusercontent.com/antirez/redis/6.0/00-RELEASENOTES>
-- Chris Lamb <lamby@debian.org> Wed, 06 May 2020 16:27:19 +0100
redis (5:6.0.0-2) unstable; urgency=medium
* Mark 0004-redis-check-rdb as being flaky for now.
* Wrap long changelog line.
* Correct spelling mistake in autopkgtest comment.
-- Chris Lamb <lamby@debian.org> Sun, 03 May 2020 12:04:50 +0100
redis (5:6.0.0-1) unstable; urgency=medium
* New upstream "GA" release.
<https://raw.githubusercontent.com/antirez/redis/6.0/00-RELEASENOTES>
- Drop 0002-Mark-extern-definition-of-SDS_NOINIT-in-sds.h.patch; merged
upstream.
* Upload to unstable.
- Update debian/gbp.conf.
-- Chris Lamb <lamby@debian.org> Sat, 02 May 2020 23:36:45 +0100
redis (5:6.0~rc4-1) experimental; urgency=medium
* New upstream beta release.
<https://raw.githubusercontent.com/antirez/redis/6.0/00-RELEASENOTES>
* Use the newly-package liblzf-dev package over the local version.
(Closes: #958321)
* Refresh patches.
-- Chris Lamb <lamby@debian.org> Tue, 21 Apr 2020 11:51:41 +0100
redis (5:6.0~rc3-1) experimental; urgency=medium
* New upstream beta release.
<https://raw.githubusercontent.com/antirez/redis/6.0/00-RELEASENOTES>
-- Chris Lamb <lamby@debian.org> Wed, 15 Apr 2020 11:22:59 +0100
redis (5:6.0~rc2-1) experimental; urgency=medium
* New upstream beta release.
<https://raw.githubusercontent.com/antirez/redis/6.0/00-RELEASENOTES>
* Refresh patches.
-- Chris Lamb <lamby@debian.org> Wed, 11 Mar 2020 13:32:21 +0000
redis (5:6.0~rc1-3) experimental; urgency=medium
* Install openssl in the testsuite; required for generating test
certificates.
* Correct a typo in a previous changelog entry.
-- Chris Lamb <lamby@debian.org> Wed, 04 Mar 2020 08:22:14 -0800
redis (5:6.0~rc1-2) experimental; urgency=medium
* Add support for TLS added in Redis 6.x. Thanks to Jason Perrin for the
patch. (Closes: #951255)
* Add a comment regarding why we export a MAKEFLAGS variable in debian/rules.
* Bump Standards-Version to 4.5.0.
-- Chris Lamb <lamby@debian.org> Thu, 13 Feb 2020 14:20:15 +0000
redis (5:6.0~rc1-1) experimental; urgency=medium
* New upstream RC1 release.
<http://antirez.com/news/131>
* Refresh patches.
* Disable using the system hiredis for now, awaiting a a new upstream
release.
-- Chris Lamb <lamby@debian.org> Sat, 21 Dec 2019 15:28:01 +0000
redis (5:5.0.7-7) unstable; urgency=medium
* Add a sleep to ensure that the redis server has started before running the
autopkgtests.
-- Chris Lamb <lamby@debian.org> Thu, 23 Apr 2020 13:32:46 +0100
redis (5:5.0.7-6) unstable; urgency=medium
* No change sourceful upload to permit migration to testing.
-- Chris Lamb <lamby@debian.org> Wed, 22 Apr 2020 16:29:58 +0100
redis (5:5.0.7-5) unstable; urgency=medium
* Ensure that the redis daemon is running prior to running the autopkgtests.
-- Chris Lamb <lamby@debian.org> Tue, 21 Apr 2020 11:47:38 +0100
redis (5:5.0.7-4) unstable; urgency=medium
* Use the newly-package liblzf-dev package over the local version.
(Closes: #958321)
* Don't duplicate long description of the redis-server package in the
metapackage.
-- Chris Lamb <lamby@debian.org> Mon, 20 Apr 2020 22:30:42 +0100
redis (5:5.0.7-3) unstable; urgency=medium
* Fix FTBFS with GCC 10. (Closes: #957751)
* Refresh all patches.
-- Chris Lamb <lamby@debian.org> Fri, 17 Apr 2020 23:11:08 +0100
redis (5:5.0.7-2) unstable; urgency=medium
[ Christian Göttsche ]
* Update systemd service to reflect new names, etc.
* Create directories in postinst with correct SELinux context.
[ Chris Lamb ]
* Bump Standards-Version to 4.5.0.
[ David Prévot ]
* Update long description to remove duplicate information.
-- Chris Lamb <lamby@debian.org> Fri, 07 Feb 2020 22:47:58 +0000
redis (5:5.0.7-1) unstable; urgency=medium
* New upstream bugfix release.
<https://groups.google.com/forum/#!topic/redis-db/LYBeXlUKU6c>
* Bump Standards-Version to 4.4.1.
* Run wrap-and-sort -sa.
-- Chris Lamb <lamby@debian.org> Fri, 22 Nov 2019 20:46:19 -0500
redis (5:5.0.6-1) unstable; urgency=medium
* New upstream release.
<https://groups.google.com/forum/#!topic/redis-db/qTRdgyEbyYU>
* Specify "Rules-Requires-Root: no">.
-- Chris Lamb <lamby@debian.org> Fri, 27 Sep 2019 16:48:24 +0100
redis (5:5.0.5-2) unstable; urgency=medium
* Sourceful upload to unstable to ensure testing migration.
* Bump Standards-Version to 4.4.0.
* Don't build release tags in gitlab-ci.yml.
-- Chris Lamb <lamby@debian.org> Sat, 20 Jul 2019 17:14:37 -0300
redis (5:5.0.5-1) unstable; urgency=medium
* New upstream release.
<https://groups.google.com/forum/#!topic/redis-db/jSAtf64lIW4>
-- Chris Lamb <lamby@debian.org> Wed, 22 May 2019 10:03:21 +0100
redis (5:5.0.4-1) unstable; urgency=medium
* New upstream release.
<https://groups.google.com/forum/#!topic/redis-db/aXusvS8da8g>
-- Chris Lamb <lamby@debian.org> Mon, 18 Mar 2019 14:20:46 -0400
redis (5:5.0.3-4) unstable; urgency=medium
[ Helmut Grohne ]
* Fix cross build failure by building the non-bundled Lua libraries via
dh_auto_build. (Closes: #919862)
-- Chris Lamb <lamby@debian.org> Sun, 20 Jan 2019 22:23:41 +0000
redis (5:5.0.3-3) unstable; urgency=medium
* Fix FTBFS on hurd-i386 by updating patch to aof.c to avoid MAXPATHLEN
reference.
* debian/control:
- Add missing Pre-Depends on ${misc:Pre-Depends}.
- Bump Standards-Version to 4.3.0.
* Bump debhelper compat level to 12.
-- Chris Lamb <lamby@debian.org> Tue, 01 Jan 2019 17:47:28 +0000
redis (5:5.0.3-2) unstable; urgency=medium
* Pass --no-as-needed to ensure linking to the Lua libraries on systems with
--as-needed as the default. (Closes: #916831)
-- Chris Lamb <lamby@debian.org> Fri, 21 Dec 2018 13:18:37 +0000
redis (5:5.0.3-1) unstable; urgency=medium
* New upstream release.
- Drop 0009-Don-t-treat-unsupported-protocols-as-fatal-errors.patch as it
was merged upstream.
- Refresh all patches.
-- Chris Lamb <lamby@debian.org> Tue, 18 Dec 2018 23:48:16 +0000
redis (5:5.0.2-1) unstable; urgency=medium
* New upstream release.
-- Chris Lamb <lamby@debian.org> Sun, 25 Nov 2018 19:04:10 +0100
redis (5:5.0.1-2) unstable; urgency=medium
* Refresh patches.
* Ensure that lack of IPv6 support does not prevent Redis from starting on
Debian where we bind to the ::1 interface by default. (Closes: #900284,
#914354)
-- Chris Lamb <lamby@debian.org> Fri, 23 Nov 2018 18:03:53 +0100
redis (5:5.0.1-1) unstable; urgency=medium
* New upstream release.
* Ensure that Debian-supplied Lua libraries are available using "require"
during Lua scripting to prevent an issue where we could not use the (eg.)
cjson library anymore library anymore. This was a regression introduced in
5:5.0~rc4-3. Thanks to Nicolas Le Manchet <nicolas@lemanchet.fr> for the
report and testcase. (Closes: #913185)
* Refer to /run directly in .service files; /var/run is now merely a symlink
pointing to /run and thus it is now considered best practice to use /run
directly.
* debian/rules:
- Document why we run make in the deps/lua/src directory.
- Add documentation for LUA_LIBS_{DEBIAN,BUNDLED}.
- Call $(MAKE) instead of "make".
- Re-order targets to match usual order.
-- Chris Lamb <lamby@debian.org> Sun, 11 Nov 2018 20:09:51 +0100
redis (5:5.0.0-2) unstable; urgency=medium
* Update our patch to sentinel.conf to ensure the correct runtime PID file
location. (Closes: #911407)
* Listen on ::1 interfaces too for redis-sentinel to match redis-server.
* Also run the new "LOLWUT" command in the redis-cli autopkgtest.
-- Chris Lamb <lamby@debian.org> Fri, 19 Oct 2018 22:36:40 -0400
redis (5:5.0.0-1) unstable; urgency=medium
* New upstream stable release to unstable.
<https://groups.google.com/forum/#!topic/redis-db/l0OXDAlwosU>
* Refresh patches.
* Update Vcs-Git.
-- Chris Lamb <lamby@debian.org> Thu, 18 Oct 2018 21:56:02 -0400
redis (5:5.0~rc5-2) experimental; urgency=medium
* Use the system hiredis now that #907259 has landed. (Closes: #907258)
-- Chris Lamb <lamby@debian.org> Wed, 03 Oct 2018 19:54:17 +0100
redis (5:5.0~rc5-1) experimental; urgency=medium
* New upstream release.
- Drop 0004-SOURCE_DATE_EPOCH.patch; merged upstream.
* debian/watch: Use releases from <https://github.com/antirez/redis/releases>
(not Git) to find RC/beta releases, etc.
-- Chris Lamb <lamby@debian.org> Mon, 24 Sep 2018 21:24:48 +0100
redis (5:5.0~rc4-4) experimental; urgency=medium
* Stop playing whack-a-mole with nondeterminstic testsuite and run with
"|| true" on all architectures. (Closes: #908540)
* Drop ${shlibs:Depends} substvars on "Architecture: any" binary packages.
* Add upstream URIs for patches to support non-embedded jemalloc and Lua.
* Bump Standards-Version to 4.2.1.
-- Chris Lamb <lamby@debian.org> Sat, 15 Sep 2018 19:44:35 +0100
redis (5:5.0~rc4-3) experimental; urgency=medium
* Add support for (and use) a USE_SYSTEM_LUA flag. (Closes: #901669)
* Add support for (and use) a USE_SYSTEM_JEMALLOC flag.
* Refresh 0003-dpkg-buildflags patch.
* Append "-b debian/experimental" to Vcs-Git line to fix "unpushed changes"
vcswatch.cgi false-positives.
-- Chris Lamb <lamby@debian.org> Sun, 26 Aug 2018 14:37:25 +0200
redis (5:5.0~rc4-2) experimental; urgency=medium
* Drop a non-determinstic "dump" test.
-- Chris Lamb <lamby@debian.org> Tue, 07 Aug 2018 11:04:16 +0800
redis (5:5.0~rc4-1) experimental; urgency=medium
* New upstream RC release.
<https://groups.google.com/forum/#!topic/redis-db/aXusvS8da8g>
- Refresh 0002-use-system-jemalloc.patch
- Refresh 0003-dpkg-buildflags.patch
- Refresh 0006-Drop-tests-with-timing-issues.patch
- Refresh 0009-Drop-memory-efficiency-tests-on-advice-from-upstream.patch
-- Chris Lamb <lamby@debian.org> Tue, 07 Aug 2018 11:04:14 +0800
redis (5:4.0.11-3) unstable; urgency=medium
* Stop playing whack-a-mole with nondeterminstic testsuite and run with
"|| true" on all architectures. (Closes: #908540)
* Drop ${shlibs:Depends} substvars on "Architecture: any" binary packages.
* Bump Standards-Version to 4.2.1.
-- Chris Lamb <lamby@debian.org> Sat, 15 Sep 2018 19:55:23 +0100
redis (5:4.0.11-2) unstable; urgency=medium
* Revert "Move to debhelper-compat (= 11) in Build-Depends." as dak will
REJECT with "missing-build-dependency debhelper".
-- Chris Lamb <lamby@debian.org> Mon, 06 Aug 2018 11:42:41 +0800
redis (5:4.0.11-1) unstable; urgency=medium
* New upstream release.
<https://groups.google.com/forum/#!topic/redis-db/aXusvS8da8g>
* Bump Standards-Version to 4.2.0.
* Move to debhelper-compat (= 11) in Build-Depends.
-- Chris Lamb <lamby@debian.org> Mon, 06 Aug 2018 11:42:38 +0800
redis (5:4.0.10-2) unstable; urgency=medium
[ Daniel Shahaf ]
* redis-benchmark(1): Fix default of -n argument. (Closes: #903044)
[ Chris Lamb ]
* Add CVE entries to (released) changelog entry.
* Bump Standards-Version to 4.1.5.
-- Chris Lamb <lamby@debian.org> Thu, 05 Jul 2018 22:14:45 +0200
redis (5:4.0.10-1) unstable; urgency=medium
* CVE-2018-11218, CVE-2018-11219: New upstream security release.
<https://github.com/antirez/redis/issues/5017> for more information.
(Closes: #901495)
-- Chris Lamb <lamby@debian.org> Thu, 14 Jun 2018 08:37:09 +0200
redis (5:4.0.9-4) unstable; urgency=medium
* Update Vcs-* headers to point to salsa.debian.org.
* Move to HTTPS Homepage URI.
* wrap-and-sort -sa.
-- Chris Lamb <lamby@debian.org> Sat, 09 Jun 2018 20:11:35 +0100
redis (5:4.0.9-3) unstable; urgency=medium
* Make /var/log/redis, etc. owned by root:adm, not root:root. Thanks to
Thomas Goirand. (Closes: #900496)
-- Chris Lamb <lamby@debian.org> Fri, 01 Jun 2018 08:56:48 +0100
redis (5:4.0.9-2) unstable; urgency=medium
* Ignore test failures on problematic archs.
* Bump Standards-Version to 4.1.4.
-- Chris Lamb <lamby@debian.org> Tue, 08 May 2018 23:08:36 -0700
redis (5:4.0.9-1) unstable; urgency=medium
* New upstream release.
* Refresh all patches.
-- Chris Lamb <lamby@debian.org> Mon, 02 Apr 2018 20:37:12 +0100
redis (5:4.0.8-2) unstable; urgency=medium
* Also listen on ::1 for IPv6 by default. (Closes: #891432)
-- Chris Lamb <lamby@debian.org> Sun, 25 Feb 2018 14:59:55 +0000
redis (5:4.0.8-1) unstable; urgency=medium
* New upstream release.
<https://groups.google.com/forum/#!topic/redis-db/FGplxMEGEMo>
* Update lintian overrides after rename of
debian-watch-may-check-gpg-signature →
debian-watch-does-not-check-gpg-signature.
* Drop "recursive" argument to chown in postinst script to prevent hardlink
vulnerability.
-- Chris Lamb <lamby@debian.org> Mon, 05 Feb 2018 17:09:44 +0000
redis (5:4.0.7-1) unstable; urgency=medium
* New upstream release.
<https://groups.google.com/forum/#!topic/redis-db/gngqHoh-kRM>
* Refresh patches.
-- Chris Lamb <lamby@debian.org> Wed, 24 Jan 2018 22:10:06 +1100
redis (5:4.0.6-5) unstable; urgency=medium
* Update redis-sentinel's symlink to usr/bin/redis-check-rdb to match
redis-server. This avoids a dangling symlink (and thus a broken package) if
redis-server is not installed. (Closes: #884321)
* Move to debhelper compat level 11.
- Drop reference to --with=systemd - systemd-sequence is no longer provided
in compat >= 11.
* Use https URI for copyright format specification in debian/copyright.
-- Chris Lamb <lamby@debian.org> Sat, 20 Jan 2018 11:21:11 +1100
redis (5:4.0.6-4) unstable; urgency=medium
* Re-add procps to Build-Depends. (Closes: #887075)
-- Chris Lamb <lamby@debian.org> Sat, 13 Jan 2018 19:01:56 +0530
redis (5:4.0.6-3) unstable; urgency=medium
* Use --clients argument to runtest to force single-threaded operation over
using taskset.
* Bump Standards-Version to 4.1.3.
-- Chris Lamb <lamby@debian.org> Sat, 13 Jan 2018 12:55:27 +0530
redis (5:4.0.6-2) unstable; urgency=medium
* Replace redis-sentinel's main dependency with redis-tools from
redis-server, necessarily moving the creating/deletion of the "redis" user
and associated data and log directories to redis-tools. (Closes: #884321)
* Add stub manpages for redis-sentinel, redis-check-aof and redis-check-rdb.
* Bump Standards-Version to 4.1.2.
-- Chris Lamb <lamby@debian.org> Thu, 14 Dec 2017 10:08:30 +0000
redis (5:4.0.6-1) unstable; urgency=medium
* New upstream bugfix release.
-- Chris Lamb <lamby@debian.org> Tue, 05 Dec 2017 13:00:47 +0000
redis (5:4.0.5-1) unstable; urgency=medium
* New upstream release.
* debian/control: Use "metapackage" over "meta-package".
* debian/patches:
- Drop 0008-CVE-2017-15047-Fix-buffer-overflows-occurring-readin.
- Refresh.
-- Chris Lamb <lamby@debian.org> Sat, 02 Dec 2017 18:54:58 +0000
redis (4:4.0.2-9) unstable; urgency=medium
* Also update aof.c for MAXPATHLEN issues. (Closes: #881684)
-- Chris Lamb <lamby@debian.org> Thu, 16 Nov 2017 10:21:37 +0900
redis (4:4.0.2-8) unstable; urgency=medium
* Use get_current_dir_name over PATHMAX, etc. (Closes: #881684)
* Don't rely on taskset existing for kFreeBSD-*. (Closes: #881683)
* Drop "memory efficiency" tests on advice from upstream. (Closes: #881682)
* Correct BSD-3-clause -> BSD-2-clause for Marc Alexander Lehmann's
attribution in debian/copyright.
* Let package be bin-NMUable.
-- Chris Lamb <lamby@debian.org> Thu, 16 Nov 2017 03:50:00 +0900
redis (4:4.0.2-7) unstable; urgency=medium
* Add a "redis" metapackage. (Closes: #876475)
* Drop conditionally exporting FORCE_LIBC_MALLOC; upstreamed since 2.6.0-1.
-- Chris Lamb <lamby@debian.org> Sun, 12 Nov 2017 08:54:24 +0000
redis (4:4.0.2-6) unstable; urgency=medium
* Correct locations of redis-sentinel pidfiles. Thanks to Nicolas Payart for
the patch. (Closes: #880980)
-- Chris Lamb <lamby@debian.org> Mon, 06 Nov 2017 22:02:19 +0000
redis (4:4.0.2-5) unstable; urgency=medium
* CVE-2017-15047: Replace existing patch with upstream-blessed version that
covers another case. (Closes: #878076)
-- Chris Lamb <lamby@debian.org> Tue, 31 Oct 2017 11:13:40 +0100
redis (4:4.0.2-4) unstable; urgency=medium
* CVE-2017-15047: Add input validity checking to redis cluster config slot
numbers. (Closes: #878076)
* Drop debian/bin/generate-parts script now we aren't calling it.
* Correct Bash-esque in NEWS.
* Upstream are not providing signed tarballs, so ignore the
"debian-watch-may-check-gpg-signature" Lintian tag,
* Drop trailing whitespace in debian/changelog.
* Use HTTPS URI in debian/watch.
-- Chris Lamb <lamby@debian.org> Mon, 30 Oct 2017 10:32:04 +0000
redis (4:4.0.2-3) unstable; urgency=medium
* Drop Debian-specific support for
/etc/redis/redis-{server,sentinel}.{pre,post}-{up,down}.d and remove them
if unchanged.
* Include systemd redis-server@.service and redis-sentinel@.service template
files to easily run multiple instances. (Closes: #877702)
* Patch redis.conf and sentinel.conf with quilt instead of maintaining our
own versions under debian/.
* Refresh all patches.
* Bump Standards-Version to 4.1.1.
-- Chris Lamb <lamby@debian.org> Thu, 12 Oct 2017 14:54:27 -0400
redis (4:4.0.2-2) unstable; urgency=medium
* Update 0004-redis-check-rdb test to ensure that redis.rdb exists before
testing it.
-- Chris Lamb <lamby@debian.org> Mon, 25 Sep 2017 10:16:18 +0100
redis (4:4.0.2-1) unstable; urgency=medium
* New upstream release ("Upgrade urgency HIGH: Several potentially critical
bugs fixed.")
* Bump Standards-Version to 4.1.0.
* Drop Build-Depends on dh-systemd (>= 1.5).
-- Chris Lamb <lamby@debian.org> Sun, 24 Sep 2017 19:46:10 +0100
redis (4:4.0.1-7) unstable; urgency=medium
* Don't let sentinel tests fail the build; they use too many timers to be
useful and/or meaningful. (Closes: #872075)
-- Chris Lamb <lamby@debian.org> Mon, 14 Aug 2017 07:35:38 -0700
redis (4:4.0.1-6) unstable; urgency=medium
* Don't install completions to
/usr/share/bash-completion/completions/debian/bash_completion/.
-- Chris Lamb <lamby@debian.org> Sun, 13 Aug 2017 21:29:07 -0700
redis (4:4.0.1-5) unstable; urgency=medium
* Tidy debian/tests/control.
* Drop even more tests with timing issues.
-- Chris Lamb <lamby@debian.org> Sun, 13 Aug 2017 13:02:52 -0700
redis (4:4.0.1-4) unstable; urgency=medium
* Split tests into separate files.
* Tighten systemd/seccomp hardening.
-- Chris Lamb <lamby@debian.org> Sat, 12 Aug 2017 12:53:50 -0400
redis (4:4.0.1-3) unstable; urgency=medium
* Drop yet more non-deterministic tests.
-- Chris Lamb <lamby@debian.org> Sat, 05 Aug 2017 21:01:03 -0400
redis (4:4.0.1-2) unstable; urgency=medium
* Skip yet more non-deterministic replication tests that rely on timing.
(Closes: #857855)
-- Chris Lamb <lamby@debian.org> Tue, 25 Jul 2017 18:57:39 +0100
redis (4:4.0.1-1) unstable; urgency=medium
* New upstream version.
* Install 00-RELEASENOTES as the upstream changelog.
* Use "dh_auto_clean" over "clean" target.
-- Chris Lamb <lamby@debian.org> Mon, 24 Jul 2017 16:27:51 +0100
redis (4:4.0.0-3) unstable; urgency=medium
* Add -latomic to LDFLAGS to attempt to avoid FTBFS on mips{,el}.
* Allow ulimit calls to fail in sysvinit scripts to avoid issues when
running in a containerised environment. See
<https://github.com/travis-ci/travis-ci/issues/7941>.
-- Chris Lamb <lamby@debian.org> Sun, 23 Jul 2017 15:42:18 +0100
redis (4:4.0.0-2) unstable; urgency=medium
* Make /usr/bin/redis-server in the main redis-server package a symlink to
/usr/bin/redis-check-rdb in the redis-tools package.
Whilst this prevents a wasteful duplication of a binary, it moreover
ensures there are no duplicate debug symbols which was preventing the
simultaneous installation of the redis-server-dbgsym and
redis-tools-dbgsym packages.
Note that this results in the peculiar (and possibily confusing) situation
where the main package does not have the main binary anymore, or indeed
any binaries whatsoever. See also the previous parallel attempt at a
symlink changes in 3.2.6-3 which was reverted in 3.2.8-3. Thanks to Adrian
Bunk for the report. (Closes: #868551)
-- Chris Lamb <lamby@debian.org> Sun, 16 Jul 2017 22:38:57 +0100
redis (4:4.0.0-1) unstable; urgency=medium
* New upstream major release.
* Bump Standards-Version to 4.0.0.
* Refresh, renumber and reorganise patches.
-- Chris Lamb <lamby@debian.org> Fri, 14 Jul 2017 22:00:59 +0100
redis (3:3.2.9-1) unstable; urgency=medium
* New upstream minor bugfix release.
* Specify <!nocheck> for test-related Build-Depends.
* Bump debhelper compatibility level to 10.
-- Chris Lamb <lamby@debian.org> Thu, 18 May 2017 12:32:02 +0200
redis (3:3.2.8-3) unstable; urgency=medium
* Revert the creation of the redis-tools:/usr/bin/redis-check-rdb ->
redis-server:/usr/bin/redis-server symlink to avoid a dangling symlink if
only the redis-tools binary package is installed.
This was a regression since 3:3.2.6-3 where we attempted to avoid shipping
duplicate file; the redis-server binary changes behaviour based on the
contents of argv.
One alternative would be to ship a symlink in redis-server but that would
mean users wishing to check RDB databases would have to install the server
package, so reverting to shipping a duplicate file seems justified.
(Closes: #858519)
-- Chris Lamb <lamby@debian.org> Thu, 23 Mar 2017 12:00:22 +0000
redis (3:3.2.8-2) unstable; urgency=medium
* Avoid conflict between RuntimeDirectory and tmpfiles.d(5) both attempting
to create /run/redis with differing permissions.
This prevents an installation error on Jessie where /run/redis was first
being created by the tmpfiles.d(5) mechanism and then subsequently via the
RuntimeDirectory directive. Due to a bug in Jessie's systemd, this caused a
package installation error as systemd was too strict about permissions if
the target already exists: <https://github.com/systemd/systemd/pull/896>
The redis-{server,sentinel} daemon would actually start successfully a few
milliseconds later due to the Restart=always directive.
We work around this this by dropping the tmpfiles.d(5) handling and moving
entirely to RuntimeDirectory{,Mode}; we are not using any special handling
requiring tmpfiles.d(5) and we appear to need RuntimeDirectory anyway for
#846350. (Closes: #856116)
-- Chris Lamb <lamby@debian.org> Sat, 11 Mar 2017 12:53:14 +0000
redis (3:3.2.8-1) unstable; urgency=medium
* New upstream release.
-- Chris Lamb <lamby@debian.org> Mon, 13 Feb 2017 10:15:53 +1300
redis (3:3.2.7-1) unstable; urgency=medium
* New upstream release.
-- Chris Lamb <lamby@debian.org> Wed, 01 Feb 2017 09:27:05 +1300
redis (3:3.2.6-6) unstable; urgency=medium
* Use --cpu-list 0 (not --cpu-list 1) to ensure compilation on single-CPU
machines. (Closes: #852347)
-- Chris Lamb <lamby@debian.org> Tue, 24 Jan 2017 11:59:02 +1300
redis (3:3.2.6-5) unstable; urgency=medium
* Re-add taskset calls to try and avoid FTBFS due to parallelism in upstream
test suite.
-- Chris Lamb <lamby@debian.org> Mon, 23 Jan 2017 13:24:39 +1300
redis (3:3.2.6-4) unstable; urgency=medium
* Expand the documentation in redis-server.service and redis-sentinel
regarding the default hardening options.
-- Chris Lamb <lamby@debian.org> Sat, 21 Jan 2017 11:21:33 +1100
redis (3:3.2.6-3) unstable; urgency=medium
* Don't ship a "duplicate" redis-server binary in redis-tools as
/usr/bin/redis-check-rdb (it checks argv to change its behaviour) by
replacing it with a symlink. Found by <https://dedup.debian.net/>.
-- Chris Lamb <lamby@debian.org> Wed, 11 Jan 2017 17:04:33 +0000
redis (3:3.2.6-2) unstable; urgency=medium
* Rename RunTimeDirectory -> RuntimeDirectory in .service files.
(Closes: #850534)
* Refresh all patches with pq import -> pq export.
* Tidy all patches, updating descriptions and use Pq-Topic to organise.
-- Chris Lamb <lamby@debian.org> Sat, 07 Jan 2017 18:06:14 +0000
redis (3:3.2.6-1) unstable; urgency=medium
* New upstream release.
* Add debian/gbp.conf to reflect new repository layout.
-- Chris Lamb <lamby@debian.org> Tue, 06 Dec 2016 09:23:20 +0000
redis (3:3.2.5-6) unstable; urgency=medium
* Add missing Depends on lsb-base for /lib/lsb/init-functions usage in
redis-sentinel's initscript too. See #838966 for the parallel change to
redis-server's initscript.
-- Chris Lamb <lamby@debian.org> Thu, 01 Dec 2016 12:07:51 +0000
redis (3:3.2.5-5) unstable; urgency=medium
* Add RunTimeDirectory=redis to systemd .service files.
(Closes: #846350)
-- Chris Lamb <lamby@debian.org> Thu, 01 Dec 2016 11:48:51 +0000
redis (3:3.2.5-4) unstable; urgency=medium
* Install upstream's MANIFESTO and README.md.
-- Chris Lamb <lamby@debian.org> Wed, 23 Nov 2016 15:45:48 +0000
redis (3:3.2.5-3) unstable; urgency=medium
* Also run redis-benchmark in autopkgtests to stress-test the installation
better.
-- Chris Lamb <lamby@debian.org> Sun, 13 Nov 2016 15:03:18 +0000
redis (3:3.2.5-2) unstable; urgency=medium
* Tighten permissions of /var/{lib,log}/redis. (Closes: #842987)
- chmod(1) directories to 0750.
- Allow local administrator to override permissions with
dpkg-statoverride.
- Set UMask= in .service files, at least to match SystemV initscripts.
-- Chris Lamb <lamby@debian.org> Thu, 03 Nov 2016 12:08:08 +0000
redis (3:3.2.5-1) unstable; urgency=medium
* New upstream release.
- Refresh debian/patches/0003-use-system-jemalloc.patch to accomodate
missing -ldl flag.
* Refresh all patches with "pq import / pq export".
-- Chris Lamb <lamby@debian.org> Wed, 26 Oct 2016 16:36:49 +0100
redis (3:3.2.4-2) unstable; urgency=medium
* Ensure that sentinel's configuration actually writes to a pidfile location
so that systemd can detect that the daemon has started.
-- Chris Lamb <lamby@debian.org> Mon, 10 Oct 2016 12:05:20 +0100
redis (3:3.2.4-1) unstable; urgency=medium
* New upstream release.
* Sync debian/sentinel.conf.
* Add missing -ldl for dladdr(3).
* Add missing Depends on lsb-base for /lib/lsb/init-functions usage in
initscript. Thanks to Santiago Vila. (Closes: #838966)
-- Chris Lamb <lamby@debian.org> Tue, 27 Sep 2016 11:12:13 +0200
redis (3:3.2.3-2) unstable; urgency=medium
* Call `ulimit -n 65536` by default from sysvinit scripts so behaviour is
consistent with systemd.
* Bump epoch as the "2" prefix makes it look like we are shipping version 2.x
of Redis itself.
-- Chris Lamb <lamby@debian.org> Mon, 05 Sep 2016 11:23:18 +0100
redis (2:3.2.3-1) unstable; urgency=medium
* New upstream release.
- Drop 0007-Avoid-world-readable-.rediscli_history-Closes-832460.patch as
was applied upstream.
* Add copyright-format 1.0 headers.
- Use "BSD-3-clause" over "BSD".
- Use separate ``License`` paragraphs.
- Ensure all wildcards in ``Files:`` sections match.
* Check we are running as root in LSB initscripts.
* Add debian/README.source regarding debian/{redis,sentinel}.conf.
-- Chris Lamb <lamby@debian.org> Tue, 02 Aug 2016 13:40:01 -0400
redis (2:3.2.2-1) unstable; urgency=medium
* New upstream release.
- Sync debian/redis.conf with upstream.
- Sync debian/sentinel.conf with upstream.
-- Chris Lamb <lamby@debian.org> Fri, 29 Jul 2016 10:08:08 -0400
redis (2:3.2.1-4) unstable; urgency=high
* Avoid race condition by setting and resetting umask(2) when
writing to ~/.rediscli_history. (Closes: #832460)
* Skip replication tests with timing issues.
-- Chris Lamb <lamby@debian.org> Thu, 28 Jul 2016 08:35:50 -0400
redis (2:3.2.1-3) unstable; urgency=medium
* Avoid world_readable ~/.rediscli_history files. Thanks to kpcyrd
<kpcyrd@rxv.cc>. (Closes: #832460)
-- Chris Lamb <lamby@debian.org> Tue, 26 Jul 2016 23:48:07 -0400
redis (2:3.2.1-2) unstable; urgency=medium
* Avoid race conditions in upstream test suite. Thanks to Daniel Schepler
<dschepler@gmail.com>. (Closes: #830500)
-- Chris Lamb <lamby@debian.org> Wed, 13 Jul 2016 09:56:06 +0200
redis (2:3.2.1-1) unstable; urgency=medium
* New upstream release.
* Sync debian/redis.conf
-- Chris Lamb <lamby@debian.org> Sat, 18 Jun 2016 20:13:44 +0100
redis (2:3.2.0-3) unstable; urgency=medium
* Skip logging tests as not all architectures support it yet.
* Tidy patches.
-- Chris Lamb <lamby@debian.org> Mon, 16 May 2016 10:28:51 +0100
redis (2:3.2.0-2) unstable; urgency=medium
* Update redis.conf.
-- Chris Lamb <lamby@debian.org> Sat, 07 May 2016 11:05:52 +0100
redis (2:3.2.0-1) unstable; urgency=medium
* New upstream release.
* Update 03-use-system-jemalloc.diff.
* Install redis-check-rdb (was: redis-check-dump).
* Bump Standards-Version to 3.9.8.
-- Chris Lamb <lamby@debian.org> Fri, 06 May 2016 23:55:02 +0100
redis (2:3.0.7-4) unstable; urgency=medium
* Actually specify a value for LimitNOFILE.
-- Chris Lamb <lamby@debian.org> Thu, 07 Apr 2016 11:08:34 +0100
redis (2:3.0.7-3) unstable; urgency=medium
* Update .travis.yml.
* Update redis-benchmark manpage. Thanks to Joe Doherty (docapotamus).
* Add LimitNOFILE to allow a higher number of open file descriptors
<https://github.com/lamby/pkg-redis/issues/8>. Thanks to @alexber220.
-- Chris Lamb <lamby@debian.org> Wed, 06 Apr 2016 15:23:06 +0100
redis (2:3.0.7-2) unstable; urgency=medium
* Correct SOURCE_DATE_EPOCH patch to invert conditional. Thanks to Reiner
Herrmann <reiner@reiner-h.de>.
-- Chris Lamb <lamby@debian.org> Tue, 02 Feb 2016 10:53:26 +0100
redis (2:3.0.7-1) unstable; urgency=medium
* New upstream release.
* Actually drop unused 05-reproducible-build.diff file.
* Move to https Vcs-Git URI.
-- Chris Lamb <lamby@debian.org> Fri, 29 Jan 2016 14:56:43 +0100
redis (2:3.0.6-2) unstable; urgency=medium
* Ensure that we always properly cleanup test processes (Closes: #808862)
* Add explicit Build-Depends on procps.
- Drop explicit pkill.
* Use SOURCE_DATE_EPOCH instead of dpkg-parsechangelog so patch can go
upstream.
-- Chris Lamb <lamby@debian.org> Wed, 06 Jan 2016 11:38:14 +0000
redis (2:3.0.6-1) unstable; urgency=medium
* New upstream release.
* Drop 06-CVE-2015-8080-Integer-wraparound-in-lua_struct.c-cau.patch as an
equivalent change merged upstream.
* Don't fail if redis user already exists. (Closes: #774736)
-- Chris Lamb <lamby@debian.org> Sat, 19 Dec 2015 11:27:41 +0000
redis (2:3.0.5-4) unstable; urgency=high
* CVE-2015-8080: Integer wraparound in lua_struct.c causing stack-based
buffer overflow (Closes: #804419)
* Correct call to /bin/kill in redis-{server,sentinel}.service to avoid
"kill: invalid argument T" messages when $MAINPID is not set.
-- Chris Lamb <lamby@debian.org> Sat, 21 Nov 2015 16:22:45 +0200
redis (2:3.0.5-3) unstable; urgency=medium
* Add a redis-sentinel.tmpfile matching redis-server.tmpfile.
* wrap-and-sort -sa
* Rebase all patches with `gbp pq`.
-- Chris Lamb <lamby@debian.org> Fri, 30 Oct 2015 10:54:30 +0000
redis (2:3.0.5-2) unstable; urgency=medium
* Also specify `ProtectSystem=true` over `ProtectSystem=full` in
redis-server.service so that it can write its own configuration file
when being run in cluster mode. (Closes: #803366)
-- Chris Lamb <lamby@debian.org> Fri, 30 Oct 2015 00:01:17 +0000
redis (2:3.0.5-1) unstable; urgency=medium
* New upstream release.
- Sync ./redis.conf and ./debian/redis.conf.
-- Chris Lamb <lamby@debian.org> Thu, 15 Oct 2015 16:12:17 +0100
redis (2:3.0.4-8) unstable; urgency=medium
* Use `ProtectSystem=true` over `ProtectSystem=full` in
redis-sentinel.service so that it can write its own configuration file
under /etc. Thanks to Pete Hicks <jph@bebo.com> for the report and fix.
(Closes: #799696)
-- Chris Lamb <lamby@debian.org> Tue, 13 Oct 2015 20:46:23 +0100
redis (2:3.0.4-7) unstable; urgency=medium
* Change the default (and commented-out) value for "unixsocket" from
/tmp/redis.sock -> /var/run/redis/redis.sock so that it will work even
under systemd's PrivateTmp=True. Thanks to
Chris <Fisch.666@gmx.de> (Closes: #801464)
-- Chris Lamb <lamby@debian.org> Sat, 10 Oct 2015 21:11:57 +0200
redis (2:3.0.4-6) unstable; urgency=medium
* Allow redis-sentinel to actually write to its own directory;
ReadWriteDirectories cannot take a filename as I previously thought.
Thanks to Bernd Zeimetz <b.zeimetz@conova.com> for the prompt report.
(Closes: #799696)
-- Chris Lamb <lamby@debian.org> Tue, 29 Sep 2015 23:24:31 +0200
redis (2:3.0.4-5) unstable; urgency=medium
* Don't install /etc/redis/{redis,sentinel}.conf world-readable as they may
contain passwords, additionally setting the ownership to ensure they can
read their own configuration. (Closes: #800435)
* Disable CAP_SYS_PTRACE in systemd service files
* Add Documentation= header to systemd service files.
* Add a "redis" systemd unit alias.
-- Chris Lamb <lamby@debian.org> Tue, 29 Sep 2015 17:42:22 +0200
redis (2:3.0.4-4) unstable; urgency=medium
* Make the parallel change in 2:30.4-3 to redis-server's initscript, not just
redis-sentinel's.
-- Chris Lamb <lamby@debian.org> Mon, 14 Sep 2015 14:18:42 +0100
redis (2:3.0.4-3) unstable; urgency=medium
* Specific `-s /bin/sh` in su's call to start run-parts as the redis's user's
shell of /bin/false was preventing it from starting under sysvinit. Thanks to
Michal Humpula <michal.humpula@hudrydum.cz>. (Closes: #798951)
-- Chris Lamb <lamby@debian.org> Mon, 14 Sep 2015 14:13:26 +0100
redis (2:3.0.4-2) unstable; urgency=medium
* Add PIDFile= to systemd service files.
* Run /etc/redis/redis-server.post-up.d (etc.) under the 'redis' user, not
root in initscript.
- Document this in 00_example files.
* Execute run-parts files under systemd, not just under sysvinit.
(Closes: #798771)
* Add rudimentary hardening under systemd. (Closes: #798770)
-- Chris Lamb <lamby@debian.org> Sun, 13 Sep 2015 07:18:13 +0100
redis (2:3.0.4-1) unstable; urgency=medium
* New upstream release.
- Sync debian/redis.conf.
* Put --system further on to avoid issues with lintian false-positive (and to
match the manpage).
-- Chris Lamb <lamby@debian.org> Tue, 08 Sep 2015 10:28:51 +0100
redis (2:3.0.3-3) unstable; urgency=medium
* Replace ExecStop in systemd configuration with TimeoutStopSpec. Calls to
`redis-cli shutdown` were not reliable if the port/UNIX socket had changed
from the defaults (or is not accessible due to firewalling, permissions,
etc.)
Note that we cannot simply remove ExecStop (hence TimeoutStopSpec) as we
must wait for the server to fully shutdown - it may not have finished
writing the dump file to disk and thus we would be risking silent data loss
if it is SIGKILL'd.
Thanks to Chris Kuehl <ckuehl@ocf.berkeley.edu>. (Closes: #794437)
-- Chris Lamb <lamby@debian.org> Wed, 05 Aug 2015 14:40:19 +0100
redis (2:3.0.3-2) unstable; urgency=medium
* Switch from RuntimeDirectory to systemd-tempfiles.
Both redis-server and redis-sentinel use the the same RuntimeDirectory
(/run/redis). This is wrong since systemd removes RuntimeDirectory on
service stop. So, stopping redis-server removes redis-sentinel.pid as well.
Using a systemd-tempfile is a more robust approach. We are also removing
ExecStartPre lines since directory creation is handled in a different
level.
Thanks to Christos Trochalakis <yatiohi@ideopolis.gr>. (Closes: #793016)
-- Chris Lamb <lamby@debian.org> Mon, 20 Jul 2015 14:52:01 +0100
redis (2:3.0.3-1) unstable; urgency=medium
* New upstream release.
-- Chris Lamb <lamby@debian.org> Fri, 17 Jul 2015 14:48:12 +0100
redis (2:3.0.2-3) unstable; urgency=medium
* Add some missing tools:
- ./utils/lru/
- ./src/redis-trib.rb
- Don't compress redis-trib.rb
- Add ruby-redis to Suggests.
-- Chris Lamb <lamby@debian.org> Sat, 11 Jul 2015 15:23:33 +0100
redis (2:3.0.2-2) unstable; urgency=medium
* Create /var/run/redis with the correct permissions in systemd .service
files. Thanks to Sebastian Lipponer <mail@sebastianlipponer.de>.
(Closes: #787257)
* Install Bash completions to /usr/share/bash-completion/completions instead
of /etc/bash_completion.d (see #787257).
-- Chris Lamb <lamby@debian.org> Wed, 17 Jun 2015 15:56:52 +0100
redis (2:3.0.2-1) unstable; urgency=medium
* New upstream release.
-- Chris Lamb <lamby@debian.org> Thu, 04 Jun 2015 12:38:22 +0100
redis (2:3.0.1-1) unstable; urgency=medium
* New upstream release.
-- Chris Lamb <lamby@debian.org> Tue, 05 May 2015 16:23:59 +0100
redis (2:3.0.0-2) unstable; urgency=medium
* redis-server was not able to start under systemd with default redis.conf
due to the absence of /var/run/redis; when RuntimeDirectory is specified in
*.service file, systemd creates the directory in /var/run and sets the
correct permissions. Thanks to Mikhael A <spir@spir.ru>.
-- Chris Lamb <lamby@debian.org> Thu, 09 Apr 2015 13:27:08 +0100
redis (2:3.0.0-1) unstable; urgency=medium
* New upstream stable release.
-- Chris Lamb <lamby@debian.org> Wed, 01 Apr 2015 18:08:31 +0100
redis (2:3.0.0~rc6-2) unstable; urgency=medium
* Don't make test failures cause a build failure - known timing issues
upstream.
-- Chris Lamb <lamby@debian.org> Fri, 27 Mar 2015 13:37:18 +0000
redis (2:3.0.0~rc6-1) unstable; urgency=medium
* New upstream RC release.
-- Chris Lamb <lamby@debian.org> Wed, 25 Mar 2015 23:12:29 +0000
redis (2:3.0.0~rc5-2) unstable; urgency=medium
* Upload to unstable.
-- Chris Lamb <lamby@debian.org> Fri, 20 Mar 2015 19:16:34 +0000
redis (2:3.0.0~rc5-1) experimental; urgency=medium
* New upstream RC release.
* wrap-and-sort entries.
* Tidy debian/rules.
* Move to debhelper compatibility level 9.
* Don't run tests if nocheck specified.
* Update debian/copyright.
-- Chris Lamb <lamby@debian.org> Fri, 20 Mar 2015 11:36:46 +0000
redis (2:3.0.0~rc4-1) experimental; urgency=medium
* New upstream RC release.
* wrap-and-sort.
* Use the latest debian/changelog date in 05-reproducible-build.diff.
-- Chris Lamb <lamby@debian.org> Fri, 13 Feb 2015 23:33:53 +0000
redis (2:3.0.0~rc3-1) experimental; urgency=medium
* New upstream RC release.
-- Chris Lamb <lamby@debian.org> Fri, 30 Jan 2015 19:03:31 +0000
redis (2:3.0.0~rc2-2) experimental; urgency=medium
* Add Build-Depends on `tcl` for tests.
* Add the following run-parts(8) directories that are be executed at the
appropriate daemon start and stop actions:
- /etc/redis/redis-server.pre-up.d
- /etc/redis/redis-server.pre-down.d
- /etc/redis/redis-server.post-up.d
- /etc/redis/redis-server.post-down.d
- /etc/redis/redis-sentinel.pre-up.d
- /etc/redis/redis-sentinel.pre-down.d
- /etc/redis/redis-sentinel.post-up.d
- /etc/redis/redis-sentinel.post-down.d
This is useful for loading Lua scripts which are not persisted across
restarts. Scripts should be idempotent so that multiple calls to (eg.)
"/etc/init.d/redis-server start" do not result in unintended consequences.
* Also run Redis Sentinel tests.
-- Chris Lamb <lamby@debian.org> Tue, 27 Jan 2015 05:04:24 +0000
redis (2:3.0.0~rc2-1) experimental; urgency=low
* New upstream RC release.
- Sync debian/redis.conf.
* Renable testsuite.
* Add --oknodo to initscript "start" action to ensure correct return code if
is already running.
* Split redis-sentinel into its own package (Closes: #775414)
- Move /usr/bin/redis-sentinel symlink to new package.
- Fork ./sentinel.conf -> debian/sentinel.conf for own changes.
- Add logrotate stanza.
- Override permissions of /etc/redis/sentinel.conf with dpkg-statoverride -
needs to be writable by Sentinel itself.
-- Chris Lamb <lamby@debian.org> Fri, 16 Jan 2015 10:55:28 +0000
redis (2:2.8.19-3) unstable; urgency=medium
* Add DEP-8 smoke test.
-- Chris Lamb <lamby@debian.org> Sun, 08 Feb 2015 19:19:42 +0000
redis (2:2.8.19-2) unstable; urgency=low
* Re-enable testsuite.
- Add tcl to Build-Depends.
* Add --oknodo to initscript "start" action to ensure correct return code if
is already running.
* Use the latest debian/changelog date in 05-reproducible-build.diff.
-- Chris Lamb <lamby@debian.org> Tue, 27 Jan 2015 04:48:25 +0000
redis (2:2.8.19-1) unstable; urgency=medium
* New upstream release.
-- Chris Lamb <lamby@debian.org> Tue, 30 Dec 2014 10:06:28 +0000
redis (2:2.8.18-1) unstable; urgency=low
* New upstream release.
- Sync debian/redis.conf.
* Attempt to make build reproducible by dropping timestamp/uname name from
release.h.
* Bump Standards-Version to 3.9.6.
-- Chris Lamb <lamby@debian.org> Thu, 11 Dec 2014 12:19:43 +0000
redis (2:2.8.17-1) unstable; urgency=medium
* New upstream release.
-- Chris Lamb <lamby@debian.org> Thu, 09 Oct 2014 11:47:32 +0100
redis (2:2.8.14-1) unstable; urgency=low
* New upstream release.
* Guillaume Delacour:
- Use dpkg-buildflags CFLAGS, CPPFLAGS (patch upstream Makefile) and
LDFLAGS, also use pie and relro via DEB_BUILD_MAINT_OPTIONS
- Call make V=1 to show gcc command lines (blhc) and enable parallel build
* Sync debian/redis.conf and redis.conf.
* Refresh 02-fix-ftbfs-on-kfreebsd patch.
-- Chris Lamb <lamby@debian.org> Fri, 05 Sep 2014 13:54:51 +0100
redis (2:2.8.13-3) unstable; urgency=low
* Correct permissions of our /var directories by chowning them recursively.
This is necessary, at least temporarily, as systemd users were previously
running the daemon as root causing the files in those dirs to be owned by
that user. We could be clever and only chown files owned by root to
accomodate users who are not running as redis:redis but I think that's
overkill. (Closes: #756709)
-- Chris Lamb <lamby@debian.org> Tue, 05 Aug 2014 17:16:53 +0100
redis (2:2.8.13-2) unstable; urgency=low
* Under systemd, run under redis:redis. (Closes: #756621)
-- Chris Lamb <lamby@debian.org> Thu, 31 Jul 2014 14:49:48 +0100
redis (2:2.8.13-1) unstable; urgency=low
* New upstream release.
* Synchronise ./debian/redis.conf with ./redis.conf.
* Update 03-use-system-jemalloc.diff.
* Fix FTBFS under kfreebsd (Closes: #754634)
-- Chris Lamb <lamby@debian.org> Mon, 14 Jul 2014 22:49:15 +0100
redis (2:2.8.12-1) unstable; urgency=low
* New upstream release.
- Synchronise ./debian/redis.conf with ./redis.conf.
-- Chris Lamb <lamby@debian.org> Sat, 05 Jul 2014 17:15:01 +0100
redis (2:2.8.11-1) unstable; urgency=low
* New upstream release.
- Synchronise ./debian/redis.conf with ./redis.conf.
* Drop copytruncate from logrotate stanza.
* Prefer status_of_proc over `start-stop-daemon --stop --signal 0 ...`
(Closes: #751839)
-- Chris Lamb <lamby@debian.org> Tue, 17 Jun 2014 16:36:58 +0100
redis (2:2.8.8-2) unstable; urgency=low
* Add systemd support. Thanks to Wasif Malik <wmalik.ml@gmail.com>.
(Closes: #743750)
-- Chris Lamb <lamby@debian.org> Sun, 06 Apr 2014 11:24:36 +0100
redis (2:2.8.8-1) unstable; urgency=low
* New upstream release.
- Sync debian/redis.conf and redis.conf.
-- Chris Lamb <lamby@debian.org> Tue, 01 Apr 2014 19:32:15 +0100
redis (2:2.8.7-2) unstable; urgency=low
* Revamp maintainer scripts. (Closes: #741216)
-- Chris Lamb <lamby@debian.org> Mon, 10 Mar 2014 22:18:29 +0000
redis (2:2.8.7-1) unstable; urgency=low
* New upstream release.
-- Chris Lamb <lamby@debian.org> Wed, 05 Mar 2014 23:16:17 +0000
redis (2:2.8.6-1) unstable; urgency=medium
* New upstream release.
-- Chris Lamb <lamby@debian.org> Sat, 15 Feb 2014 22:47:34 +0000
redis (2:2.8.5-1) unstable; urgency=low
* New upstream release.
* Update debian/redis.conf to include new tcp-backlog option.
-- Chris Lamb <lamby@debian.org> Sat, 08 Feb 2014 12:01:48 +0000
redis (2:2.8.4-2) unstable; urgency=low
* Symlink redis-sentinel to redis-server as it's the same binary.
* Install sentinel.conf.
-- Chris Lamb <lamby@debian.org> Tue, 14 Jan 2014 12:31:14 +0000
redis (2:2.8.4-1) unstable; urgency=low
* New upstream version.
* Sync debian/redis.conf.
* Also ship redis-sentinel (Closes: #735272)
-- Chris Lamb <lamby@debian.org> Tue, 14 Jan 2014 10:42:09 +0000
redis (2:2.8.2-1) unstable; urgency=low
* New upstream version.
-- Chris Lamb <lamby@debian.org> Fri, 06 Dec 2013 14:37:54 +0000
redis (2:2.8.0-1) unstable; urgency=low
* New upstream release.
- Update debian/patches/02-fix-ftbfs-on-kfreebsd.
- Update debian/patches/03-use-system-jemalloc.diff.
- Update debian/redis.conf
* Bump Standards-Version to 3.9.4.
-- Chris Lamb <lamby@debian.org> Fri, 22 Nov 2013 16:51:55 +0000
redis (2:2.6.16-3) unstable; urgency=low
* Add missing Replaces and Breaks to redis-tools. Thanks to Andreas Beckmann
(anbe). (Closes: #723703)
-- Chris Lamb <lamby@debian.org> Fri, 20 Sep 2013 14:35:24 +0100
redis (2:2.6.16-2) unstable; urgency=low
* Completely rework and refresh debian/copyright. (Closes: #723162)
* Update website in debian/copyright.
* Drop client library references from debian/copyright (dropped in
2:1.1.90~beta-1).
* Update main copyright year.
-- Chris Lamb <lamby@debian.org> Tue, 17 Sep 2013 19:08:01 +0100
redis (2:2.6.16-1) unstable; urgency=low
* New upstream release.
* Split non-server binaries into redis-tools package. (Closes: #723006)
* Update debian/watch.
-- Chris Lamb <lamby@debian.org> Mon, 16 Sep 2013 09:53:49 +0100
redis (2:2.6.14-2) unstable; urgency=low
* Source /lib/lsb/init-functions in initscript for systemd compatibility.
-- Chris Lamb <lamby@debian.org> Mon, 12 Aug 2013 16:17:47 +0100
redis (2:2.6.14-1) unstable; urgency=low
* New upstream release.
-- Chris Lamb <lamby@debian.org> Tue, 06 Aug 2013 12:14:12 +0100
redis (2:2.6.13-1) unstable; urgency=low
* New upstream release.
- Sync debian/redis.conf.
- Update 02-fix-ftbfs-on-kfreebsd.diff.
-- Chris Lamb <lamby@debian.org> Mon, 17 Jun 2013 00:49:42 +0100
redis (2:2.6.7-1) unstable; urgency=low
* New upstream release.
* Add missing "status" command from usage. Thanks to Dererk
<dererk@debian.org>. (Closes: #696339)
* Enable building on kfreebsd-amd64 (and possibly kfreebsd-i386 and
hurd-i386) by not depending on 'jemalloc' which would not be used anyway.
Thanks to Jeff Epler <jepler@unpythonic.net>. (Closes: #696618)
-- Chris Lamb <lamby@debian.org> Fri, 28 Dec 2012 17:00:06 +0000
redis (2:2.6.0-1) unstable; urgency=low
* New upstream release.
* Update 02-fix-ftbfs-on-kfreebsd.diff.
* Update 03-use-system-jemalloc.diff.
* Update configuration file.
-- Chris Lamb <lamby@debian.org> Tue, 23 Oct 2012 15:04:17 +0100
redis (2:2.4.17-1) unstable; urgency=low
* New upstream release.
* Bump Standards-Version to 3.9.3.
-- Chris Lamb <lamby@debian.org> Wed, 10 Oct 2012 21:16:47 +0100
redis (2:2.4.15-1) unstable; urgency=low
* New upstream release.
-- Chris Lamb <lamby@debian.org> Mon, 02 Jul 2012 10:56:28 +0100
redis (2:2.4.14-1) unstable; urgency=low
* New upstream release.
-- Chris Lamb <lamby@debian.org> Fri, 08 Jun 2012 17:21:49 +0100
redis (2:2.4.13-1) unstable; urgency=low
* New upstream release. (Closes: #673202)
* Sync upstream redis.conf changes with debian/redis.conf.
-- Chris Lamb <lamby@debian.org> Thu, 17 May 2012 10:32:33 +0100
redis (2:2.4.9-2) unstable; urgency=low
* Add /etc/default/redis-server option to call ``ulimit -n'' before
invoking Redis. (Closes: #672638)
-- Chris Lamb <lamby@debian.org> Mon, 14 May 2012 10:34:21 +0000
redis (2:2.4.9-1) unstable; urgency=low
* New upstream release.
-- Chris Lamb <lamby@debian.org> Mon, 26 Mar 2012 12:21:29 +0100
redis (2:2.4.8-1) unstable; urgency=low
* New upstream release.
* Fix debian/watch (Closes: #661919)
* Don't use jemalloc on archs not supporting it (Closes: #661354)
-- Chris Lamb <lamby@debian.org> Sun, 11 Mar 2012 22:19:51 +0000
redis (2:2.4.5-1) unstable; urgency=low
* New upstream version (Closes: #655416)
* Use system jemalloc. (Closes: #654900, #654902)
-- Chris Lamb <lamby@debian.org> Wed, 11 Jan 2012 12:30:27 +0000
redis (2:2.4.2-2) unstable; urgency=low
* Fix test suite on sparc (Closes: #647627)
-- Chris Lamb <lamby@debian.org> Wed, 07 Dec 2011 16:55:23 +0000
redis (2:2.4.2-1) unstable; urgency=low
* New upstream release.
* /etc/init.d/redis-server fixes:
- Send TERM, not QUIT signal.
- Sleep 1 second after exiting as although the process has disappeared the
server socket is somehow still in use which causes the start to fail.
* Drop 01-fix-link-ordering patch; fixed upstream.
<http://code.google.com/p/redis/issues/detail?id=562>.
* Update 02-fix-ftbfs-on-kfreebsd.
* Drop redis-doc package now that upstream no longer ship documentation.
-- Chris Lamb <lamby@debian.org> Wed, 16 Nov 2011 16:00:23 +0000
redis (2:2.4.0~rc5-1) experimental; urgency=low
* New upstream RC release.
* Update debian/redis.conf.
* Drop documentation package - dropped upstream.
-- Chris Lamb <lamby@debian.org> Fri, 29 Jul 2011 21:41:25 +0200
redis (2:2.2.12-1) unstable; urgency=low
* New upstream release.
* Move runtime files to /var/run/redis/ and set that as default location for
socket file. Thanks to Sandro Tosi <morph@debian.org>. (Closes: #632931)
* Refresh fix-link-ordering patch.
* Use "defined(__linux__) || defined(__GLIBC__)" for kfreebsd compatibility.
Thanks to Robert Millan <rmh@debian.org>. (Closes: #632499)
-- Chris Lamb <lamby@debian.org> Wed, 27 Jul 2011 19:20:26 +0200
redis (2:2.2.11-3) unstable; urgency=low
* Change default loglevel to "notice".
* Wait forever for redis to stop - only waiting 10 seconds could cause data
loss.
* Set a proper default location for socket file. (Closes: #632931)
-- Chris Lamb <lamby@debian.org> Mon, 18 Jul 2011 13:25:16 +0100
redis (2:2.2.11-2) unstable; urgency=low
* Fix FTBFS on kfreebsd. Thanks to Christoph Egger <christoph@debian.org> for
the patch. (Closes: #632499)
* Ship redis-check-aof and redis-check-dump. (Closes: #632858)
-- Chris Lamb <lamby@debian.org> Wed, 06 Jul 2011 22:36:18 +0100
redis (2:2.2.11-1) unstable; urgency=low
* New upstream release.
* Correct spelling of "Description" in patch system.
-- Chris Lamb <lamby@debian.org> Sat, 02 Jul 2011 00:43:37 +0100
redis (2:2.2.10-1) unstable; urgency=low
* New upstream release.
* Bump Standards-Version to 3.9.2.
-- Chris Lamb <lamby@debian.org> Sat, 18 Jun 2011 14:53:41 +0100
redis (2:2.2.8-1) unstable; urgency=low
* New upstream release.
* Add patch from Ubuntu to fix FTBFS due to --as-needed linking.
Thanks to Nigel Babu <nigelbabu@ubuntu.com>. (Closes: #628056)
-- Chris Lamb <lamby@debian.org> Tue, 07 Jun 2011 16:43:58 +0100
redis (2:2.2.5-1) unstable; urgency=low
* New upstream release.
-- Chris Lamb <lamby@debian.org> Mon, 25 Apr 2011 14:04:29 +0100
redis (2:2.2.4-1) unstable; urgency=low
* New upstream release.
-- Chris Lamb <lamby@debian.org> Fri, 22 Apr 2011 14:05:43 +0100
redis (2:2.2.2-1) unstable; urgency=low
* New upstream release.
* Use userdel over deluser to prevent problems when purging package.
(Closes: #618326)
-- Chris Lamb <lamby@debian.org> Tue, 15 Mar 2011 11:13:21 +0000
redis (2:2.2.1-1) unstable; urgency=low
* New upstream release. (Closes: #604076)
* Update install paths.
-- Chris Lamb <lamby@debian.org> Thu, 24 Feb 2011 19:39:43 +0000
redis (2:2.0.1-2) unstable; urgency=low
* Upload to unstable.
-- Chris Lamb <lamby@debian.org> Fri, 10 Sep 2010 14:49:30 +0100
redis (2:2.0.1-1) experimental; urgency=low
* New upstream release.
* Update debian/watch to not match old tarballs.
* Upstream now ships an install target; let's just ignore it for now.
-- Chris Lamb <lamby@debian.org> Fri, 10 Sep 2010 14:40:01 +0100
redis (2:2.0.0~rc4-1) experimental; urgency=low
* New upstream RC release.
* Bump Standards-Version to 3.9.1.
* Remove mkreleasehdr.sh when building to avoid debian diff - it will
regenerate release.h with different contents.
-- Chris Lamb <lamby@debian.org> Thu, 29 Jul 2010 09:13:31 -0400
redis (2:2.0.0~rc3-1) experimental; urgency=low
* New upstream RC release.
* Bump Standards-Version to 3.9.0.
-- Chris Lamb <lamby@debian.org> Fri, 23 Jul 2010 11:59:16 +0100
redis (2:2.0.0~rc2-1) experimental; urgency=low
* New upstream RC release.
-- Chris Lamb <lamby@debian.org> Thu, 01 Jul 2010 23:15:02 +0100
redis (2:2.0.0~rc1-2) experimental; urgency=low
* Add 'status' command to initscript.
* Add redis-benchmark (and manpage) to package. (Closes: #587395)
-- Chris Lamb <lamby@debian.org> Mon, 28 Jun 2010 11:02:31 +0100
redis (2:2.0.0~rc1-1) experimental; urgency=low
* New upstream release candidate.
* Remove '01-dont-print-pid-on-startup.diff' patch.
* Update local copy of redis.conf.
-- Chris Lamb <lamby@debian.org> Tue, 01 Jun 2010 10:51:05 +0100
redis (2:1.2.6-1) unstable; urgency=low
* New upstream release.
-- Chris Lamb <lamby@debian.org> Tue, 30 Mar 2010 14:13:52 +0100
redis (2:1.2.5-1) unstable; urgency=low
* New upstream release.
* Drop 02-fix-segfault-indupClientReplyValue.diff; applied upstream via
<http://code.google.com/p/redis/issues/detail?id=177>.
-- Chris Lamb <lamby@debian.org> Thu, 11 Mar 2010 21:34:37 +0000
redis (2:1.2.4-1) unstable; urgency=low
* New upstream release.
-- Chris Lamb <lamby@debian.org> Tue, 09 Mar 2010 16:18:19 +0000
redis (2:1.2.3-1) unstable; urgency=low
* New upstream release.
-- Chris Lamb <lamby@debian.org> Tue, 02 Mar 2010 16:45:07 +0000
redis (2:1.2.2-2) unstable; urgency=low
* Really fix segfault in dupClientReplyValue. (Closes: #570371)
-- Chris Lamb <lamby@debian.org> Fri, 19 Feb 2010 09:16:48 +0000
redis (2:1.2.2-1) unstable; urgency=low
* New upstream release.
- Fixes segfault in dupClientReplyValue. Thanks to Hirling Endre
<endre@dawn.royalcomp.hu> (Closes: #570371)
-- Chris Lamb <lamby@debian.org> Thu, 18 Feb 2010 22:02:10 +0000
redis (2:1.2.1-1) unstable; urgency=low
* New upstream release.
* Add Bash completion script for redis-cli by Steve Kemp <skx@debian.org>.
(Closes: #565358)
* Bump Standards-Version to 3.8.4.
* Add $remote_fs to LSB "Required-{Start,Stop}" initscript headers.
-- Chris Lamb <lamby@debian.org> Tue, 09 Feb 2010 14:37:32 +0000
redis (2:1.2.0-1) unstable; urgency=low
* New upstream stable release.
* Switch to dpkg-source 3.0 (quilt) format.
* Patch out printing of pid on startup.
-- Chris Lamb <lamby@debian.org> Thu, 14 Jan 2010 15:50:36 +0000
redis (2:1.1.95~beta-2) unstable; urgency=low
* Set source section to "database" from "misc".
* Add redis-cli binary to "redis-server" package.
-- Chris Lamb <lamby@debian.org> Wed, 13 Jan 2010 23:36:30 +0000
redis (2:1.1.95~beta-1) unstable; urgency=low
* New upstream release.
* Sync debian/redis.conf with upstream version (new "rdbcompression" and
"masterauth" commands).
-- Chris Lamb <lamby@debian.org> Sun, 10 Jan 2010 22:59:06 +0000
redis (2:1.1.90~beta-1) unstable; urgency=low
* New upstream release:
- Bump the epoch as dpkg considers 1.1.90 to be less than 1.02.
- Sync redis.conf
* Don't build client libraries anymore; not part of the upstream tarball
anymore.
* Don't export CFLAGS from debian/rules to prevent FTBFS when dpkg-provided
CFLAGS does not include --std=c99.
* Modify debian/watch to consider "-beta" the same as "~beta" for correct
dpkg ordering.
-- Chris Lamb <lamby@debian.org> Sat, 05 Dec 2009 22:10:32 +0000
redis (1:1.02-1) unstable; urgency=low
* New upstream release.
-- Chris Lamb <lamby@debian.org> Fri, 23 Oct 2009 16:26:45 +0100
redis (1:1.01-1) unstable; urgency=low
* New upstream release.
- "maxmemory now works well on 64bit systems with > 4GB of RAM"
-- Chris Lamb <lamby@debian.org> Tue, 22 Sep 2009 21:53:48 +0100
redis (1:1.0-1) unstable; urgency=low
* New upstream release.
* Bump Standards-Version to 3.8.3.
* Drop patch system:
- 01-recommend-sysctl-conf.diff; applied upstream.
- 02-warn-after-daemonising.diff; applied upstream.
- 03-only-mangle-trace-on-ia64-and-x86.diff; applied upstream.
- Drop quilt Build-Depends and remove patches/series.
* Use "override_dh_auto_clean" instead of "clean" target.
-- Chris Lamb <lamby@debian.org> Tue, 08 Sep 2009 22:09:19 +0100
redis (1:0.900-3) unstable; urgency=low
* Actually add architecture patch introducted in 1:0.900-2 to quilt 'series'
(Closes: #533763)
* Correct "/proc/sys/vm/overcommit_memory" message to print the correct
string to add to sysctl.conf.
-- Chris Lamb <lamby@debian.org> Thu, 25 Jun 2009 12:13:02 +0100
redis (1:0.900-2) unstable; urgency=low
* Add patch to avoid mangling the stacktrace on SIGSEGV using X86-specific
ucontext struct, etc. (Closes: #533763)
* Bump Standards-Version to 3.8.2.
-- Chris Lamb <lamby@debian.org> Wed, 24 Jun 2009 23:54:42 +0100
redis (1:0.900-1) unstable; urgency=low
* New upstream release.
- Update debian/redis.conf
* Update versionmangle in debian/watch.
* "/proc/sys/vm/overcommit_memory" message:
- Recommend modifying /etc/sysctl.conf instead of using "boot scripts"
- Warn after daemonising to avoid message being spammed on every boot.
-- Chris Lamb <lamby@debian.org> Wed, 17 Jun 2009 10:39:57 +0100
redis (1:0.100-1) unstable; urgency=low
* New upstream release.
- Update debian/redis.conf
-- Chris Lamb <lamby@debian.org> Thu, 28 May 2009 00:31:37 +0100
redis (1:0.096-1) unstable; urgency=low
* New upstream version.
-- Chris Lamb <lamby@debian.org> Sat, 09 May 2009 22:16:13 +0100
redis (1:0.095-1) unstable; urgency=low
* New upstream version.
-- Chris Lamb <lamby@debian.org> Sat, 09 May 2009 12:50:26 +0100
redis (1:0.094-3) unstable; urgency=low
* Really upload to unstable - I give "debchange -r" less credit than it
deserves.
-- Chris Lamb <lamby@debian.org> Thu, 07 May 2009 22:02:24 +0100
redis (1:0.094-2) experimental; urgency=low
* Upload to unstable.
* Add libredis-perl package.
-- Chris Lamb <lamby@debian.org> Wed, 06 May 2009 00:19:35 +0100
redis (1:0.094-1) experimental; urgency=low
* New upstream release.
* Place libphp-redis package into 'php' section.
* Update debian/copyright with new libraries.
* Correct Vcs-Browser location.
-- Chris Lamb <lamby@debian.org> Wed, 06 May 2009 00:08:26 +0100
redis (1.0~beta8-1) experimental; urgency=low
* New upstream release.
-- Chris Lamb <lamby@debian.org> Tue, 24 Mar 2009 22:30:02 +0000
redis (1.0~beta7-1) experimental; urgency=low
* Initial release. (Closes: #518700)
-- Chris Lamb <lamby@debian.org> Fri, 20 Mar 2009 00:37:15 +0000
|