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
|
redis (3:3.2.6-3+deb9u3) stretch-security; urgency=high
* CVE-2019-10192: Fix two heap buffer overflows in the Hyperloglog
functionality. (Closes: #931625)
-- Chris Lamb <lamby@debian.org> Wed, 10 Jul 2019 14:36:26 -0300
redis (3:3.2.6-3+deb9u2) stretch; urgency=medium
* Correct RunTimeDirectory -> RuntimeDirectory typo in systemd .service
files. (Closes: #850534, #880474)
-- Chris Lamb <lamby@debian.org> Mon, 18 Jun 2018 19:12:58 +0200
redis (3:3.2.6-3+deb9u1) stretch-security; urgency=high
* CVE-2018-11218, CVE-2018-11219: Backport patches to fix multiple heap
corruption and integer overflow vulnerabilities. (Closes: #901495)
-- Chris Lamb <lamby@debian.org> Thu, 14 Jun 2018 15:08:27 +0200
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
|