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
|
sqlite3 (3.16.2-5+deb9u1) stretch; urgency=medium
* Fix CVE-2017-10989 , heap-based buffer over-read via undersized RTree
blobs (closes: #867618).
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Tue, 03 Oct 2017 16:13:44 +0000
sqlite3 (3.16.2-5) unstable; urgency=medium
* Backport fix for corruption due to REPLACE in an auto-vacuumed database.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Thu, 08 Jun 2017 22:07:42 +0000
sqlite3 (3.16.2-4) unstable; urgency=high
* Backport fix for a possible NULL pointer dereference in the OP_Found
opcode that can follow an OOM error.
* Backport fix for stack overflow while parsing deeply nested JSON.
* Backport fix for JSON allows unescaped control characters in strings.
* Backport fix for JSON extension accepts invalid numeric values.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sun, 04 Jun 2017 07:58:54 +0000
sqlite3 (3.16.2-3) unstable; urgency=medium
* Backport upstream fix to ensure that sqlite3_blob_reopen() correctly
handles short rows.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Mon, 13 Feb 2017 17:31:26 +0000
sqlite3 (3.16.2-2) unstable; urgency=medium
* Backport upstream fix of variable initialization in the CLI tool.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sun, 22 Jan 2017 17:21:15 +0000
sqlite3 (3.16.2-1) unstable; urgency=medium
* New upstream, bugfix release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Fri, 06 Jan 2017 17:51:34 +0000
sqlite3 (3.16.0-1) unstable; urgency=medium
* New upstream release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Mon, 02 Jan 2017 17:48:22 +0000
sqlite3 (3.15.2-2) unstable; urgency=medium
* Backport upstream fix for in-memory database slowness.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Tue, 20 Dec 2016 16:53:53 +0000
sqlite3 (3.15.2-1) unstable; urgency=medium
* New upstream, bugfix release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Tue, 29 Nov 2016 17:09:20 +0000
sqlite3 (3.15.1-1) unstable; urgency=low
* New upstream, bugfix release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sun, 06 Nov 2016 16:58:47 +0000
sqlite3 (3.15.0-1) unstable; urgency=low
* New upstream release (closes: #841027).
* Explicitly enable FTS4 tokenizer (closes: #747293).
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Tue, 18 Oct 2016 16:30:24 +0000
sqlite3 (3.14.2-1) unstable; urgency=low
* New upstream, bugfix release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Wed, 14 Sep 2016 17:33:32 +0000
sqlite3 (3.14.1-1) unstable; urgency=low
* New upstream, bugfix release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sun, 14 Aug 2016 08:55:35 +0000
sqlite3 (3.14.0-1) unstable; urgency=low
* New upstream, "π" release.
* Keep rebuildable.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Tue, 09 Aug 2016 23:20:52 +0000
sqlite3 (3.13.0-1) unstable; urgency=low
* New upstream release.
* Enable session extension with its preupdate hook; update library symbols
accordingly.
* Update 30-cross.patch to this release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Thu, 19 May 2016 14:58:03 +0000
sqlite3 (3.12.2-1) unstable; urgency=low
* New upstream, bugfix release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Wed, 20 Apr 2016 11:06:29 +0000
sqlite3 (3.12.1-1) unstable; urgency=low
* New upstream, bugfix release:
- fix segfault following heavy SAVEPOINT usage (closes: #820225),
- fix segfault on 'unique primary key' and 'without rowid'
(closes: #736463).
* Don't force ldconfig in postinst (closes: #820499).
* Update Standards-Version to 3.9.8 .
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sat, 09 Apr 2016 16:02:33 +0000
sqlite3 (3.12.0-1) unstable; urgency=low
* New upstream release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Fri, 01 Apr 2016 15:08:53 +0000
sqlite3 (3.11.1-1) unstable; urgency=low
* New upstream release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Fri, 04 Mar 2016 18:04:44 +0100
sqlite3 (3.11.0-3) unstable; urgency=low
* Enable FTS5 extension (closes: #816463) and update library symbols
accordingly.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Wed, 02 Mar 2016 17:16:56 +0100
sqlite3 (3.11.0-2) unstable; urgency=low
* Compile with SQLITE_ENABLE_FTS3_TOKENIZER for backwards compatibility
(closes: #815499).
* Update Standards-Version to 3.9.7 .
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Tue, 23 Feb 2016 21:31:39 +0100
sqlite3 (3.11.0-1) unstable; urgency=low
* New upstream release.
* Compile with thread-safe option.
* Update squash-bad-deps patch.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Wed, 17 Feb 2016 23:08:31 +0100
sqlite3 (3.10.2-1) unstable; urgency=low
* New upstream, bugfix release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Thu, 21 Jan 2016 01:21:10 +0100
sqlite3 (3.10.1-1) unstable; urgency=low
* New upstream, bugfix release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Thu, 14 Jan 2016 21:20:48 +0100
sqlite3 (3.10.0-1) unstable; urgency=low
* New upstream release.
* Update patch for cross compilation.
* Use SQLITE_LIKE_DOESNT_MATCH_BLOBS compile-time option.
* Add two new symbols to library.
* Build and install sqldiff (closes: #806575).
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Wed, 06 Jan 2016 21:15:46 +0100
sqlite3 (3.9.2-1) unstable; urgency=low
* New upstream release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sat, 07 Nov 2015 19:54:52 +0100
sqlite3 (3.9.1-2) unstable; urgency=low
[ Helmut Grohne <helmut@subdivi.de> ]
* Fix FTCBFS: Update 30-cross.patch to cover all lemon invocations
(closes: #802742).
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Fri, 23 Oct 2015 07:45:27 +0200
sqlite3 (3.9.1-1) unstable; urgency=low
* New upstream release.
* Update 10-520478-squash-bad-deps patch.
* Enable FTS3 enhanced query syntax (closes: #759272).
* Update libsqlite3-0 symbols.
* No longer have problems with doc-base files (closes: #784100).
* Enable JSON1 loadable extension.
[ Yuriy M. Kaminskiy <yumkam@gmail.com> ]
* Build with --as-needed linker option (closes: #792515).
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Mon, 19 Oct 2015 18:35:02 +0200
sqlite3 (3.8.11.1-1) unstable; urgency=low
* New upstream, bugfix release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Fri, 31 Jul 2015 15:21:25 +0000
sqlite3 (3.8.11-1) unstable; urgency=low
* New upstream release.
* Update 10-520478-squash-bad-deps.patch .
* Update libsqlite3-0 symbols.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Mon, 27 Jul 2015 16:17:40 +0000
sqlite3 (3.8.10.2-1) unstable; urgency=medium
* New upstream, bugfix release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Wed, 20 May 2015 18:54:06 +0000
sqlite3 (3.8.10.1-1) unstable; urgency=low
* New upstream, bugfix release.
* Enable the dbstat virtual table.
* Update libsqlite3-0 symbols.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Tue, 12 May 2015 21:09:53 +0000
sqlite3 (3.8.10-1) unstable; urgency=medium
* New upstream release, fixes many obscure problems discovered while SQL
fuzzing.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Thu, 07 May 2015 18:14:44 +0000
sqlite3 (3.8.9-2) unstable; urgency=medium
[ Pino Toscano <pino@debian.org> ]
* Update 20-hurd-locking-style.patch for a new code path.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sat, 02 May 2015 09:54:49 +0000
sqlite3 (3.8.9-1) unstable; urgency=high
* New upstream release.
* Fixes CVE-2015-3414 , CVE-2015-3415 and CVE-2015-3416 (closes: #783968).
* Rework 20-hurd-locking-style.patch due to upstream changes.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Tue, 21 Apr 2015 15:28:23 +0000
sqlite3 (3.8.8.3-1) experimental; urgency=low
* New upstream, bugfix release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sat, 07 Mar 2015 11:26:13 +0000
sqlite3 (3.8.8.2-1) experimental; urgency=low
* New upstream, bugfix release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sat, 31 Jan 2015 13:27:35 +0000
sqlite3 (3.8.8.1-1) experimental; urgency=low
* New upstream, bugfix release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sun, 25 Jan 2015 15:30:11 +0000
sqlite3 (3.8.8-1) experimental; urgency=low
* New upstream release with several improvements.
* Upload to experimental due to Jessie freeze.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sat, 17 Jan 2015 17:41:41 +0000
sqlite3 (3.8.7.4-1) unstable; urgency=medium
* New upstream bugfix release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sun, 28 Dec 2014 09:56:36 +0000
sqlite3 (3.8.7.2-1) unstable; urgency=medium
* New upstream bugfix release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Tue, 02 Dec 2014 14:28:59 +0000
sqlite3 (3.8.7.1-1) unstable; urgency=medium
* New upstream bugfix release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Thu, 06 Nov 2014 16:24:21 +0000
sqlite3 (3.8.7-1) unstable; urgency=medium
* New upstream release.
* Register with doc-base (closes: #691596).
* Update Standards-Version to 3.9.6 .
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Fri, 17 Oct 2014 15:09:56 +0000
sqlite3 (3.8.6-1) unstable; urgency=low
* New upstream release.
* Update 20-hurd-locking-style.patch to match this release.
* Merge with Ubuntu.
[ Matthias Klose <doko@ubuntu.com> ]
* Fix i386 cross builds.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sat, 23 Aug 2014 07:37:16 +0000
sqlite3 (3.8.5-2) unstable; urgency=low
* Fix FTBFS on x86 architectures (closes: #751878).
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Tue, 17 Jun 2014 19:37:58 +0000
sqlite3 (3.8.5-1) unstable; urgency=low
* New upstream release, adjust patches.
* Correct multi-arch paths (closes: #738507).
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sun, 15 Jun 2014 09:20:53 +0000
sqlite3 (3.8.4.3-3) unstable; urgency=medium
* Add upstream fix of Nautilus crash as 40-sqlite-bug1075889.patch
(closes: #746521).
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sun, 04 May 2014 19:26:01 +0200
sqlite3 (3.8.4.3-2) unstable; urgency=low
* Make lemon look for the packaged lempar.c and make it working again
(closes: #576272).
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sat, 26 Apr 2014 19:36:37 +0200
sqlite3 (3.8.4.3-1) unstable; urgency=low
* New upstream release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Thu, 10 Apr 2014 22:26:12 +0200
sqlite3 (3.8.4.1-1) unstable; urgency=low
* New upstream release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sat, 22 Mar 2014 14:47:04 +0100
sqlite3 (3.8.3.1-1) unstable; urgency=low
* New upstream release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Wed, 12 Feb 2014 18:35:01 +0100
sqlite3 (3.8.3-1) unstable; urgency=low
* New upstream release.
* Disable 02-lemon-snprintf.patch , upstream completely reworked sprintf
variants.
* Remove 11-update-manpage.patch , upstream merged it.
* Update Standards-Version to 3.9.5 .
* Sync with Ubuntu.
[ Matthias Klose <doko@ubuntu.com> ]
* Build for Tcl 8.6.
* Build using dh-autoreconf and autotools-dev.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Mon, 10 Feb 2014 20:27:38 +0100
sqlite3 (3.8.2-1) unstable; urgency=low
* New upstream release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sun, 08 Dec 2013 10:48:05 +0100
sqlite3 (3.8.1-2) unstable; urgency=low
* Backport upstream checkin 9aac4e588c to fix transitive WHERE-clause
constraints on LEFT JOINs (closes: #730174).
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Mon, 02 Dec 2013 13:06:04 +0100
sqlite3 (3.8.1-1) unstable; urgency=low
* New upstream release.
* Update 10-520478-squash-bad-deps.patch .
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Thu, 24 Oct 2013 21:47:57 +0200
sqlite3 (3.8.0.2-1) unstable; urgency=low
* New upstream release.
* Build with hardening enabled.
* Update watch file.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Sat, 07 Sep 2013 08:04:44 +0200
sqlite3 (3.8.0.1-1) unstable; urgency=low
* New upstream release.
* Update patches to apply clean.
* Increase SQLITE_MAX_VARIABLE_NUMBER compile time variable to 250000
(closes: #717900).
[ Colin Watson <cjwatson@ubuntu.com> ]
* Use dh_autotools-dev, bringing config.guess and config.sub up to date
enough to handle arm64 (closes: #712037).
[ Eleanor Chen <chenyueg@gmail.com> ]
* Don't generate pkgIndex.tcl on cross builds (closes: #720713).
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Fri, 30 Aug 2013 01:35:59 +0200
sqlite3 (3.7.17-1) unstable; urgency=medium
* New upstream release. Urgency due to fix a potential database corruption.
* Update patches to apply clean.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Tue, 21 May 2013 21:56:39 +0200
sqlite3 (3.7.16.2-1) unstable; urgency=low
* New upstream release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.org> Fri, 19 Apr 2013 21:40:10 +0200
sqlite3 (3.7.16.1-1) unstable; urgency=low
* New upstream release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Fri, 29 Mar 2013 19:40:04 +0100
sqlite3 (3.7.16-1) unstable; urgency=low
* New upstream release, fixes umask handling (closes: #703465).
* Update Standards-Version to 3.9.4 .
* Make libsqlite3-dev package multi-arch: same (closes: #683588).
* Include HTML documentation for lemon (closes: #698636).
* Update patches to apply clean.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Tue, 19 Mar 2013 23:33:43 +0100
sqlite3 (3.7.15.2-1) unstable; urgency=low
* New upstream release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Tue, 15 Jan 2013 18:36:34 +0100
sqlite3 (3.7.15.1-1) unstable; urgency=low
* New upstream release, update patches.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Tue, 25 Dec 2012 14:03:18 +0100
sqlite3 (3.7.15-1) unstable; urgency=low
* New upstream release, update patches.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Fri, 14 Dec 2012 20:42:02 +0100
sqlite3 (3.7.14.1-1) unstable; urgency=low
* New upstream release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sat, 06 Oct 2012 16:19:41 +0200
sqlite3 (3.7.14-1) unstable; urgency=low
* New upstream release, update patches to match it.
* Update watch file to match website change.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Thu, 13 Sep 2012 09:30:13 +0000
sqlite3 (3.7.13-1) unstable; urgency=low
* New upstream release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Wed, 13 Jun 2012 21:43:48 +0200
sqlite3 (3.7.12.1-1) unstable; urgency=low
* New upstream release (closes: #674078).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Wed, 23 May 2012 00:22:02 +0200
sqlite3 (3.7.12-1) unstable; urgency=low
* New upstream release, adjust patches to apply clean.
* Increase MAX_DEFAULT_PAGE_SIZE and SQLITE_MAX_SCHEMA_RETRY for Firefox and
Iceweasel (closes: #672573).
* Remove double -ldl entry from Libs.private in sqlite3.pc
(closes: #653170).
* Drop hardening-wrapper build dependency (closes: #672575), adjust
debian/rules to still build with hardening enabled.
[ Mike Hommey ]
* Make the package backportable without changes other than a changelog
entry (closes: #672663).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Tue, 15 May 2012 09:17:23 +0000
sqlite3 (3.7.11-3) unstable; urgency=low
* Disable the usage of malloc_usable_size() (closes: #663691, #665363),
thanks to Steven Chamberlain <steven@pyro.eu.org> for the patch.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Mon, 30 Apr 2012 10:56:57 +0200
sqlite3 (3.7.11-2) unstable; urgency=low
* Fix pkgIndex.tcl generation for multi-arch.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Thu, 22 Mar 2012 02:06:39 +0100
sqlite3 (3.7.11-1) unstable; urgency=low
* New upstream release.
* Update packaging bits.
* Make the package multi-arch and enable hardening compilation.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Wed, 21 Mar 2012 10:38:59 +0000
sqlite3 (3.7.10-1) unstable; urgency=low
* New upstream release (closes: #659443).
* Fix pkgIndex.tcl problem, thanks to Mike Hommey <mh@glandium.org>
(closes: #654662).
* Update patches and symbols file to match this release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Fri, 20 Jan 2012 14:39:11 +0000
sqlite3 (3.7.9-3) unstable; urgency=low
* Correct flock locking on Hurd (closes: #653937), thanks to Pino Toscano
<pino@debian.org> .
* Add self test if pkgIndex.tcl is correctly generated (closes: #650961).
* Enable LIMIT support for UPDATE and DELETE commands (closes: #649169).
* Update packaging bits.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Tue, 03 Jan 2012 19:00:51 +0100
sqlite3 (3.7.9-2) unstable; urgency=low
* Export CFLAGS as dpkg-buildpackage no longer does it (closes: #647842).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Mon, 07 Nov 2011 19:12:18 +0100
sqlite3 (3.7.9-1) unstable; urgency=low
* New upstream release, refresh patches.
* Update symbols file (closes: #642584).
* Update manpage (closes: #642807).
[ Colin Watson <cjwatson@ubuntu.com> ]
* Make sure to build lemon when cross-compiling (closes: #643285).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sat, 05 Nov 2011 12:36:16 +0000
sqlite3 (3.7.8-1) unstable; urgency=low
* New upstream release, remove 31-like-fix.patch as it contains that fix.
* Force sqlite3 to depend on the same libsqlite3-0 binary version
(closes: #640205).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Wed, 21 Sep 2011 19:38:54 +0200
sqlite3 (3.7.7-2) unstable; urgency=low
* Get LIKE function fix from upstream as 31-like-fix.patch (closes: #631736).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Mon, 27 Jun 2011 16:31:41 +0200
sqlite3 (3.7.7-1) unstable; urgency=low
* New upstream release, update patches and libsqlite3-0.symbols accordingly.
* Update packaging for more policy conformance.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sat, 25 Jun 2011 17:55:22 +0200
sqlite3 (3.7.6.3-1) unstable; urgency=low
* New upstream release, update patches.
* Correctly use binary-arch and binary-indep targets, thanks to Daniel
Baumann (closes: #624705).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sat, 21 May 2011 11:31:14 +0200
sqlite3 (3.7.6.2-1) unstable; urgency=low
* New upstream release.
* Fix cross-compilation support. Make lemon built for build and target
hosts when cross-building, thanks to Steve Langasek (closes: #611949).
* Fix Tcl module path, thanks to Torsten Landschoff (closes: #617443).
* Disable lookaside allocator for now (closes: #615061).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Fri, 15 Apr 2011 09:12:49 +0200
sqlite3 (3.7.5-1) unstable; urgency=low
* New upstream release.
* Rework package to use debhelper instead of cdbs (closes: #611956).
* Use a symbols file (closes: #588456, #609946).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Wed, 09 Feb 2011 19:01:07 +0100
sqlite3 (3.7.4-2) unstable; urgency=low
* Set shlibs back to 3.7.3, based on the work of Julien Cristau.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sun, 26 Dec 2010 22:47:54 +0100
sqlite3 (3.7.4-1) unstable; urgency=low
* New upstream release.
* Update debian/watch for new upstream source version numbers.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Thu, 09 Dec 2010 20:07:00 +0100
sqlite3 (3.7.3-1) unstable; urgency=high
* New upstream release (closes: #591298), high urgency due to fixing a RC
performance regression.
* Updated manpage (closes: #598318).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Wed, 13 Oct 2010 22:26:03 +0200
sqlite3 (3.7.2-1) unstable; urgency=high
* New upstream release (closes: #594010), fixing another database
corruption, hence the urgency.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Mon, 23 Aug 2010 15:16:19 +0000
sqlite3 (3.7.0.1-1) unstable; urgency=high
* New upstream release (closes: #592573), high urgency due to fixing
database corruption.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Fri, 13 Aug 2010 20:14:42 +0000
sqlite3 (3.7.0-1.1) unstable; urgency=high
[ Iain Lane ]
* Non-maintainer upload.
* Backport fix from upstream bug 13f033c865 to fix performance
regression introduced in 3.7.0-1. (Closes: #591298)
[ Julien Cristau ]
* High urgency upload for RC bugfix.
-- Julien Cristau <jcristau@debian.org> Sat, 07 Aug 2010 16:55:51 -0400
sqlite3 (3.7.0-1) unstable; urgency=low
* New major upstream version (closes: #590232).
* Remove backported fix, 30-fix-default-values-crash.patch of #575276 ; this
release contains it.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sun, 25 Jul 2010 07:49:27 +0000
sqlite3 (3.6.23.1-4) unstable; urgency=low
* Clean up my mess with src/os_unix.c for proper Hurd build.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sun, 30 May 2010 16:15:40 +0000
sqlite3 (3.6.23.1-3) unstable; urgency=low
* Update 20-hurd-locking-style.patch to make it build on Hurd again;
thanks to Pino Toscano for fixing.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sat, 29 May 2010 15:31:30 +0000
sqlite3 (3.6.23.1-2) unstable; urgency=low
* Enable unlock notify API (closes: #579266).
* Backport fix of 'INSERT INTO tbl DEFAULT VALUES' (closes: #575276).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Wed, 05 May 2010 18:58:47 +0000
sqlite3 (3.6.23.1-1) unstable; urgency=low
* New upstream release.
* Clean up patch handling; run aclocal to prevent libtool version mismatch
errors.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sun, 04 Apr 2010 07:29:35 +0000
sqlite3 (3.6.23-1) unstable; urgency=low
* New upstream release, update patches accordingly.
* Enable soundex support (closes: #528016).
* Switch to 3.0 (quilt) source format, ship documentation as separate
tarball.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sat, 13 Mar 2010 16:48:08 +0000
sqlite3 (3.6.22-1) unstable; urgency=low
* New upstream release (closes: #568061).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Tue, 02 Feb 2010 18:44:27 +0000
sqlite3 (3.6.21-2) unstable; urgency=medium
* Run autoreconf to prevent FTBFS with new libtool (closes: #560660).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Fri, 11 Dec 2009 14:34:09 +0000
sqlite3 (3.6.21-1) unstable; urgency=medium
* New upstream release, SQLITE_SECURE_DELETE compile-time option fixed to
make sure that content is deleted even when the truncate optimization
applies (closes: #555955).
* Add 11-manpage-refers-to-sqlite3-doc.patch patch to fix manpage to refer
to sqlite3-doc (closes: #560132).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Wed, 09 Dec 2009 14:55:17 +0000
sqlite3 (3.6.20-1) unstable; urgency=low
* New upstream release (may fix #546599).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Tue, 10 Nov 2009 22:48:13 +0000
sqlite3 (3.6.19-3) unstable; urgency=low
* Build conflict with tcl8.4{,-dev}, SQLite3 picks up the wrong version
despite of specifying tcl8.5 to use (closes: #552304).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Mon, 26 Oct 2009 05:58:04 +0000
sqlite3 (3.6.19-2) unstable; urgency=low
* Compile with secure deletion option enabled (closes: #551968).
* Make libsqlite3-tcl build with tcl8.5 (closes: #547445).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Fri, 23 Oct 2009 07:45:19 +0000
sqlite3 (3.6.19-1) unstable; urgency=low
* New upstream release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sun, 18 Oct 2009 07:11:18 +0000
sqlite3 (3.6.18-1) unstable; urgency=low
* New upstream release.
* Change readline build dependency to plain libreadline-dev (version 6 ATM)
and standards-version to 3.8.3 .
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sun, 13 Sep 2009 14:47:20 +0000
sqlite3 (3.6.17-2) unstable; urgency=low
* Reintroduce libtool and auto{conf,make} updates of CDBS
(closes: #541684, #541731), patches modify configure.ac and Makefile.in .
* Update patches to match this upstream release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sun, 16 Aug 2009 15:55:30 +0000
sqlite3 (3.6.17-1) unstable; urgency=low
* New upstream release.
* Don't ask CDBS to run libtool, autoconf nor automake (closes: #541413), no
need to build-depend on these tools anymore.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sat, 15 Aug 2009 04:23:42 +0000
sqlite3 (3.6.16-1) unstable; urgency=low
* New upstream release (closes: #536661).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Fri, 10 Jul 2009 22:44:19 +0000
sqlite3 (3.6.14.2-1) unstable; urgency=low
* New upstream release. Disable ICU support, it causes more trouble than
good.
* Add 20-hurd-locking-style.patch for proper locking on Hurd
(closes: #529734).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sun, 31 May 2009 16:28:06 +0000
sqlite3 (3.6.13-1) unstable; urgency=low
* New upstream release (closes: #524617), fixing segfault when table
contains default value (closes: 524166).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sun, 19 Apr 2009 07:18:50 +0000
sqlite3 (3.6.12-1) unstable; urgency=low
* New upstream release, remove 10-install-libsqlite3-first.patch as fixed
upstream in a different way.
* Remove generated files in clean target.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Tue, 31 Mar 2009 18:33:15 +0000
sqlite3 (3.6.11-4) unstable; urgency=low
* Fix that .la file (closes: #520478) (really).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sun, 29 Mar 2009 23:53:53 +0000
sqlite3 (3.6.11-3) unstable; urgency=low
* Really remove transitive dependencies from .la files (closes: #520478).
* Set section and priority fields matching override.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Fri, 27 Mar 2009 20:11:06 +0000
sqlite3 (3.6.11-2) unstable; urgency=low
[ Zack Weinberg ]
* Fix ordering in "make install" (closes: #520153).
* Link libsqlite3.so with libdl (closes: #520466).
* Prune transitive dependencies from .la files (closes: #520478).
* Tweak ICU linkage to eliminate dpkg-shlibdeps complaints (closes: #521082).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Thu, 26 Mar 2009 20:12:02 +0000
sqlite3 (3.6.11-1) unstable; urgency=low
* New upstream release, upload to unstable.
* Enable ICU support (closes: #494987).
* Update debhelper compatibility level to 5 as 4 is deprecated now.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sat, 14 Mar 2009 21:18:18 +0000
sqlite3 (3.6.10-1) experimental; urgency=low
* New upstream release, enable the R*Tree module (closes: #501099).
* Remove 01-sqlite3.pc-version-to-release.patch , applied upstream.
* Rework 02-lemon-snprintf.patch to match this release.
* Remove 03-restore-documentation.patch as documentation can not be built
anymore, but merged into .orig.tar.gz .
* Rework 04-loadextension-links-dl.patch to still link with libdl if load
extension is enabled.
* Remove 05-improve-nan-testing-on-x86.patch and
06-fix-distinct-on-indexes.patch, this release contains these fixes.
* Remove own pkgIndex.tcl , use the original after correcting its path.
* Add ${misc:Depends} to packages.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sat, 17 Jan 2009 08:06:05 +0000
sqlite3 (3.5.9-6) unstable; urgency=low
* Make sqlite3 depends on the exact Debian version of libsqlite3-0
(closes: #502370).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Thu, 16 Oct 2008 15:44:09 +0000
sqlite3 (3.5.9-5) unstable; urgency=low
* Backport fix for distinct on indexes (closes: #500792).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Wed, 01 Oct 2008 20:16:18 +0000
sqlite3 (3.5.9-4) unstable; urgency=low
* Backport improved NaN testing for highly optimized GCC on x86
(closes: #488864).
* Remove rpath from sqlite3 binary.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sun, 24 Aug 2008 11:03:56 +0000
sqlite3 (3.5.9-3) unstable; urgency=low
* Enable full text search (closes: #487914).
* Update Standards-Version to 3.8.0 , no changes needed.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Wed, 25 Jun 2008 11:41:54 +0200
sqlite3 (3.5.9-2) unstable; urgency=low
* Set correct version for TCL (closes: #483990).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Mon, 02 Jun 2008 16:33:24 +0000
sqlite3 (3.5.9-1) unstable; urgency=medium
* New upstream release, contains the backported fix for 3.5.8-4 thus
drop 05-busy-handler-update-retry-fix.patch .
* Urgency set to medium due to fixing a buffer-overrun problem in
sqlite3_mprintf() and fixing a big performance regression on LEFT JOIN
(closes: #479184).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sat, 17 May 2008 16:42:51 +0000
sqlite3 (3.5.8-4) unstable; urgency=low
* Backport busy handler fix from upstream CVS (closes: #480007).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Thu, 08 May 2008 20:36:40 +0200
sqlite3 (3.5.8-3) unstable; urgency=low
* Add 04-loadextension-links-dl.patch to link against dl when
loadextension enabled (closes: #478980).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sat, 03 May 2008 09:19:31 +0200
sqlite3 (3.5.8-2) unstable; urgency=low
* Re-enable extension mechanism (closes: #478337, #475084).
* Create and install a more complete documentation (closes: #478492).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Tue, 29 Apr 2008 01:12:34 +0200
sqlite3 (3.5.8-1) unstable; urgency=low
* New upstream release, re-merge source and documentation.
* Remove 04-fix-tcl-interface.patch , this release contains it.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sun, 27 Apr 2008 21:52:30 +0200
sqlite3 (3.5.7-2) unstable; urgency=low
* Backport TCL interface fix from upstream CVS (closes: #473988).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sun, 06 Apr 2008 20:20:07 +0200
sqlite3 (3.5.7-1) unstable; urgency=low
* New upstream release.
* Redo 03-restore-documentation.patch as upstream Makefile.in changed big.
* Fix Makefile.in for rebuild.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sat, 22 Mar 2008 10:32:05 +0000
sqlite3 (3.5.6-3) unstable; urgency=low
* Add debug library package, thanks to Luis Rodrigo Gallardo Cruz
(closes: #447829).
* Correct snprintf use in 02-lemon-snprintf.patch thanks to Thorsten Glaser.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Thu, 28 Feb 2008 18:50:44 +0000
sqlite3 (3.5.6-2) unstable; urgency=low
* Upload to unstable.
* Add Makefile.in snippets to generate C interface documentation again
(closes: #466938).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Thu, 28 Feb 2008 14:44:43 +0100
sqlite3 (3.5.6-1) experimental; urgency=low
* New upstream release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Thu, 14 Feb 2008 16:30:39 +0100
sqlite3 (3.5.4-1) experimental; urgency=low
* New upstream release, re-merge source and documentation.
* Register with doc-base (closes: #452391).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Fri, 21 Dec 2007 22:40:30 +0200
sqlite3 (3.5.1-1) experimental; urgency=low
* New upstream release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Thu, 4 Oct 2007 09:27:05 +0200
sqlite3 (3.4.2-2) unstable; urgency=low
* Fixed upstream Makefile.in not to lose doc/lemon.html and
doc/report1.txt on rebuilds (closes: #441726).
* Added debian/watch file.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Thu, 4 Oct 2007 08:54:16 +0200
sqlite3 (3.4.2-1) unstable; urgency=low
* New upstream release.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Mon, 20 Aug 2007 16:12:00 +0300
sqlite3 (3.4.1-1) unstable; urgency=low
* New upstream release (closes: #436165).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Sat, 28 Jul 2007 08:51:35 +0300
sqlite3 (3.3.17-1) unstable; urgency=low
* New upstream release.
* Use minor version as well in sqlite3.pc (closes: #424235).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Thu, 17 May 2007 02:01:42 +0300
sqlite3 (3.3.16-1) unstable; urgency=medium
* New upstream release with important bugfixes.
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Thu, 19 Apr 2007 09:13:29 +0000
sqlite3 (3.3.15-1) unstable; urgency=low
* New upstream release (closes: #419534).
* Force enable extensions; not supposed to work on *BSD, but well...
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Tue, 17 Apr 2007 15:56:30 +0000
sqlite3 (3.3.14-1) unstable; urgency=low
* New upstream release (closes: #406436). Accept Otavio's upload
(closes: #397531).
* Include all header files in -dev (closes: #404242), add missing image to
-doc (closes: #368211).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Wed, 04 Apr 2007 17:57:08 +0000
sqlite3 (3.3.8-1.1) unstable; urgency=low
* NMU
* Revert PRAGMA table_info format change on a minor version release
(closes: #397531)
-- Otavio Salvador <otavio@debian.org> Tue, 6 Mar 2007 08:53:43 -0300
sqlite3 (3.3.8-1) unstable; urgency=low
* New upstream version.
* Create lang_* files for documentation (closes: #310603).
* Enable column metadata functions (closes: #375352).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Thu, 12 Oct 2006 21:55:37 +0000
sqlite3 (3.3.7-1) unstable; urgency=low
* New upstream release (closes: #378247).
* New maintainer with ACK from Tomas, close my own NMU fixes
(closes: #339369, #364196, #361412, #352317).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Tue, 8 Aug 2006 04:51:14 +0200
sqlite3 (3.3.5-0.2) unstable; urgency=medium
* NMU to fix package problems:
- correct Tcl provides (closes: #361412);
- compile correctly on 64 bit archs, thanks to Matthias Klose
(closes: #364196).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Mon, 1 May 2006 10:47:59 +0000
sqlite3 (3.3.5-0.1) unstable; urgency=medium
* NMU for new upstream release; fixes thread segfault (in tests) on hppa
(closes: #339369).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Thu, 6 Apr 2006 17:16:42 +0000
sqlite3 (3.3.4-0.1) unstable; urgency=low
* NMU for new upstream release (closes: #352317).
-- Laszlo Boszormenyi (GCS) <gcs@debian.hu> Wed, 5 Apr 2006 01:46:45 +0200
sqlite3 (3.2.8-1) unstable; urgency=low
* New upstream release.
-- Tomas Fasth <tomfa@debian.org> Thu, 29 Dec 2005 03:09:18 +0000
sqlite3 (3.2.7-1) unstable; urgency=low
* New upstream release.
-- Tomas Fasth <tomfa@debian.org> Sun, 25 Sep 2005 12:08:21 +0000
sqlite3 (3.2.5-1) unstable; urgency=low
* New upstream release.
* Removed debian/patches/10-main-timeout.patch, fixed upstream.
* Removed debian/patches/01-configure.ac-version_number.patch, fixed
upstream.
-- Tomas Fasth <tomfa@debian.org> Sun, 28 Aug 2005 21:23:03 +0000
sqlite3 (3.2.2-3) unstable; urgency=low
* Closes: #321487: missing dependency on debconf
The file debian/libsqlite3-0.preinst has been removed. It was
originally part of the ancestor sqlite 2.x source package, which
still exist in parallel with sqlite3. It has now been removed
together with debian/libsqlite3-0.postinst that was created in a
first missguided attempt by me to correct this policy violation.
-- Tomas Fasth <tomfa@debian.org> Sat, 6 Aug 2005 22:16:33 +0000
sqlite3 (3.2.2-2) unstable; urgency=low
* Closes: #314856: Missing pre-dependency on debconf.
* Closes: #319897: /usr/include/sqlite3.h: SQLITE_VERSION_NUMBER is
3000000
-- Tomas Fasth <tomfa@debian.org> Tue, 2 Aug 2005 00:48:25 +0000
sqlite3 (3.2.2-1) unstable; urgency=low
* New upstream release.
* New maintainer.
* Closes: #314856: Missing pre-dependency on debconf.
Moving upgrade notification from debian/libsqlite3-0.preinst to
debian/libsqlite3-0.postinst.
* Closes: #316348: Timeout does not expire on SQLLITE_BUSY.
Adding patch with correct type cast for timeout in src/main.c[283].
* Closes: #317594: sqlite3-3.2.1-1 SIGBUS on 64-bit machines (fixed
upstream)
* Closes: #318341: New upstream version 3.2.2
-- Tomas Fasth <tomfa@debian.org> Mon, 1 Aug 2005 20:03:20 +0000
sqlite3 (3.2.1-1) unstable; urgency=low
* New upstream release.
-- Andreas Rottmann <rotty@debian.org> Sat, 2 Apr 2005 02:41:15 +0200
sqlite3 (3.1.6-1) unstable; urgency=high
* New upstream release.
* Fixes two database corruption bugs (in 3.1.4 and 3.1.6), hence urgency
high.
-- Andreas Rottmann <rotty@debian.org> Thu, 17 Mar 2005 20:00:16 +0100
sqlite3 (3.1.3-1) unstable; urgency=low
* New upstream release.
* Now building with automake1.9 and against libreadline5-dev.
-- Andreas Rottmann <rotty@debian.org> Wed, 16 Feb 2005 17:04:19 +0100
sqlite3 (3.0.8-3) unstable; urgency=medium
* Fix threadsafe enabling, now works through configure option (closes:
#285913).
* Medium urgency to get this fix into sarge.
-- Andreas Rottmann <rotty@debian.org> Sat, 1 Jan 2005 13:12:10 +0100
sqlite3 (3.0.8-2) unstable; urgency=low
* libsqlite3-dev: Suggest sqlite3-doc instead of sqlite-doc (closes:
#285771).
* libsqlite3-0: Don't Pre-Depend on debconf (closes: #284976).
* sqlite3-doc: Now comes with sqlite.gif and links to
http://sqlite.org/contrib instead of locally (closes: #285769).
-- Andreas Rottmann <rotty@debian.org> Thu, 16 Dec 2004 12:24:02 +0100
sqlite3 (3.0.8-1) unstable; urgency=low
* Initial release of SQLite3 (closes: #272271, #282351).
- Now packaged as a new source package, since SQLite 3
is incompatible (database- and API-wise) with SQLite 2.
- Remove debian/lemon.html, this is now shipped by upstream in doc/.
- Adapted manpage for 3.0 (thanks to Laszlo 'GCS' Boszormeny).
-- Andreas Rottmann <rotty@debian.org> Sun, 7 Nov 2004 13:49:52 +0100
sqlite3 (3.5.8-3) unstable; urgency=low
* Link.
-- root <gcs@debian.hu> Sat, 03 May 2008 09:33:37 +0200
|