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
|
groonga (11.0.0-2) unstable; urgency=medium
* debian/control,debian/groonga-server-common.postinst
Support statoverride migration to bullseye (Closes: #984569)
-- Kentaro Hayashi <kenhys@xdump.org> Tue, 09 Mar 2021 20:40:08 +0900
groonga (11.0.0-1) unstable; urgency=medium
* New upstream version 11.0.0
-- Kentaro Hayashi <kenhys@xdump.org> Mon, 08 Feb 2021 17:57:37 +0900
groonga (10.1.1-1) unstable; urgency=medium
* New upstream version 10.1.1
-- Kentaro Hayashi <kenhys@xdump.org> Mon, 25 Jan 2021 14:56:47 +0900
groonga (10.1.0-1) unstable; urgency=medium
* New upstream version 10.1.0
* debian/patches/0003-Use-_GNU_SOURCE-on-GNU-kFreeBSD.patch
- Refresh patch to support nginx 1.19.6
-- Kentaro Hayashi <kenhys@xdump.org> Fri, 25 Dec 2020 11:52:56 +0900
groonga (10.0.9-1) unstable; urgency=medium
* New upstream version 10.0.9
* debian/patches/0003-Use-_GNU_SOURCE-on-GNU-kFreeBSD.patch
- Refresh patch to support 1.19.5
* debian/patches/0004-Enable-user-site-configuration.patch
- Enable additional server configuration
-- Kentaro Hayashi <kenhys@xdump.org> Wed, 02 Dec 2020 13:14:22 +0900
groonga (10.0.8-1) unstable; urgency=medium
* New upstream version 10.0.8
-- Kentaro Hayashi <kenhys@xdump.org> Mon, 02 Nov 2020 09:51:28 +0900
groonga (10.0.7-1) unstable; urgency=medium
* New upstream version 10.0.7
* debian/control
- Do not require libjemalloc-dev on hurd-i386 (missing)
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to support 1.19.2
-- Kentaro Hayashi <kenhys@xdump.org> Wed, 30 Sep 2020 09:53:16 +0900
groonga (10.0.6-1) unstable; urgency=medium
* New upstream version 10.0.6
-- Kentaro Hayashi <kenhys@xdump.org> Mon, 31 Aug 2020 09:31:41 +0900
groonga (10.0.5-2) unstable; urgency=medium
* debian/copyright
- Use spaces rather than tabs to start continuation lines
* debian/control
- Use secure URI in Homepage field
* debian/rules
- Rely on pre-initialized dpkg-architecture variables
* debian/changelog
- Fix day-of-week for changelog entry 0.7.6-2
* debian/groonga-bin.install
- Install utility scripts
* debian/groonga-bin.lintian-overrides
- Refresh ignore pattern for utility scripts
-- Kentaro Hayashi <kenhys@xdump.org> Sun, 23 Aug 2020 21:26:51 +0900
groonga (10.0.5-1) unstable; urgency=medium
* New upstream version 10.0.5
* debian/copyright
- Fix duplicate globbing patterns
- Fix redundant globbing patterns
* Install tools/* scripts
-- Kentaro Hayashi <kenhys@xdump.org> Sat, 22 Aug 2020 17:29:23 +0900
groonga (10.0.4-1) unstable; urgency=medium
* New upstream version 10.0.4
-- Kentaro Hayashi <kenhys@xdump.org> Mon, 29 Jun 2020 08:49:10 +0900
groonga (10.0.3-1) unstable; urgency=medium
* New upstream version 10.0.3
-- Kentaro Hayashi <kenhys@xdump.org> Mon, 01 Jun 2020 08:51:35 +0900
groonga (10.0.2-1) unstable; urgency=medium
* New upstream version 10.0.2
* debian/patches/fix-ngx-mruby-gcc10.patch
- Remove needless patch which was fixed in upstream
-- Kentaro Hayashi <kenhys@xdump.org> Fri, 01 May 2020 09:44:41 +0900
groonga (10.0.0-2) unstable; urgency=medium
* debian/patches/fix-ngx-mruby-gcc10.patch
- Fix FTBFS with GCC 10 (Closes: #957311)
-- Kentaro Hayashi <hayashi@clear-code.com> Mon, 20 Apr 2020 08:19:56 +0900
groonga (10.0.0-1) unstable; urgency=medium
* New upstream version 10.0.0
-- Kentaro Hayashi <hayashi@clear-code.com> Sat, 28 Mar 2020 20:03:07 +0900
groonga (9.1.2-1) unstable; urgency=medium
* New upstream version 9.1.2
* debian/control
- Bump standard-version to 4.5.0.
- Use debhelper-compat (=12).
- Mark Rules-Requires-Root to no.
* debian/*.service
- Add underscore as prefix for user name.
- Enable PrivateTmp for hardening.
* debian/groonga-server-common.postinst
debian/groonga-munin-plugins.conf
debian/groonga-httpd.*
debian/groonga-server-gqtp.*
- Update new user name with underscore in script.
* debian/patches/0003-Use-user-name-with-underline.patch
- Fix default user name with underscore.
-- Kentaro Hayashi <hayashi@clear-code.com> Sat, 01 Feb 2020 19:32:28 +0900
groonga (9.1.1-1) unstable; urgency=medium
* New upstream version 9.1.1
* debian/patches/0002-Remove-needless-groonga-keyring-postrm.patch
- Refresh patch file
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch file for nginx 1.17.7
-- Kentaro Hayashi <hayashi@clear-code.com> Tue, 14 Jan 2020 20:54:48 +0900
groonga (9.1.0-1) unstable; urgency=medium
* New upstream version 9.1.0
* debian/patches/0002-Remove-needless-groonga-keyring-postrm.patch
- Refresh patch file
-- Kentaro Hayashi <hayashi@clear-code.com> Fri, 27 Dec 2019 18:05:43 +0900
groonga (9.0.9-1) unstable; urgency=medium
* New upstream version 9.0.9
* debian/salsa-ci.yml
- Rename Salsa CI configuration file name
* debian/upstream/signing-key.asc
- Import new signing key from upstream (RSA4096)
-- Kentaro Hayashi <hayashi@clear-code.com> Sat, 02 Nov 2019 20:47:46 +0900
groonga (9.0.8-1) unstable; urgency=medium
* New upstream version 9.0.8
-- Kentaro Hayashi <hayashi@clear-code.com> Mon, 30 Sep 2019 22:12:30 +0900
groonga (9.0.7-2) unstable; urgency=medium
* debian/groonga-httpd.logrotate
- Use groonga-httpd -s reopen for reopening log files
-- Kentaro Hayashi <hayashi@clear-code.com> Fri, 20 Sep 2019 23:56:57 +0900
groonga (9.0.7-1) unstable; urgency=medium
* New upstream version 9.0.7
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch file by gbp pq
* debian/patches/remove-groonga-keyring-postrm.patch
- Refresh patch to apply
-- Kentaro Hayashi <hayashi@clear-code.com> Tue, 03 Sep 2019 22:53:05 +0900
groonga (9.0.6-1) unstable; urgency=medium
* New upstream version 9.0.6
* debian/control
- Bump standard version to 4.4.0. No other changes are required.
-- Kentaro Hayashi <hayashi@clear-code.com> Wed, 07 Aug 2019 18:07:12 +0900
groonga (9.0.4-2) unstable; urgency=medium
* debian/control
- Add RapidJSON dependency to enable a cast functionality in Groonga 9.0.4.
-- Kentaro Hayashi <hayashi@clear-code.com> Sun, 07 Jul 2019 00:25:35 +0900
groonga (9.0.4-1) unstable; urgency=medium
* New upstream version 9.0.4
-- Kentaro Hayashi <hayashi@clear-code.com> Fri, 05 Jul 2019 21:58:50 +0900
groonga (9.0.3-1) unstable; urgency=medium
* New upstream version 9.0.3
-- Kentaro Hayashi <hayashi@clear-code.com> Wed, 29 May 2019 23:23:19 +0900
groonga (9.0.1-2) unstable; urgency=medium
* debian/groonga-httpd.logrotate
debian/groonga-server-gqtp.logrotate
- Mitigate privilege escalation by changing the owner and group of logs
with "su" option. Reported by Wolfgang Hotwagner.
(Closes: #928304) (CVE-2019-11675)
-- Kentaro Hayashi <hayashi@clear-code.com> Thu, 09 May 2019 23:34:20 +0900
groonga (9.0.1-1) unstable; urgency=medium
* New upstream version 9.0.1
-- Kentaro Hayashi <hayashi@clear-code.com> Fri, 29 Mar 2019 23:12:32 +0900
groonga (9.0.0-1) unstable; urgency=medium
* New upstream version 9.0.0
-- Kentaro Hayashi <hayashi@clear-code.com> Sat, 09 Feb 2019 22:13:00 +0900
groonga (8.1.1-1) unstable; urgency=medium
* New upstream version 8.1.1
-- Kentaro Hayashi <hayashi@clear-code.com> Thu, 31 Jan 2019 23:05:48 +0900
groonga (8.1.0-1) unstable; urgency=medium
* New upstream version 8.1.0
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch file by gbp pq
* debian/control
- Bump standard-version to 4.3.0. No other changes are required.
- Use debhelper-compat (=11).
-- Kentaro Hayashi <hayashi@clear-code.com> Fri, 04 Jan 2019 21:29:31 +0900
groonga (8.0.9-1) unstable; urgency=medium
* New upstream version 8.0.9
* debian/.gitlab-ci.yml
- Add CI configuration
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
* debian/patches/remove-groonga-keyring-postrm.patch
- Refresh patch to apply
-- Kentaro Hayashi <hayashi@clear-code.com> Fri, 30 Nov 2018 13:31:13 +0900
groonga (8.0.8-1) unstable; urgency=medium
* New upstream version 8.0.8.
* debian/uscan
- Use @PACKAGE@,@ANY_VERSION@,@ARCHIVE_EXT@ macros.
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
-- Kentaro Hayashi <hayashi@clear-code.com> Mon, 29 Oct 2018 13:23:35 +0900
groonga (8.0.7-1) unstable; urgency=medium
* New upstream version 8.0.7.
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
-- Kentaro Hayashi <hayashi@clear-code.com> Mon, 01 Oct 2018 09:32:57 +0900
groonga (8.0.6-2) unstable; urgency=medium
* debian/control
- Remove needless directly described dependency for libgroonga0.
Without removing it, it causes RC bugs when library is updated.
(Reported by Gianfranco Costamagn)
-- Kentaro Hayashi <hayashi@clear-code.com> Wed, 05 Sep 2018 08:34:05 +0900
groonga (8.0.6-1) unstable; urgency=medium
* New upstream version 8.0.6.
* debian/changelog
- Apply M-x wh-cl to remove trailing whitespace.
* debian/control
- Bump standard-version to 4.2.1. No other changes are required.
-- Kentaro Hayashi <hayashi@clear-code.com> Wed, 29 Aug 2018 17:17:55 +0900
groonga (8.0.5-1) unstable; urgency=medium
* New upstream version 8.0.5.
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
* debian/copyright
- Use secure(HTTPS) copyright format uri.
* debian/control
- Bump standard-version to 4.1.5. No other changes are required.
- Add Vcs-* fields.
* debian/compat
- Bump debhelper compat version to 11.
-- Kentaro Hayashi <hayashi@clear-code.com> Fri, 27 Jul 2018 22:46:23 +0900
groonga (8.0.4-1) unstable; urgency=medium
* New upstream version 8.0.4.
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
-- Kentaro Hayashi <hayashi@clear-code.com> Fri, 29 Jun 2018 23:02:26 +0900
groonga (8.0.3-1) unstable; urgency=medium
* New upstream version 8.0.3.
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
-- Kentaro Hayashi <hayashi@clear-code.com> Wed, 30 May 2018 21:41:56 +0900
groonga (8.0.2-1) unstable; urgency=medium
* New upstream version 8.0.2.
-- Kentaro Hayashi <hayashi@clear-code.com> Wed, 02 May 2018 10:25:09 +0900
groonga (8.0.1-1) unstable; urgency=medium
* New upstream version 8.0.1
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
* debian/patches/remove-groonga-keyring-postrm.patch
- Remove non-existent file.
-- Kentaro Hayashi <hayashi@clear-code.com> Tue, 03 Apr 2018 11:15:46 +0900
groonga (8.0.0-1) unstable; urgency=medium
* New upstream release.
* debian/control
- Bump Standards-Version, no other changes are required.
-- Kentaro Hayashi <hayashi@clear-code.com> Wed, 14 Feb 2018 23:35:34 +0900
groonga (7.1.1-1) unstable; urgency=medium
* New upstream release.
* debian/control
- Bump Standards-Version, no other changes are required.
-- Kentaro Hayashi <hayashi@clear-code.com> Tue, 30 Jan 2018 17:59:15 +0900
groonga (7.1.0-1) unstable; urgency=medium
* New upstream release.
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
* debian/control
- Bump Standards-Version, no other changes are required.
-- Kentaro Hayashi <hayashi@clear-code.com> Fri, 29 Dec 2017 13:17:40 +0900
groonga (7.0.9-1) unstable; urgency=medium
* New upstream release.
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
-- Kentaro Hayashi <hayashi@clear-code.com> Sun, 03 Dec 2017 13:18:43 +0900
groonga (7.0.8-1) unstable; urgency=medium
* New upstream release.
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
-- Kentaro Hayashi <hayashi@clear-code.com> Wed, 01 Nov 2017 10:01:58 +0900
groonga (7.0.7-1) unstable; urgency=medium
* New upstream release.
* debian/control
- Bump version to 4.1.1 (no other changes are required)
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
-- Kentaro Hayashi <hayashi@clear-code.com> Sun, 08 Oct 2017 09:28:30 +0900
groonga (7.0.6-1) unstable; urgency=medium
* New upstream release.
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
* debian/groonga-httpd.service
- Ensure to create /var/run/groonga directory.
-- Kentaro Hayashi <hayashi@clear-code.com> Fri, 08 Sep 2017 22:08:28 +0900
groonga (7.0.5-1) unstable; urgency=medium
* New upstream release.
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
-- Kentaro Hayashi <hayashi@clear-code.com> Sun, 30 Jul 2017 17:39:17 +0900
groonga (7.0.4-1) unstable; urgency=medium
* New upstream release.
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
* debian/control
- Bump version to 4.0.0 (no other changes are required)
-- Kentaro Hayashi <hayashi@clear-code.com> Fri, 30 Jun 2017 22:15:05 +0900
groonga (7.0.3-2) unstable; urgency=medium
* New upstream release.
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
* debian/copyright
- Add missing copyright about benchmark.
-- Kentaro Hayashi <hayashi@clear-code.com> Sun, 18 Jun 2017 12:42:13 +0900
groonga (7.0.3-1) experimental; urgency=medium
* New upstream release.
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
* debian/copyright
- Add missing copyright about benchmark.
-- Kentaro Hayashi <hayashi@clear-code.com> Thu, 01 Jun 2017 22:10:59 +0900
groonga (7.0.2-1) experimental; urgency=medium
* New upstream release.
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
-- Kentaro Hayashi <hayashi@clear-code.com> Mon, 15 May 2017 15:56:38 +0900
groonga (7.0.1-1) experimental; urgency=medium
* New upstream release.
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
-- Kentaro Hayashi <hayashi@clear-code.com> Thu, 30 Mar 2017 14:38:48 +0900
groonga (7.0.0-1) unstable; urgency=medium
* New upstream release.
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
-- Kentaro Hayashi <hayashi@clear-code.com> Mon, 27 Feb 2017 15:27:20 +0900
groonga (6.1.5-1) unstable; urgency=medium
* New upstream release.
* debian/patches/fix-a-bug-that-AND-optimization-may-skip-matched-rec.patch
debian/patches/really-fix-a-bug-that-AND-optimization-may-skip-matc.patch
- Drop needless patch files. These changes are already merged in
Groonga 6.1.5.
-- Kentaro Hayashi <hayashi@clear-code.com> Mon, 23 Jan 2017 19:14:09 +0900
groonga (6.1.4-1) unstable; urgency=medium
* New upstream release.
* debian/patches/fix-a-bug-that-AND-optimization-may-skip-matched-rec.patch
debian/patches/really-fix-a-bug-that-AND-optimization-may-skip-matc.patch
- Apply patches to fix an index search bug that index search may
not return records that should be matched.
-- Kentaro Hayashi <hayashi@clear-code.com> Thu, 19 Jan 2017 17:12:44 +0900
groonga (6.1.3-1) unstable; urgency=medium
* New upstream release.
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
* debian/libgroonga0.install
- Drop removed file since Groonga 6.1.2.
-- Kentaro Hayashi <hayashi@clear-code.com> Sat, 07 Jan 2017 13:49:34 +0900
groonga (6.1.1-1) unstable; urgency=medium
* New upstream release.
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Refresh patch to fix FTBFS on kFreeBSD.
* debian/control
- Add dependency to support Zstd column compression.
-- Kentaro Hayashi <hayashi@clear-code.com> Sun, 04 Dec 2016 14:41:51 +0900
groonga (6.1.0-2) unstable; urgency=medium
* debian/patches/fix-nginx-FTBFS-on-kfreebsd.patch
- Add patch to fix FTBFS on kFreeBSD.
* debian/copyright
- Add copyright about bundled ngx-mruby.
-- Kentaro Hayashi <hayashi@clear-code.com> Sun, 30 Oct 2016 07:31:31 +0900
groonga (6.1.0-1) unstable; urgency=medium
* New upstream release.
* debian/control
- Add missing dependency to lsb-base because of init.d script.
-- Kentaro Hayashi <hayashi@clear-code.com> Sat, 29 Oct 2016 13:50:37 +0900
groonga (6.0.9-1) unstable; urgency=medium
* New upstream release.
* debian/patches/fix-nginx-build-error-with-openssl-1.1.patch
- Drop needless patch because it was fixed in upstream.
-- Kentaro Hayashi <hayashi@clear-code.com> Sat, 01 Oct 2016 21:35:07 +0900
groonga (6.0.8-1) unstable; urgency=medium
* New upstream release.
-- Kentaro Hayashi <hayashi@clear-code.com> Mon, 29 Aug 2016 14:40:39 +0900
groonga (6.0.7-1) unstable; urgency=medium
* New upstream release.
* debian/patches/fix-nginx-build-error-with-openssl-1.1.patch
- Update OpenSSL patch for bundled nginx 1.11.3
-- Kentaro Hayashi <hayashi@clear-code.com> Thu, 04 Aug 2016 22:00:19 +0900
groonga (6.0.5-2) unstable; urgency=medium
* debian/patches/fix-nginx-build-error-with-openssl-1.1.patch
- Fix FTBFS with OpenSSL 1.1.0 (Closes: #828331)
* debian/copyright
- Update copyright year about vendor/mruby.
-- Kentaro Hayashi <hayashi@clear-code.com> Sat, 16 Jul 2016 17:26:18 +0900
groonga (6.0.5-1) unstable; urgency=medium
* New upstream release.
-- Kentaro Hayashi <hayashi@clear-code.com> Thu, 30 Jun 2016 23:37:23 +0900
groonga (6.0.4-1) unstable; urgency=medium
* New upstream release.
* debian/control
- Drop needless dependency to autotools-dev.
* debian/groonga-httpd.service,
debian/groonga-server-gqtp.service
- Add Documentation= entry to service unit.
* debian/groonga-httpd.default,
debian/groonga-server-gqtp.default
- Update default configuration in this release.
-- Kentaro Hayashi <hayashi@clear-code.com> Tue, 07 Jun 2016 22:09:26 +0900
groonga (6.0.2-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* debian/control
- Update standards version to 3.9.8.
- Update compat level to 10.
- Drop needless dependency to dh-autoreconf.
* debian/upstream/signing-key.asc
- Add signing key to check signature.
* debian/watch
- Add pgpsigurlmangle to verify the archive.
* debian/groonga-bin.install
- Drop man files which are not provided anymore.
- Install missing grndb command.
* debian/groonga-httpd.service
- Make package description more clear.
- Use EnvironmentFile directive to customize.
- Drop unused Conflicts directive.
* debian/groonga-gqtp.service
- Make package description more clear.
- Use server mode which does not fork.
* debian/libgroonga0.install
- Install missing functions plugin.
* debian/copyright
- Update copyright year.
* debian/groonga-bin.lintian-overrides,
debian/groonga-httpd.lintian-overrides,
debian/groonga-plugin-suggest.lintian-overrides
- Suppress binary-without-manpage lintian warnings because
upstream dropped man support explicitly.
* debian/rule
- Remove bundled jquery and underscore correctly.
-- HAYASHI Kentaro <hayashi@clear-code.com> Fri, 29 Apr 2016 00:51:25 +0900
groonga (6.0.1-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* debian/control
- Use Architecture: any to support more architectures.
- Drop transitional groonga-server-http package.
* debian/rules
- Remove needless DEB_BUILD_HARDENING flag.
- Disable static library.
* debian/groonga-httpd.default
- Set variables to enable fast phrase search feature.
-- HAYASHI Kentaro <hayashi@clear-code.com> Mon, 28 Mar 2016 21:59:57 +0900
groonga (6.0.0-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* debian/control
- Fix "undefined reference to `GRN_ATOMIC_ADD_EX'" on mips,mipsel,m68k.
Closes: #770243
- Update standards-version to 3.9.7
- Add SSL/TLS dependency which is required by groonga-httpd.
* patches/*
- Remove needless use-jquery-flot-0.8.3.patch because it is fixed
in upstream.
-- HAYASHI Kentaro <hayashi@clear-code.com> Sun, 28 Feb 2016 12:34:17 +0900
groonga (5.1.2-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* patches/use-jquery-flot-0.8.3.patch
- Fix source-is-missing lintian error.
* debian/rules,debian/control
- Fix automake related FTBFS issue which is caused by added patch.
-- HAYASHI Kentaro <hayashi@clear-code.com> Sat, 30 Jan 2016 21:48:00 +0900
groonga (5.1.1-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* debian/copyright
- Fix I:unused-file-paragraph-in-dep5-copyright paragraph notifications.
* debian/rules
- Fix FTBFS on ppc64el due to outdated config.guess in vendor/onigmo-source.
-- HAYASHI Kentaro <hayashi@clear-code.com> Sat, 02 Jan 2016 20:47:09 +0900
groonga (5.1.0-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Import upstream debian/* changes.
- Closes: #799167, #800451
* Do not delete conffiles which are owned by other packages
- Closes: #773029
* debian/source.lintian-overrides
- Suppress source-is-missing error.
* debian/tests/*
- Add files for autopkgtest.
-- HAYASHI Kentaro <hayashi@clear-code.com> Sun, 27 Dec 2015 00:00:00 +0900
groonga (4.0.6.1-2) unstable; urgency=low
* Team upload.
* debian/control
- Support amd64,i386,kfreebsd-amd64,kfreebsd-i386 and ppc64el only
because of build failure for other architectures. It is a just workaroud.
- Follow Standard-Version to 3.9.6.
-- HAYASHI Kentaro <hayashi@clear-code.com> Sat, 25 Oct 2014 02:58:33 +0000
groonga (4.0.6.1-1) unstable; urgency=low
* Team upload.
* debian/copyright
- Add missing copyright about sphinx bundled js/css.
- Add missing copyright about jquery-ui css.
* Initial upload to Debian (Closes: #732055)
-- HAYASHI Kentaro <hayashi@clear-code.com> Wed, 15 Oct 2014 12:09:48 +0000
groonga (4.0.6-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@cozmixng.org> Mon, 29 Sep 2014 00:00:00 +0900
groonga (4.0.5-1) unstable; urgency=low
* New upstream release.
* debian/copyright
- Add missing copyright about bundled .js and .css
* debian/missing-sources
- Add missing-sources for bundled JavaScript.
-- Kouhei Sutou <kou@clear-code.com> Fri, 29 Aug 2014 00:00:00 +0900
groonga (4.0.4-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Tue, 29 Jul 2014 00:00:00 +0900
groonga (4.0.3-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Sun, 29 Jun 2014 00:00:00 +0900
groonga (4.0.2-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Thu, 29 May 2014 00:00:00 +0900
groonga (4.0.1-2) unstable; urgency=low
* debian/control
- Add a missing pkg-config dependency to libgroonga-dev.
- Depend on mecab-naist-jdic instead of mecab-ipadic-utf8 because
mecab-naist-jdic is a replacement of mecab-ipadic-utf8.
-- Kouhei Sutou <kou@clear-code.com> Thu, 29 May 2014 00:00:00 +0900
groonga (4.0.1-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Sat, 29 Mar 2014 00:00:00 +0900
groonga (4.0.0-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Sun, 09 Feb 2014 00:00:00 +0900
groonga (3.1.2-1) unstable; urgency=low
* New upstream release.
* debian/control
- Add proper description to fix "duplicate-long-description" lintian warning
for groonga-server-gqtp and groonga-server-http packages.
- Remove needless period to fix I:description-synopsis-might-not-be-phrased-properly lintian warning.
- Use "all" in Architecture field to fix I: package-contains-no-arch-dependent-files
lintian warning for groonga-example package.
* debian/rules
- Add DEB_BUILD_HARDENING flag to fix lintian warning "hardening-no-relro" and
"hardening-no-fortify-functions"
-- HAYASHI Kentaro <hayashi@clear-code.com> Wed, 29 Jan 2014 00:00:00 +0900
groonga (3.1.1-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Sun, 29 Dec 2013 00:00:00 +0900
groonga (3.1.0-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Fri, 29 Nov 2013 00:00:00 +0900
groonga (3.0.9-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Tue, 29 Oct 2013 00:00:00 +0900
groonga (3.0.8-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Sun, 29 Sep 2013 00:00:00 +0900
groonga (3.0.7-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Thu, 29 Aug 2013 00:00:00 +0900
groonga (3.0.6-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Mon, 29 Jul 2013 00:00:00 +0900
groonga (3.0.5-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Sat, 29 Jun 2013 00:00:00 +0900
groonga (3.0.4-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Wed, 29 May 2013 00:00:00 +0900
groonga (3.0.3-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Mon, 29 Apr 2013 00:00:00 +0900
groonga (3.0.2-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Fri, 29 Mar 2013 00:00:00 +0900
groonga (3.0.1-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Thu, 28 Feb 2013 00:00:00 +0900
groonga (3.0.0-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Sat, 09 Feb 2013 00:00:00 +0900
groonga (2.1.2-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Tue, 29 Jan 2013 00:00:00 +0900
groonga (2.1.1-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Sat, 29 Dec 2012 15:04:41 +0900
groonga (2.1.0-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Sat, 29 Dec 2012 00:00:00 +0900
groonga (2.0.9-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Thu, 29 Nov 2012 00:00:00 +0900
groonga (2.0.8-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Mon, 29 Oct 2012 00:00:00 +0900
groonga (2.0.7-1) unstable; urgency=low
* New upstream release.
-- HAYASHI Kentaro <hayashi@clear-code.com> Sat, 29 Sep 2012 00:00:00 +0900
groonga (2.0.6-1) unstable; urgency=low
* New upstream release.
* Split common tasks for server use into groonga-server-common package.
* groonga-server and groonga-httpd require groonga-server-common package.
-- HAYASHI Kentaro <hayashi@clear-code.com> Wed, 29 Aug 2012 00:00:00 +0900
groonga (2.0.5-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Sun, 29 Jul 2012 00:00:00 +0900
groonga (2.0.4-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Fri, 29 Jun 2012 00:00:00 +0900
groonga (2.0.3-1) unstable; urgency=low
* New upstream release.
* Fix a bug that log_reopen command in logrotate uses wrong protocol.
-- Kouhei Sutou <kou@clear-code.com> Tue, 29 May 2012 00:00:00 +0900
groonga (2.0.2-1) unstable; urgency=low
* New upstream release.
* Set missing default values.
-- Kouhei Sutou <kou@clear-code.com> Sun, 29 Apr 2012 00:00:00 +0900
groonga (2.0.1-3) unstable; urgency=low
* Fix default file path: /etc/default/groonga -> /etc/default/groonga-server
* Use shutdown command for stop.
-- Kouhei Sutou <kou@clear-code.com> Fri, 30 Mar 2012 00:00:00 +0900
groonga (2.0.1-2) unstable; urgency=low
* Fix bind address argument parameter.
Patch by Masaharu IWAI. Thanks!!!
-- Kouhei Sutou <kou@clear-code.com> Fri, 30 Mar 2012 00:00:00 +0900
groonga (2.0.1-1) unstable; urgency=low
* New upstream release.
* grntest -> groonga-benchmark.
* Remove groogna-tools package.
-- Kouhei Sutou <kou@clear-code.com> Thu, 29 Mar 2012 00:00:00 +0900
groonga (2.0.0-1) unstable; urgency=low
* New upstream release.
* Use HTTP as the default protocol.
-- Kouhei Sutou <kou@clear-code.com> Wed, 29 Feb 2012 00:00:00 +0900
groonga (1.3.0-1) unstable; urgency=low
* New upstream release.
* groonga-server doesn't require groonga-munin-plugins.
Suggested by Masaharu IWAI. Thanks!!!
-- Kouhei Sutou <kou@clear-code.com> Sun, 29 Jan 2012 00:00:00 +0900
groonga (1.2.9-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Thu, 29 Dec 2011 00:00:00 +0900
groonga (1.2.8-1) unstable; urgency=low
* New upstream release.
* Enable zlib support.
* Enable lzo support.
-- Kouhei Sutou <kou@clear-code.com> Tue, 29 Nov 2011 00:00:00 +0900
groonga (1.2.7-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Sat, 29 Oct 2011 00:00:00 +0900
groonga (1.2.6-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Thu, 29 Sep 2011 00:00:00 +0900
groonga (1.2.5-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Mon, 29 Aug 2011 00:00:00 +0900
groonga (1.2.4-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Fri, 29 Jul 2011 00:00:00 +0900
groonga (1.2.3-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Wed, 29 Jun 2011 00:00:00 +0900
groonga (1.2.2-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Sun, 29 May 2011 00:00:00 +0900
groonga (1.2.1-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Fri, 29 Apr 2011 00:00:00 +0900
groonga (1.2.0-3) unstable; urgency=low
* libgronga-dev: add missing libgroonga.so.
-- Kouhei Sutou <kou@clear-code.com> Wed, 06 Apr 2011 21:00:00 +0900
groonga (1.2.0-2) unstable; urgency=low
* libgronga-dev: add missing libgroonga.so.
-- Kouhei Sutou <kou@clear-code.com> Tue, 29 Mar 2011 21:00:00 +0900
groonga (1.2.0-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Tue, 29 Mar 2011 00:00:00 +0900
groonga (1.1.0-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Wed, 09 Feb 2011 00:00:00 +0900
groonga (1.0.8-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Wed, 02 Feb 2011 00:00:00 +0900
groonga (1.0.7-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Sat, 29 Jan 2011 00:00:00 +0900
groonga (1.0.6-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Fri, 31 Dec 2010 00:00:00 +0900
groonga (1.0.5-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Wed, 29 Dec 2010 00:00:00 +0900
groonga (1.0.4-1) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Mon, 29 Nov 2010 00:00:00 +0900
groonga (1.0.3-1) lucid; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Fri, 29 Oct 2010 16:00:22 +0900
groonga (1.0.2-1) lucid; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Thu, 09 Sep 2010 15:19:24 +0900
groonga (1.0.1-1) lucid; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Mon, 06 Sep 2010 16:21:35 +0900
groonga (1.0.0-1) lucid; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Sun, 29 Aug 2010 00:07:53 +0900
groonga (0.7.7-1) lucid; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Wed, 25 Aug 2010 17:05:58 +0900
groonga (0.7.6-2) unstable; urgency=low
* Split packages.
-- Kouhei Sutou <kou@clear-code.com> Wed, 25 Aug 2010 22:11:14 +0900
groonga (0.7.6) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Thu, 19 Aug 2010 22:11:14 +0900
groonga (0.7.4) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Thu, 29 Jul 2010 14:24:00 +0900
groonga (0.1.9) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Tue, 20 Apr 2010 15:10:04 +0900
groonga (0.1.6) unstable; urgency=low
* New upstream release.
-- Kouhei Sutou <kou@clear-code.com> Wed, 10 Feb 2010 13:00:55 +0900
groonga (0.1.5) unstable; urgency=low
* Initial release.
-- Kouhei Sutou <kou@clear-code.com> Fri, 15 Jan 2010 16:41:04 +0900
|