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
|
knot-resolver (5.7.5-1) unstable; urgency=medium
* New upstream release
[ Carles Pina i Estany ]
* Added po-debconf Catalan translation
-- Jakub Ružička <jru@debian.org> Thu, 24 Apr 2025 16:59:01 +0200
knot-resolver (5.7.4-2) unstable; urgency=medium
* Team upload.
* Install remaining systemd links in /lib into /usr/lib (Closes: #1073675)
-- Chris Hofstaedtler <zeha@debian.org> Sun, 11 Aug 2024 11:32:31 +0200
knot-resolver (5.7.4-1) unstable; urgency=medium
* New upstream release
* Update my email in Uploaders to jru@debian.org
-- Jakub Ružička <jru@debian.org> Wed, 24 Jul 2024 17:49:22 +0200
knot-resolver (5.7.3-2) unstable; urgency=low
* Move systemd files to /usr/lib/ (Closes: #1073675)
* Enable ARM builds on salsa CI
-- Santiago Ruano Rincón <santiago@debian.org> Tue, 16 Jul 2024 13:26:43 -0300
knot-resolver (5.7.3-1) unstable; urgency=medium
* New upstream release
* Remove unneeded lintian-overrides
* d/copyright: Remove obsolete lib/generic/map entry
* Update debian/watch to only watch for v5 archives
-- Jakub Ružička <jakub.ruzicka@nic.cz> Tue, 04 Jun 2024 19:47:29 +0200
knot-resolver (5.7.2-1) unstable; urgency=medium
* New upstream release
-- Jakub Ružička <jakub.ruzicka@nic.cz> Tue, 02 Apr 2024 07:26:43 +0200
knot-resolver (5.7.1-1) unstable; urgency=medium
* New upstream release
- Mitigates CVE-2023-50387 "KeyTrap"
-- Jakub Ružička <jakub.ruzicka@nic.cz> Wed, 14 Feb 2024 15:30:06 +0100
knot-resolver (5.7.0-1) unstable; urgency=medium
* New upstream release
-- Jakub Ružička <jakub.ruzicka@nic.cz> Tue, 22 Aug 2023 15:39:48 +0200
knot-resolver (5.6.0-1) unstable; urgency=medium
* New upstream release
* New Build-Depends: libjemalloc-dev
* Remove years from CZ.NIC copyright
-- Jakub Ružička <jakub.ruzicka@nic.cz> Thu, 26 Jan 2023 21:41:02 +0100
knot-resolver (5.5.3-1) unstable; urgency=medium
* New upstream release
- Resolves CVE-2022-40188
-- Jakub Ružička <jakub.ruzicka@nic.cz> Thu, 22 Sep 2022 05:34:20 +0000
knot-resolver (5.5.2-1) unstable; urgency=medium
* New upstream release with support for Knot DNS >= 3.2.0
* Remove ppc64 arch without luajit
-- Jakub Ružička <jakub.ruzicka@nic.cz> Fri, 02 Sep 2022 13:05:58 +0000
knot-resolver (5.5.1-5) unstable; urgency=medium
* d/control: remove ppc64el from module-http
-- Jakub Ružička <jakub.ruzicka@nic.cz> Fri, 05 Aug 2022 16:59:22 +0000
knot-resolver (5.5.1-4) unstable; urgency=medium
* d/control: remove broken ppc64el and s390x arches
-- Jakub Ružička <jakub.ruzicka@nic.cz> Tue, 02 Aug 2022 10:09:52 +0000
knot-resolver (5.5.1-3) unstable; urgency=medium
* Upload to unstable
-- Jakub Ružička <jakub.ruzicka@nic.cz> Wed, 27 Jul 2022 08:14:55 +0000
knot-resolver (5.5.1-2) experimental; urgency=medium
* Use experimental to test luajit2 (Closes: #1013810)
* d/control: enable s390x due to luajit2 support
-- Jakub Ružička <jakub.ruzicka@nic.cz> Sun, 03 Jul 2022 18:19:14 +0000
knot-resolver (5.5.1-1) unstable; urgency=medium
* New upstream release
-- Jakub Ružička <jakub.ruzicka@nic.cz> Tue, 14 Jun 2022 13:20:04 +0000
knot-resolver (5.5.0-1) unstable; urgency=medium
* New upstream release
* d/upstream/signing-key.asc: update upstream key
* d/control: require Knot DNS 3.0.2
-- Jakub Ružička <jakub.ruzicka@nic.cz> Thu, 17 Mar 2022 17:34:34 +0000
knot-resolver (5.4.4-1) unstable; urgency=medium
* New upstream release
-- Jakub Ružička <jakub.ruzicka@nic.cz> Wed, 05 Jan 2022 17:35:35 +0000
knot-resolver (5.4.3-1) unstable; urgency=medium
* New upstream release
-- Jakub Ružička <jakub.ruzicka@nic.cz> Wed, 01 Dec 2021 15:34:11 +0000
knot-resolver (5.4.2-1) unstable; urgency=medium
* New upstream release
-- Jakub Ružička <jakub.ruzicka@nic.cz> Mon, 18 Oct 2021 13:56:09 +0000
knot-resolver (5.4.1-2) unstable; urgency=medium
* Upload to unstable
-- Jakub Ružička <jakub.ruzicka@nic.cz> Tue, 31 Aug 2021 14:14:14 +0000
knot-resolver (5.4.1-1) experimental; urgency=medium
* New upstream release
- Compatible with Knot DNS 3.1
- Includes fix for CVE-2021-40083 (Closes: #991463)
* d/control: bump Standards-Version to 4.6.0
* d/control: add Multi-Arch: same for module-http
* d/tests: replace `which` with `command -v`
-- Jakub Ružička <jakub.ruzicka@nic.cz> Wed, 25 Aug 2021 12:21:12 +0000
knot-resolver (5.3.2-1) unstable; urgency=medium
[ Jakub Ružička ]
* New upstream release
* d/patches: remove patch included upstream
[ Santiago Ruano Rincón ]
* Add Spanish debconf template translation (Closes: #987594)
-- Jakub Ružička <jakub.ruzicka@nic.cz> Thu, 13 May 2021 18:18:18 +0100
knot-resolver (5.3.1-1) unstable; urgency=medium
[ Jakub Ružička ]
* New upstream release
[ Santiago Ruano Rincón ]
* Fix unaligned access and SIGBUS on armhf, and then the autopkgtest on
armhf at ci.debian.net (Closes: #918248)
-- Santiago Ruano Rincón <santiago@debian.org> Mon, 12 Apr 2021 07:59:28 +0200
knot-resolver (5.3.0-1) unstable; urgency=medium
[ Jakub Ružička ]
* New upstream release
[ Santiago Ruano Rincón ]
* Add Portuguese debconf template translation (Closes: #982329)
-- Jakub Ružička <jakub.ruzicka@nic.cz> Wed, 03 Mar 2021 15:11:51 +0100
knot-resolver (5.2.1-1) unstable; urgency=medium
* New upstream release
* Remove no longer needed upstream patch:
0001-fix-map-command-on-32-bit-platforms-regressed-in-5.2.patch
Note: it made the build non-reproducible. Thanks to Chris Lamb!
(Closes: #976827)
* Add lintian overrides for no-debconf-config tag and excessive line lengths
in some d/missing-sources/ .js files
* Fix no-symbols-control-file lintian override
* Update d/copyright: remove no longer included entries and reorder File
sections.
* Bump Standards-Version to 4.5.1. No changes required
-- Santiago Ruano Rincón <santiago@debian.org> Tue, 15 Dec 2020 09:56:25 +0100
knot-resolver (5.2.0-2) unstable; urgency=low
* Team upload.
[ Jakub Ružička ]
* bugfix release
* debian/patches: fix map() command on 32-bit
[ Dan Streetman ]
* d/control: Change arch 'any' to specific list
[ Santiago Ruano Rincón ]
* Upload to unstable
-- Santiago Ruano Rincón <santiago@debian.org> Mon, 07 Dec 2020 17:29:18 +0100
knot-resolver (5.2.0-1) experimental; urgency=medium
[ Jakub Ružička ]
* new upstream release
* use experimental in order to safely move to knot >= 3.0
* debian/control: require libknot-dev >= 3.0.1
* debian/control: add myself to Uploaders
* debian/control: add lua-basexx build dep
* debian/control: add libnghttp2 dep for DoH support
* debian/control: use HTTP instead of HTTP/2 in desc
* debian/not-installed: don't use sysusers
[ Santiago Ruano Rincón ]
* Set RELEASE to experimental in debian/salsa-ci.yml
-- Jakub Ružička <jakub.ruzicka@nic.cz> Fri, 20 Nov 2020 21:41:22 +0100
knot-resolver (5.1.3-1) unstable; urgency=low
* New upstream release.
* Add debconf template translations:
- German (Closes: #969234)
- Dutch (Closes: #969341)
- French (Closes: #969478)
* d/control: build again for arm64. See
https://gitlab.nic.cz/knot/knot-resolver/-/merge_requests/1033
* d/rules: really disable config_test on arm64. enable on other archs
-- Santiago Ruano Rincón <santiago@debian.org> Mon, 14 Sep 2020 11:24:10 +0200
knot-resolver (5.1.2-3) unstable; urgency=medium
* d/tests/control: add skip-not-installable restriction to avoid failure
state on arm64
-- Santiago Ruano Rincón <santiago@debian.org> Wed, 12 Aug 2020 22:24:46 +0200
knot-resolver (5.1.2-2) unstable; urgency=low
* Add myself to Uploaders
* debian/rules: disable config_tests on arm64
https://gitlab.nic.cz/knot/knot-resolver/-/issues/593
* knot-resolver-module-http: explicitly set non-arm64 architectures
-- Santiago Ruano Rincón <santiago@debian.org> Fri, 31 Jul 2020 16:17:50 +0200
knot-resolver (5.1.2-1) unstable; urgency=low
* Team upload.
* New upstream release. (Closes: #966077)
* preinst, postinst maintainer scripts: base upgrade-4-to-5-related code
from upstream distro/deb/.
* Update debian/copyright to include CZ.NIC in debian/ files
* Document changes and manual action required when upgrading from 3.x, in
debian/NEWS and through debconf. (Closes: #952673)
Thanks to Justin B Rye for reviewing the English template.
* Add Build-Dep on po-debconf
* Add debian/po
-- Santiago Ruano Rincón <santiago@debian.org> Wed, 29 Jul 2020 17:07:51 +0200
knot-resolver (5.1.1-1) unstable; urgency=medium
* Team upload.
* Acknowledge 5.1.1-0.1 NMU. Thanks to Daniel Baumann.
* Mitigates NXNSAttack (CVE-2020-12667) (Closes: #961076)
* d/tests/control: remove Test-Command: make -k installcheck ... It is
broken since meson+ninja is used to build kresd
* d/tests/roundtrip: update to 5.x: change --forks for --noninteractive
option. fix control socket path
* Add debian/salsa-ci.yml
* d/tests/control: set Restrictions: needs-root for roundtrip
* Add source of dygraph.js to debian/missing-sources
* update dygraph.min.js in debian/copyright, remove entry for
dygraph-combined.js
* remove debian/missing-sources/dygraph-combined.js
* Renable PIE. Building seems to be OK now.
* d/control: Bump debhelper-compat to 13
-- Santiago Ruano Rincón <santiago@debian.org> Fri, 10 Jul 2020 13:43:19 +0200
knot-resolver (5.1.1-0.1) unstable; urgency=medium
* Non-maintainer upload.
* New upstream release:
- mitigation for NXNSAttack DNS protocol vulnerability
[CVE-2020-12667] (Closes: #961076)
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sun, 14 Jun 2020 06:24:58 +0200
knot-resolver (5.0.1-2) unstable; urgency=medium
* Merge the indep and arch build, it doesn't really work with meson
* With new layout, the http module has to be converted to arch:any
-- Ondřej Surý <ondrej@debian.org> Fri, 28 Feb 2020 10:10:07 +0100
knot-resolver (5.0.1-1) unstable; urgency=medium
* Adapt d/rules to meson-build
* Use wrap-and-sort -a to sort the d/control and d/tests/control
* Remove debian/patches, they are no longer applicable
* Enable upstream systemd files, enable config_tests
* Update the list of installed and not-installed files
* Enable the documentation build and build it in dh_auto_build target
* Merge manpages installation to knot-resolver.install
* Don't call dh_installsystemd, remove the extra Debian unit files
* Use deb-systemd-invoke instead of systemctl in the maintainer scripts
* Enable dnstap and add libprotobuf-c-dev to B-D
-- Ondřej Surý <ondrej@debian.org> Sat, 22 Feb 2020 21:14:47 +0100
knot-resolver (3.2.1-3) unstable; urgency=medium
* knot-resolver-module-http is arch: all, not arch: any
* Explicitly list all non-arm64 architectures
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Fri, 08 Mar 2019 00:56:09 -0500
knot-resolver (3.2.1-2) unstable; urgency=medium
* Standards-Version: move to 4.3.0 (no changes needed)
* move to debhelper 12
* Avoid breakage when built against knot-dns 2.8.0
* d/tests/control: wrap-and-sort
* Drop libkres9 and libkres-dev packages (Closes: #923970)
* avoid clobbering CXXFLAGS when compiling lua-aho-corasick
* missing-sources: updated dygraph-combined.js to match minified version
* avoid shipping pre-built glyphicons-halflings-regular.woff2
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 07 Mar 2019 16:23:16 -0500
knot-resolver (3.2.1-1) unstable; urgency=medium
* new upstream release (Closes: #922172)
* Update symbols file for 3.2.1 release
-- Ondřej Surý <ondrej@debian.org> Thu, 21 Feb 2019 09:42:37 +0000
knot-resolver (3.2.0-1) unstable; urgency=medium
* new upstream release
* bump ABI from libkres8 to libkres9
* drop reproducibility patch, adopted upstream
* include experimental_dot_auth module (recommend: lua-basexx for it)
* d/copyright: removed reference to ISAAC, removed upstream
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 19 Dec 2018 19:23:37 -0500
knot-resolver (3.1.0-1) unstable; urgency=medium
* new upstream release
* set knot-resolver-doc to Multi-Arch: foreign
* drop upstreamed patch; avoid use of git during installcheck
* make reproducible datestamp in kresd(8)
* increase build-dep on libknot to 2.7.2
* updated libkres8.symbols
* minimize upstream signing keys
* drop unused lintian-overrides
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 20 Nov 2018 15:47:19 -0500
knot-resolver (3.0.0-9) unstable; urgency=medium
* autopkg: allow stderr on "make installcheck"
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 12 Sep 2018 13:02:45 -0400
knot-resolver (3.0.0-8) unstable; urgency=medium
* avoid stderr during autopkgtest
* refresh patches
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 12 Sep 2018 09:51:40 -0400
knot-resolver (3.0.0-7) unstable; urgency=medium
* try upstream proposed test suite change
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 11 Sep 2018 23:58:14 -0400
knot-resolver (3.0.0-6) unstable; urgency=medium
* stop building knot-resolver on arm64 (Closes: #907729)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 05 Sep 2018 19:30:10 -0400
knot-resolver (3.0.0-5) unstable; urgency=medium
* roundtrip test: increase verbosity
* roundtrip test: avoid long timeouts if UDP query fails
* autopkgtest: improve call to "make installcheck"
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Fri, 31 Aug 2018 21:10:39 -0400
knot-resolver (3.0.0-4) unstable; urgency=medium
* Re-enable tests on all architectures
* autopkgtest: be more verbose about error
* autopkgtest: allow specifying module directory
* point to modules needed to run roundtrip test at build time
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Fri, 31 Aug 2018 14:00:24 -0400
knot-resolver (3.0.0-3) unstable; urgency=medium
* improve autopkgtest
* autopkgtest: env vars can select which kdig and kresd to test
* run roundtrip test at compile time too
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Fri, 31 Aug 2018 11:36:17 -0400
knot-resolver (3.0.0-2) unstable; urgency=medium
* autopkgtest: added full roundtrip tests
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 30 Aug 2018 14:41:02 -0400
knot-resolver (3.0.0-1) unstable; urgency=medium
* new upstream release
* Standards-Version: bump to 4.2.1 (no changes needed)
* build-depend on libknot 2.7 or later
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 27 Aug 2018 18:42:45 -0400
knot-resolver (2.4.1-1) unstable; urgency=medium
* new upstream release
- resolves CVE-2018-10920
* k-r.postinst: strip trailing whitespace
* clean up patches already adopted upstream
* ship rebinding lua module
* use upstream-preferred systemd service configuration
* tell lintian not to complain about kresd.target
* tighten up build-deps on libknot-dev
* three symbols (re)introduced into libkres7
* Standards-Version: bump to 4.2.0 (no changes needed)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 27 Aug 2018 18:22:48 -0400
knot-resolver (2.3.0-4) unstable; urgency=medium
* try to restart any running kresd daemon on upgrade
* correct systemctl start documentation (Closes: #891838)
* fix FTBFS on kfreebsd (Closes: #900013)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 24 May 2018 13:10:31 -0400
knot-resolver (2.3.0-3) unstable; urgency=medium
* create knot-resolver user correctly in postinst (Closes: #894580)
* d/changelog: update to acknowledge CVE-2018-1110
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 14 May 2018 11:58:29 -0400
knot-resolver (2.3.0-2) unstable; urgency=medium
* only build against libsystemd on linux architectures
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 26 Apr 2018 11:56:29 -0400
knot-resolver (2.3.0-1) unstable; urgency=medium
* new upstream release
- resolves CVE-2018-1110
* drop patches already upstream
* ship prefill module
* d/copyright: adjust years of main stanza
* add trie_* and kr_zonecut_is_empty to symbols
* Standards-Version: bump to 4.1.4 (no changes needed)
* drop unnecessary build-dependencies
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 24 Apr 2018 19:20:45 -0400
knot-resolver (2.2.0-1) unstable; urgency=medium
* new upstream release
- move from libkres6 to libkres7 due to ABI change
* drop patches already merged upstream
* avoid shipping root.hints and icann-ca.pem without a patch
* work around https://gitlab.labs.nic.cz/knot/knot-resolver/issues/338
* renumbering patches for cleanliness
* use externally-set CPPFLAGS during build
* clean up build of lua-aho-corasick
* document copyright better to drop a lintian override
* clarify rationales behind lintian-overrides
* be clearer about keyfile-ro restarting kresd in kresd.8
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Sun, 08 Apr 2018 23:46:47 -0400
knot-resolver (2.1.1-1) unstable; urgency=medium
* new upstream release
* drop patches already upstream
* refresh remaining patches
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Sun, 25 Feb 2018 17:36:46 -0800
knot-resolver (2.1.0-2) unstable; urgency=medium
* clean up README.source
* more bugfix patches from upstream
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 22 Feb 2018 13:27:59 -0800
knot-resolver (2.1.0-1) unstable; urgency=medium
* new upstream release
- move from libkres5 to libkres6 due to an ABI change
- kresd.systemd(7) documents running a public-facing resolver
(Closes: #880682)
* d/upstream/signing-key.asc: add Tomas Krizek's key
* d/gbp.conf: use DEP-14 branch naming
* drop patches already upstream
* d/control: build-depend on libknot-dev (>= 2.6.4)
* handle updates to the DNS root.key sensibly (dpkg triggers)
* systemd: mask kresd.service, following upstream's recommendation
* /etc/default/kresd: indicate that it is only for sysvinit
* d/rules: clean up unnecessary lines
* systemd: ship upstream unit files and tmpfiles config directly
* d/control: Rules-Requires-Root: no
* use python3 during the build.
* ship upstream NEWS file as upstream changelog
* debian/TODO: clean up
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Sat, 17 Feb 2018 21:13:45 -0500
knot-resolver (2.0.0-3) unstable; urgency=medium
* documentation: build with sphinx_rtd_theme
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 05 Feb 2018 17:13:04 -0500
knot-resolver (2.0.0-2) unstable; urgency=medium
* Simplify /etc/default/kresd
* drop preinst special case for versions < 1.1.0-2
* postinst: create the knot-resolver user at configure time
* initscript knows path to /usr/lib/tmpfiles.d/knot-resolver.conf
* Overhaul systemd integration.
* d/copyright: include more contributed subprojects (Closes: #889646)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 05 Feb 2018 13:46:25 -0500
knot-resolver (2.0.0-1) unstable; urgency=medium
[ Ondřej Surý ]
* Reduce the (non-public) symbols in libkres4
[ Daniel Kahn Gillmor ]
* import systemd fixes from Tomas Krizek
* avoid leaving /run/knot-resolver world-executable
* systemd: set up kresd@1 service and sockets
* wrap-and-sort -ast
* Add kresd.service as a symlink to kresd@1.service
* more bugfixes from upstream
* NEWS: document changes for using kresd with systemd
* include new lua modules
* move from libkres4 to libkres5 (cache functions dropped)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 05 Feb 2018 00:25:51 -0500
knot-resolver (1.5.3-1) unstable; urgency=medium
* New upstream release
-- Ondřej Surý <ondrej@debian.org> Wed, 24 Jan 2018 12:35:55 +0000
knot-resolver (1.5.2-1) unstable; urgency=medium
* New upstream release
- closes CVE-2018-1000002
* d/copyright: use https where possible
* move to debhelper 11 (docs to /u/s/doc/knot-resolver/, policy §12.3)
* d/control: move Maintainer: to knot-resolver@packages.debian.org
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 22 Jan 2018 15:00:21 +0100
knot-resolver (1.5.1-2) unstable; urgency=medium
* libkres-dev Depends on libkres4 (Closes: #887572)
* Standards-Version: bump to 4.1.3 (no changes needed)
* move Vcs-* to salsa.debian.org
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 17 Jan 2018 23:23:45 -0500
knot-resolver (1.5.1-1) unstable; urgency=medium
* new upstream release
* move packaging split to unstable
* d/watch: move to version 4, avoid alpha/beta releases
* drop patches for bugs already fixed upstream
* use "make installcheck" as a simple test
* track evolving name of etcd module
* wrap-and-sort -a
* shipping new modules: priming, detect_time_{jump,skew}
* added kr_now to exported symbols
* Standards-Version: bump to 4.1.2 (no changes needed)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 13 Dec 2017 15:40:10 -0500
knot-resolver (1.5.0-5) experimental; urgency=medium
* packaging cleanup, splitting out library packages
* dbgsym migration no longer needed
knot-resolver-dbg is not shipped anywhere
* clean up installation of knot-resolver-module-http
* move to dh_missing, as dh_install --fail-missing is deprecated
* clean up/simplify knot-resolver.install
* break out libkres library packages
* put manpage installation under control of dh_installman
* knock stuff off the packaging todo list
* register knot-resolver-doc with doc-base
* add libkres4.symbols to track API evolution
* correct debian/copyright paths
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 30 Nov 2017 23:25:54 -0500
knot-resolver (1.5.0-4) unstable; urgency=medium
* Pull upstream patch to increase the CACHE_SIZE in tests_cache for
platforms with page size greater than 4k (Closes: #878976)
* Pull upstream patch from MR!389 to not run check-config at all as
modulepath is hardcoded (Closes: #881492)
-- Ondřej Surý <ondrej@debian.org> Mon, 13 Nov 2017 19:53:30 +0000
knot-resolver (1.5.0-3) unstable; urgency=medium
* reorder tests
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 13 Nov 2017 03:24:06 +0800
knot-resolver (1.5.0-2) unstable; urgency=medium
* include a list of suggestions for future packaging work
* try some debugging to see failures for #881492
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 13 Nov 2017 03:19:21 +0800
knot-resolver (1.5.0-1) unstable; urgency=medium
* New upstream version.
* d/copyright: update source homepage (Closes: #879166)
* Standards-Version: bump to 4.1.1 (no changes needed)
* switch to debhelper 10
* drop dh-systemd build-dep -- no longer needed (may be added back for
backports)
* [lintian] fix debian-news-entry-uses-asterisk
* drop unused lintian overrides
* added myself to uploaders
* update upstream signer key
* patch from upstream for SIGPIPE (Closes: #881462)
* patch to fix upstream test suite
* debian/copyright: cleanup
* move to python3-{sphinx,breathe} for build-dep
* use root.hints from dns-root-data
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Sun, 12 Nov 2017 13:00:50 +0800
knot-resolver (1.4.0-2) unstable; urgency=medium
* Add root.hints into the package
* Bump required libknot version to >= 2.6.0
-- Ondřej Surý <ondrej@debian.org> Fri, 29 Sep 2017 19:56:14 +0200
knot-resolver (1.4.0-1) unstable; urgency=medium
* Make libsystemd-dev (>= 227) a hard requirement
* Fix the Knot Resolver homepage
* New upstream version 1.4.0
* aho-corrasick.lua has been removed from the sources
-- Ondřej Surý <ondrej@debian.org> Thu, 28 Sep 2017 18:31:54 +0200
knot-resolver (1.3.3-1) unstable; urgency=medium
* New upstream version 1.3.3
-- Ondřej Surý <ondrej@debian.org> Wed, 09 Aug 2017 15:28:35 +0200
knot-resolver (1.3.2-1) unstable; urgency=medium
* New upstream version 1.3.2
-- Ondřej Surý <ondrej@debian.org> Fri, 28 Jul 2017 14:22:08 +0200
knot-resolver (1.3.1-1) unstable; urgency=medium
* New upstream version 1.3.1
* Remove all upstream patches merged upstream
-- Ondřej Surý <ondrej@debian.org> Fri, 23 Jun 2017 14:38:15 +0200
knot-resolver (1.3.0-2) unstable; urgency=medium
* Fix the moduledir in the http2 module
-- Ondřej Surý <ondrej@debian.org> Fri, 16 Jun 2017 13:20:14 +0200
knot-resolver (1.3.0-1) unstable; urgency=medium
[ Ondřej Surý ]
* New upstream version 1.3.0
* Export MAKEVARS as environment variables
* Add libedit-dev to B-D to build kresc
[ Daniel Kahn Gillmor ]
* ship kresc because we use --fail-missing
* clean up things the upstream build scripts leave behind
-- Ondřej Surý <ondrej@debian.org> Tue, 13 Jun 2017 09:07:54 +0200
knot-resolver (1.2.6-1) unstable; urgency=medium
* New upstream version 1.2.6
-- Ondřej Surý <ondrej@debian.org> Mon, 24 Apr 2017 16:31:11 +0200
knot-resolver (1.2.5-1) unstable; urgency=medium
* New upstream version 1.2.5
-- Ondřej Surý <ondrej@debian.org> Wed, 05 Apr 2017 16:07:40 +0200
knot-resolver (1.2.4-1) unstable; urgency=medium
* New upstream version 1.2.4
-- Ondřej Surý <ondrej@debian.org> Thu, 09 Mar 2017 14:20:24 +0100
knot-resolver (1.2.3-1) unstable; urgency=medium
* New upstream version 1.2.3
-- Ondřej Surý <ondrej@debian.org> Thu, 23 Feb 2017 15:49:14 +0100
knot-resolver (1.2.2-1) unstable; urgency=medium
* New upstream version 1.2.2
-- Ondřej Surý <ondrej@debian.org> Fri, 10 Feb 2017 13:54:28 +0100
knot-resolver (1.2.1-1) unstable; urgency=high
* New upstream version 1.2.1
-- Ondřej Surý <ondrej@debian.org> Wed, 01 Feb 2017 20:56:35 +0100
knot-resolver (1.2.0-1) unstable; urgency=medium
* New upstream version 1.2.0
* Squash 1.2.0 changelog into a single 1.2.0 entry
* Add d/upstream/signing-key.asc
* Add d/watch to monitor upstream tarballs
-- Ondřej Surý <ondrej@debian.org> Wed, 25 Jan 2017 14:23:27 +0100
knot-resolver (1.1.1-131-g59d5adf-1) unstable; urgency=medium
* Disable tests on mipsel that started to fail in a mysterious way
(Closes: #847696)
* Imported Upstream version 1.1.1-131-g59d5adf
-- Ondřej Surý <ondrej@debian.org> Wed, 14 Dec 2016 12:16:36 +0100
knot-resolver (1.1.1-122-g940fda9-2) unstable; urgency=medium
* Move -DNDEBUG just to build target
-- Ondřej Surý <ondrej@debian.org> Tue, 13 Dec 2016 09:52:19 +0100
knot-resolver (1.1.1-122-g940fda9-1) unstable; urgency=medium
* Imported Upstream version 1.1.1-122-g940fda9
* Remove static linking patch
* Add $(MAKEVARS) to make check invocation
* Use SOVERSION when compiling to unfail the tests
-- Ondřej Surý <ondrej@debian.org> Mon, 12 Dec 2016 16:26:27 +0100
knot-resolver (1.1.1-41-g8437a7d-2) unstable; urgency=medium
* Update NEWS with kresd.service (Closes: #843178)
* Enable NDEBUG on production builds
-- Ondřej Surý <ondrej@debian.org> Wed, 07 Dec 2016 10:02:55 +0100
knot-resolver (1.1.1-41-g8437a7d-1) unstable; urgency=medium
* Imported Upstream version 1.1.1-41-g8437a7d
* Add instructions how to rebuild epoch.js and epoch.css using Debian
tools (Closes: #833309)
* Record SONAMEs of used C libraries as lua literals instead of guessing
(Closes: #841496)
* Rebase patches on top of new git master release
-- Ondřej Surý <ondrej@debian.org> Fri, 21 Oct 2016 11:27:56 +0200
knot-resolver (1.1.1-2) unstable; urgency=medium
* Add missing sources for epoch.js
* Also allow loading of libknot.so.4
-- Ondřej Surý <ondrej@debian.org> Tue, 11 Oct 2016 14:54:20 +0200
knot-resolver (1.1.1-1) unstable; urgency=medium
* Imported Upstream version 1.1.1
-- Ondřej Surý <ondrej@debian.org> Tue, 11 Oct 2016 14:52:37 +0200
knot-resolver (1.1.0-8) unstable; urgency=medium
* Use restart instead of try-restart if upgrading from << 1.1.0-7
-- Ondřej Surý <ondrej@debian.org> Tue, 16 Aug 2016 11:18:46 +0200
knot-resolver (1.1.0-7) unstable; urgency=medium
* Add the final missing bits from dh_systemd_enable
-- Ondřej Surý <ondrej@debian.org> Tue, 16 Aug 2016 10:29:22 +0200
knot-resolver (1.1.0-6) unstable; urgency=medium
* Make extra sure that kresd.service is stopped before starting the
sockets again
* Stop old systemd units early before they are removed
-- Ondřej Surý <ondrej@debian.org> Tue, 16 Aug 2016 08:32:22 +0200
knot-resolver (1.1.0-5) unstable; urgency=medium
* Stop kresd.service in prerm script to allow kresd.socket restarts
-- Ondřej Surý <ondrej@debian.org> Mon, 15 Aug 2016 15:43:59 +0200
knot-resolver (1.1.0-4) unstable; urgency=medium
* Install kresd-tls.socket into the package
* Unwrap variables in default file as systemd units cannot resolve
nested variables
-- Ondřej Surý <ondrej@debian.org> Mon, 15 Aug 2016 13:29:32 +0200
knot-resolver (1.1.0-3) unstable; urgency=medium
* Tighten Build-Depends on libcmocka-dev to 1.0.0
* Cleanup the knot-resolver -> kresd init script rename
-- Ondřej Surý <ondrej@debian.org> Mon, 15 Aug 2016 13:11:10 +0200
knot-resolver (1.1.0-2) unstable; urgency=medium
* Update systemd units to be named after the daemon (kresd)
-- Ondřej Surý <ondrej@debian.org> Mon, 15 Aug 2016 10:09:53 +0200
knot-resolver (1.1.0-1) unstable; urgency=medium
* Imported Upstream version 1.1.0
* Rebase patches on top of Knot Resolver 1.1.0
* Don't require libsystemd-dev on Ubuntu 14.04 LTS
-- Ondřej Surý <ondrej@debian.org> Fri, 12 Aug 2016 10:45:09 +0200
knot-resolver (1.1.0~git2016072900-2) unstable; urgency=medium
* Fix minor nits in maintainers scripts (Courtesy of Andreas Henriksson)
* Imported Upstream version 1.1.0~2016080800
* Bump required version of libknot to 2.3.0
-- Ondřej Surý <ondrej@debian.org> Wed, 10 Aug 2016 10:04:01 +0200
knot-resolver (1.1.0~git2016072900-1) unstable; urgency=medium
* Imported Upstream version 1.1.0~git2016072900
* Knot Resolver is now running as non-privileged socket activated
systemd service.
-- Ondřej Surý <ondrej@debian.org> Thu, 04 Aug 2016 09:01:15 +0200
knot-resolver (1.1.0~git2016072000-1) unstable; urgency=medium
* Imported Upstream version 1.1.0~git2016072000
-- Ondřej Surý <ondrej@debian.org> Wed, 20 Jul 2016 14:31:10 +0200
knot-resolver (1.1.0~git2016071900-1) unstable; urgency=medium
* Use correct lua comments in default kresd.conf
* knot-resolver 1.1.0~git2016071300-3
* Imported Upstream version 1.1.0~git2016071900
-- Ondřej Surý <ondrej@debian.org> Wed, 20 Jul 2016 07:45:42 +0200
knot-resolver (1.1.0~git2016071300-3) unstable; urgency=medium
[ Daniel Kahn Gillmor ]
* Remove static lib/libkres.a during clean
* Put knot-resolver-doc into Section: doc (thanks, Lintian!)
[ Ondřej Surý ]
* Use correct lua comments in default kresd.conf
-- Ondřej Surý <ondrej@debian.org> Mon, 18 Jul 2016 10:47:12 +0200
knot-resolver (1.1.0~git2016071300-2) unstable; urgency=medium
* Build and install documentation into knot-resolver-doc package
(Closes: #831461)
* Build with libsystemd-dev to get socket-activation
* Set LD_LIBRARY_PATH to load correct libkresd.so.1 for tests
* Link the tests with static libkres library
-- Ondřej Surý <ondrej@debian.org> Sat, 16 Jul 2016 15:55:04 +0200
knot-resolver (1.1.0~git2016071300-1) unstable; urgency=medium
* Imported Upstream version 1.1.0~git2016071300
* knot-resolver-module-all should be arch:all (only lua there)
* Don't build tinyweb module anymore as HTTP/2 module replaces it
-- Ondřej Surý <ondrej@debian.org> Thu, 14 Jul 2016 07:28:24 +0200
knot-resolver (1.1.0~git2016070600-4) unstable; urgency=medium
* Add missing http.lua to knot-resolver-module-http package
-- Ondřej Surý <ondrej@debian.org> Wed, 13 Jul 2016 15:35:11 +0200
knot-resolver (1.1.0~git2016070600-3) unstable; urgency=medium
* Add NEW packages lua-http and lua-mmdb to knot-resolver-module-http
Depends
* knot-resolver now recommends knot-resolver-module-http
* Add liblmdb-dev to Build-Depends (Closes: #830934)
-- Ondřej Surý <ondrej@debian.org> Wed, 13 Jul 2016 14:09:12 +0200
knot-resolver (1.1.0~git2016070600-2) unstable; urgency=medium
* Explicitly declare architectures for tinyweb module
(Closes: #830939)
-- Ondřej Surý <ondrej@debian.org> Wed, 13 Jul 2016 09:32:30 +0200
knot-resolver (1.1.0~git2016070600-1) unstable; urgency=medium
* Imported Upstream version 1.1.0~git2016070600
* Adapt to the new fixed config.mk that accepts overrides
* Add new HTTP/2 module that will replace tinyweb module
* Add daf module to knot-resolver
* Bump standards to 3.9.8 (no change)
-- Ondřej Surý <ondrej@debian.org> Mon, 11 Jul 2016 15:33:21 +0200
knot-resolver (1.0.0-16-g1070c49-1) unstable; urgency=medium
* Imported Upstream version 1.0.0-16-g1070c49
* Add Breaks/Replaces for knot-resolver-module-tinyweb (Closes: #829051)
-- Ondřej Surý <ondrej@debian.org> Thu, 30 Jun 2016 11:02:06 +0200
knot-resolver (1.0.0-13-g95b243f-1) unstable; urgency=medium
* Imported Upstream version 1.0.0-13-g95b243f
-- Ondřej Surý <ondrej@debian.org> Wed, 22 Jun 2016 09:28:44 +0200
knot-resolver (1.0.0-12-g86f75f0-1) unstable; urgency=medium
* Split tinyweb module into separate package
* Imported Upstream version 1.0.0-12-g86f75f0
* Use simpler method for optional dh_strip parameter
-- Ondřej Surý <ondrej@debian.org> Tue, 21 Jun 2016 09:23:27 +0200
knot-resolver (1.0.0-1) unstable; urgency=medium
* Imported Upstream version 1.0.0
-- Ondřej Surý <ondrej@debian.org> Tue, 31 May 2016 10:12:26 +0200
knot-resolver (1.0.0~beta3-95-g550ceca-1) unstable; urgency=medium
* Imported Upstream version 1.0.0~beta3-95-g550ceca
-- Ondřej Surý <ondrej@debian.org> Mon, 30 May 2016 09:38:02 +0200
knot-resolver (1.0.0~beta3-91-g9259b27-1) unstable; urgency=medium
* Imported Upstream version 1.0.0~beta3-91-g9259b27
-- Ondřej Surý <ondrej@debian.org> Fri, 27 May 2016 14:51:19 +0200
knot-resolver (1.0.0~beta3-85-g503adee-1) unstable; urgency=medium
* Imported Upstream version 1.0.0~beta3-85-g503adee
-- Ondřej Surý <ondrej@debian.org> Wed, 25 May 2016 09:19:05 +0200
knot-resolver (1.0.0~beta3-83-gc416877-1) unstable; urgency=medium
* Imported Upstream version 1.0.0~beta3-83-gc416877
-- Ondřej Surý <ondrej@debian.org> Mon, 23 May 2016 14:24:41 +0200
knot-resolver (1.0.0~beta3-78-g3429619-1) unstable; urgency=medium
* Imported Upstream version 1.0.0~beta3-78-g3429619
-- Ondřej Surý <ondrej@debian.org> Wed, 18 May 2016 10:33:19 +0200
knot-resolver (1.0.0~beta3-72-g4ffb749-1) unstable; urgency=medium
* Move lintian overrides for sources to d/source.lintian-overrides
* Add missing wildcard in lintian overrides
* Require golang-go (>= 1.5.0) that's needed
* Fix order of version requirement and arch for golang-go
* Imported Upstream version 1.0.0~beta3-72-g4ffb749
* Dynamic Go modules are supported on arm*, amd64 and i386 since
golang-go (>= 1.6.0)
-- Ondřej Surý <ondrej@debian.org> Thu, 12 May 2016 15:32:22 +0200
knot-resolver (1.0.0~beta3-71-gb5b0232-1) unstable; urgency=medium
* Imported Upstream version 1.0.0~beta3-71-gb5b0232
* Back to master branch
-- Ondřej Surý <ondrej@debian.org> Wed, 11 May 2016 13:36:37 +0200
knot-resolver (1.0.0~beta3-61-gc23edd0-1) unstable; urgency=medium
* Imported Upstream version 1.0.0~beta3-61-gc23edd0
* Pull fixes from tcp-ooo branch
-- Ondřej Surý <ondrej@debian.org> Tue, 03 May 2016 09:55:40 +0200
knot-resolver (1.0.0~beta3-60-ge61c48e-3) unstable; urgency=medium
* Add a versioned Built-Using for golang-github-abh-geoip-dev
(Courtesy of Michael Hudson-Doyle)
-- Ondřej Surý <ondrej@debian.org> Tue, 26 Apr 2016 13:18:16 +0200
knot-resolver (1.0.0~beta3-60-ge61c48e-2) unstable; urgency=medium
* Don't use dh_golang for computing Built-Using as it doesn't work,
so we can build tinyweb module again
-- Ondřej Surý <ondrej@debian.org> Tue, 26 Apr 2016 11:40:30 +0200
knot-resolver (1.0.0~beta3-60-ge61c48e-1) unstable; urgency=medium
* Imported Upstream version 1.0.0~beta3-60-ge61c48e
* Remove -dbg package for dbgsym transition
* Don't build tinyweb module as dh_golang is broken right now
(Closes: #822386)
-- Ondřej Surý <ondrej@debian.org> Tue, 26 Apr 2016 10:35:56 +0200
knot-resolver (1.0.0~beta3-41-g5bf6748-1) unstable; urgency=medium
* Imported Upstream version 1.0.0~beta3-41-g5bf6748
-- Ondřej Surý <ondrej@debian.org> Wed, 13 Apr 2016 21:55:07 +0200
knot-resolver (1.0.0~beta3-31-g79a8440-1) unstable; urgency=medium
* Imported Upstream version 1.0.0~beta3-31-g79a8440
* Add kresd.8 man page to distribution
* Fix WS in d/control
-- Ondřej Surý <ondrej@debian.org> Thu, 31 Mar 2016 18:46:30 +0200
knot-resolver (1.0.0~beta3-1) unstable; urgency=medium
* Add lua-socket and lua-sec for root TA bootstrapping
* Imported Upstream version 1.0.0~beta3
-- Ondřej Surý <ondrej@debian.org> Sat, 30 Jan 2016 16:15:23 +0100
knot-resolver (1.0.0~beta2-123-g6134920-1) unstable; urgency=medium
* Imported Upstream version 1.0.0~beta2-123-g6134920
* Mangle tinyweb only if it exists (Closes: #812276)
* Mute lintian error about missing tinyweb.js sources and mute lintian
warnings about shared library
-- Ondřej Surý <ondrej@debian.org> Tue, 26 Jan 2016 15:00:54 +0100
knot-resolver (1.0.0~beta2-104-ge110f97-1) unstable; urgency=medium
* Imported Upstream version 1.0.0~beta2-104-ge110f97
* Rebase patches on top of 1.0.0~beta2-104-ge110f97 release
* Knot Resolver needs libknot 2.1.0 at least
* Disable PIE hardening as it breaks the build
* Squash debian quirks patch into one
* Disable ASAN sanitized build
* libkresd is now dynamic library
* Install other new files into the package
-- Ondřej Surý <ondrej@debian.org> Tue, 12 Jan 2016 16:45:42 +0100
knot-resolver (1.0.0~beta2-58-gd8762fb-1) unstable; urgency=medium
* Imported Upstream version 1.0.0~beta2-58-gd8762fb
-- Ondřej Surý <ondrej@debian.org> Fri, 04 Dec 2015 15:16:43 +0100
knot-resolver (1.0.0~beta2-1) unstable; urgency=medium
* Imported Upstream version 1.0.0~beta2
* Build the Go modules on amd64
* Compile the experimental with clang and AddressSanitizer
* Fix missing GPL-2 and s/MIT/Expat/ in d/copyright
* Add missing sources for javascript files
* Add ${misc:Depends} to -dbg package
* Tidy-up the permissions on modules
* Use libjs-jquery and libjs-d3 instead of bundled javascript
* Stop depending on libknot-dev as the code can cope with SOVERSION
-- Ondřej Surý <ondrej@debian.org> Mon, 23 Nov 2015 11:49:25 +0100
knot-resolver (1.0.0~beta1-85-gd94caa6-1) experimental; urgency=medium
* Imported Upstream version 1.0.0~beta1-85-gd94caa6
-- Ondřej Surý <ondrej@debian.org> Thu, 12 Nov 2015 23:14:07 +0100
knot-resolver (1.0.0~beta1-75-g0497be2-1) experimental; urgency=medium
* Imported Upstream version 1.0.0~beta1-75-g0497be2
* Rebase patches on top of 1.0.0~beta1-75-g0497be2
-- Ondřej Surý <ondrej@debian.org> Wed, 11 Nov 2015 09:58:20 +0100
knot-resolver (1.0.0~beta1-12-g822d8fe-1) experimental; urgency=medium
* Initial release
* Update d/copyright with some missing bits
* Imported Upstream version 1.0.0~beta1-12-g822d8fe
-- Ondřej Surý <ondrej@debian.org> Mon, 12 Oct 2015 11:55:14 +0200
|