1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903
|
pdns (4.9.7-1) unstable; urgency=medium
* New upstream version 4.9.7
* Drop upstream-applied patch
-- Chris Hofstaedtler <zeha@debian.org> Mon, 07 Jul 2025 12:15:52 +0200
pdns (4.9.4-2) unstable; urgency=medium
* Add upstream-pending patch to fix mysqlbackend on s390x
-- Chris Hofstaedtler <zeha@debian.org> Fri, 21 Mar 2025 13:09:53 +0100
pdns (4.9.4-1) unstable; urgency=medium
* Drop upstream signing keys due to SHA1 usage
* New upstream version 4.9.4
-- Chris Hofstaedtler <zeha@debian.org> Fri, 14 Feb 2025 11:06:04 +0100
pdns (4.9.3-3) unstable; urgency=medium
* Switch Build-Depends: dnsutils (transitional) to bind9-dnsutils
(Closes: #1094158)
* Reformat using debputy reformat
-- Chris Hofstaedtler <zeha@debian.org> Sat, 25 Jan 2025 16:30:37 +0100
pdns (4.9.3-2) unstable; urgency=medium
* Use deb-conffiles mechanism to remove old conffiles
-- Chris Hofstaedtler <zeha@debian.org> Sun, 19 Jan 2025 21:14:51 +0100
pdns (4.9.3-1) unstable; urgency=medium
* New upstream version 4.9.3
-- Chris Hofstaedtler <zeha@debian.org> Tue, 17 Dec 2024 15:38:35 +0100
pdns (4.9.2-2) unstable; urgency=medium
* lmdb: update commented lmdb-schema-version setting in sample config
* Set mode 0640 for pdns.conf only in execute_after_dh_fixperms
-- Chris Hofstaedtler <zeha@debian.org> Fri, 13 Dec 2024 22:43:51 +0100
pdns (4.9.2-1) unstable; urgency=medium
* New upstream version 4.9.2
-- Chris Hofstaedtler <zeha@debian.org> Tue, 01 Oct 2024 19:32:11 +0200
pdns (4.9.1-3) unstable; urgency=medium
* Apply workaround for finding libcrypto (Closes: #1078413)
-- Chris Hofstaedtler <zeha@debian.org> Sun, 11 Aug 2024 14:25:46 +0200
pdns (4.9.1-2) unstable; urgency=medium
* tests: depend on default-mysql-server (Closes: #1074780)
* Set pdns.conf permissions only at install time (Closes: #1074076)
-- Chris Hofstaedtler <zeha@debian.org> Wed, 17 Jul 2024 07:07:36 +0200
pdns (4.9.1-1) unstable; urgency=medium
* New upstream version 4.9.1
* Drop upstream applied patches
-- Chris Hofstaedtler <zeha@debian.org> Thu, 13 Jun 2024 02:14:24 +0200
pdns (4.9.0-2) unstable; urgency=medium
* Apply upstream patch to fix build on big-endian archs
-- Chris Hofstaedtler <zeha@debian.org> Thu, 11 Apr 2024 10:42:34 +0200
pdns (4.9.0-1) unstable; urgency=medium
* New upstream version 4.9.0
* Follow supermaster option rename in default config files
-- Chris Hofstaedtler <zeha@debian.org> Fri, 05 Apr 2024 14:54:01 +0200
pdns (4.8.3-4) unstable; urgency=medium
* tests: mark tests as skippable for exit code 77 (Closes: #1059995)
-- Chris Hofstaedtler <zeha@debian.org> Mon, 26 Feb 2024 02:41:58 +0100
pdns (4.8.3-3) unstable; urgency=medium
* tests: Abort if IPC namespaces do not work (Closes: #1059995)
-- Chris Hofstaedtler <zeha@debian.org> Sun, 21 Jan 2024 12:11:54 +0100
pdns (4.8.3-2) unstable; urgency=medium
* Automatically discover systemdsystemunitdir
* Switch from pkg-config to pkgconf
-- Chris Hofstaedtler <zeha@debian.org> Sat, 21 Oct 2023 19:14:52 +0200
pdns (4.8.3-1) unstable; urgency=medium
* New upstream version 4.8.3
-- Chris Hofstaedtler <zeha@debian.org> Fri, 06 Oct 2023 03:32:43 +0200
pdns (4.8.2-2) unstable; urgency=medium
* Drop debci workaround introduced in 4.8.1-2.
Mitigated in debci.
-- Chris Hofstaedtler <zeha@debian.org> Mon, 11 Sep 2023 15:54:49 +0200
pdns (4.8.2-1) unstable; urgency=medium
* New upstream version 4.8.2
* Apply wrap-and-sort -kas
* Update Vcs-* headers for move to debian namespace
-- Chris Hofstaedtler <zeha@debian.org> Thu, 07 Sep 2023 12:17:24 +0200
pdns (4.8.1-2) unstable; urgency=medium
[ Andreas Jakum ]
* Add missing tools to pdns-tools package description
[ Chris Hofstaedtler ]
* Properly cleanup after tests-source/smoke-lmdb (Closes: #1048680)
* tests: add autopkgtest for lmdbbackend
* autopkgtest: Improve error reporting
* autopkgtest: Workaround ownership issue for LMDB files
-- Chris Hofstaedtler <zeha@debian.org> Thu, 24 Aug 2023 17:46:32 +0200
pdns (4.8.1-1) unstable; urgency=medium
* autopkgtest: try to workaround isolation restrictions in debci
* New upstream version 4.8.1
-- Chris Hofstaedtler <zeha@debian.org> Sun, 09 Jul 2023 20:50:25 +0200
pdns (4.8.0-2) unstable; urgency=medium
[ Peter van Dijk ]
* Use sdig for smoke tests. Avoids errors from dig with certain
/etc/resolv.conf content.
-- Chris Hofstaedtler <zeha@debian.org> Tue, 04 Jul 2023 10:42:01 +0200
pdns (4.8.0-1) unstable; urgency=medium
* New upstream version 4.8.0
* Lessen lintian override restrictions
-- Chris Hofstaedtler <zeha@debian.org> Tue, 27 Jun 2023 16:42:28 +0200
pdns (4.7.3-2) unstable; urgency=medium
* Build-Depend on architecture-is-64-bit (for time_t) (Closes: #1011259)
-- Chris Hofstaedtler <zeha@debian.org> Sun, 25 Dec 2022 10:43:16 +0000
pdns (4.7.3-1) unstable; urgency=medium
[ Manuel A. Fernandez Montecelo ]
* Add support for riscv64 arch (Closes: #1025039)
[ Chris Hofstaedtler ]
* New upstream version 4.7.3
-- Chris Hofstaedtler <zeha@debian.org> Fri, 09 Dec 2022 15:56:00 +0000
pdns (4.7.2-1) unstable; urgency=medium
* New upstream version 4.7.2
* Set explicit architecture list, to 64bit-time_t architectures.
A better way of restricting where to build would be very welcome.
-- Chris Hofstaedtler <zeha@debian.org> Tue, 01 Nov 2022 14:24:15 +0000
pdns (4.7.1-1) unstable; urgency=medium
* New upstream version 4.7.1
* Update (and trim) NEWS
-- Chris Hofstaedtler <zeha@debian.org> Sat, 29 Oct 2022 18:34:58 +0000
pdns (4.6.3-1) unstable; urgency=medium
* New upstream version 4.6.3
-- Chris Hofstaedtler <zeha@debian.org> Thu, 14 Jul 2022 09:20:27 +0000
pdns (4.6.2-1) unstable; urgency=medium
* New upstream version 4.6.2
-- Chris Hofstaedtler <zeha@debian.org> Thu, 14 Apr 2022 20:06:44 +0000
pdns (4.6.1-1) unstable; urgency=medium
* New upstream version 4.6.1, fixes CVE-2022-27227
-- Chris Hofstaedtler <zeha@debian.org> Mon, 28 Mar 2022 16:48:27 +0000
pdns (4.5.3-1) unstable; urgency=medium
* New upstream version 4.5.3
-- Chris Hofstaedtler <zeha@debian.org> Sun, 23 Jan 2022 15:01:20 +0000
pdns (4.5.2-1) unstable; urgency=medium
* New upstream version 4.5.2
-- Chris Hofstaedtler <zeha@debian.org> Wed, 10 Nov 2021 09:56:06 +0000
pdns (4.5.1-1) unstable; urgency=medium
* New upstream version 4.5.1
Note: requires 64bit time_t support, thus not all current
Debian architectures are supported.
* NEWS: remove outdated words
* NEWS: Note that lots of config parameters have changed names
* Remove upstream-metadata-field-unknown Homepage
* Update debian/copyright
* Update gsqlite3, lua2 example config files
-- Chris Hofstaedtler <zeha@debian.org> Sun, 07 Nov 2021 17:27:59 +0000
pdns (4.4.1-4) unstable; urgency=medium
* Disable "random" backend.
Removed upstream in 4.6.0.
* tests-source: improve waiting for pdns to start and give it more time.
This hopefully fixes the reported FTBFS on loaded machines.
(Closes: #998547)
-- Chris Hofstaedtler <zeha@debian.org> Sun, 07 Nov 2021 16:31:30 +0000
pdns (4.4.1-3) unstable; urgency=medium
* Upload to unstable.
* Unconditionally depend on libsystemd-dev.
Already was required by d/rules.
-- Chris Hofstaedtler <zeha@debian.org> Fri, 20 Aug 2021 16:33:09 +0000
pdns (4.4.1-2) experimental; urgency=medium
* Build with fixed luajit on arm64
-- Chris Hofstaedtler <zeha@debian.org> Wed, 17 Feb 2021 16:29:25 +0000
pdns (4.4.1-1) unstable; urgency=medium
* New upstream version 4.4.1 with important bugfixes
* Drop upstream-applied patches
* pdns-backend-odbc: remove duplicate schema file
* Use Lua 5.3 again on platforms not having luajit
* Remove outdated comment about make test
* supported-algos test: add ED448
* Enable PKCS11
* I have re-synced our and upstreams packaging, so they are now
as similar as possible.
-- Chris Hofstaedtler <zeha@debian.org> Sun, 07 Feb 2021 15:01:51 +0000
pdns (4.4.0-3) unstable; urgency=medium
* Build new pdns-backend-{lua2,lmdb} packages
-- Chris Hofstaedtler <zeha@debian.org> Tue, 05 Jan 2021 09:08:55 +0000
pdns (4.4.0-2) unstable; urgency=medium
* ixfrdist: comment out default values
* Update example config files for shipped backends
* d/copyright: update
* d/README.source: update, note upstream alignment
* Add patch for future gcc-11 build failure
-- Chris Hofstaedtler <zeha@debian.org> Mon, 28 Dec 2020 02:12:28 +0000
pdns (4.4.0-1) unstable; urgency=medium
* New upstream version 4.4.0 (Closes: #975590)
* Remove upstream-applied patches
* Bump Standards-Version to 4.5.1
* Build with luajit on amd64, and Lua 5.1 on other archs.
Once #908137 is fixed, we should enable luajit on arm64 too.
Unfortunately we were building with Lua 5.3 earlier, so this
is a feature "regression" of sorts - but it can be much faster.
-- Chris Hofstaedtler <zeha@debian.org> Thu, 17 Dec 2020 20:51:32 +0000
pdns (4.3.1-2) unstable; urgency=medium
* Apply upstream patch to improve MySQL 8 character handling
-- Chris Hofstaedtler <zeha@debian.org> Wed, 25 Nov 2020 21:16:04 +0000
pdns (4.3.1-1) unstable; urgency=medium
* New upstream version 4.3.1
Fixes CVE-2020-17482 (Closes: #970737)
* Remove upstream-applied patch for MySQL stored procedures.
-- Chris Hofstaedtler <zeha@debian.org> Tue, 22 Sep 2020 20:25:52 +0000
pdns (4.3.0-5) unstable; urgency=medium
* postinst: remove user/group existence checks
* geoip: update config example.
Thanks to Remi Gacogne <remi.gacogne@powerdns.com>
* Add test for mysql with stored procedures
* Fix mysql stored procedures using upstream patch (Closes: #969091)
-- Chris Hofstaedtler <zeha@debian.org> Thu, 03 Sep 2020 16:08:42 +0000
pdns (4.3.0-4) unstable; urgency=medium
* Update READMEs and tests to include chgrp as needed
-- Chris Hofstaedtler <zeha@debian.org> Mon, 04 May 2020 11:07:59 +0000
pdns (4.3.0-3) unstable; urgency=medium
* Fix build failure on !amd64
-- Chris Hofstaedtler <zeha@debian.org> Sun, 03 May 2020 21:53:07 +0000
pdns (4.3.0-2) unstable; urgency=medium
* Re-release as 4.3.0-2 to work around upload problem.
-- Chris Hofstaedtler <zeha@debian.org> Sun, 03 May 2020 20:54:33 +0000
pdns (4.3.0-1) unstable; urgency=medium
* New upstream version 4.3.0
* Follow upstream init support changes.
Upstream has moved around socket dir and there are known issues with the
init scripts. Operators will be better off just using the systemd units
instead.
pdns-server now starts as the pdns user, so powerdns.conf needs to be
readable by this user; postinst fixes this.
* Remove packages for upstream removed backends: lua, mydns
* Enable core features: Lua records, protobuf
* pdns-backend-bind: install schema files
* Bump Standards-Version to 4.5.0
* Use debhelper v13
-- Chris Hofstaedtler <zeha@debian.org> Tue, 07 Apr 2020 15:26:55 +0000
pdns (4.2.1-1) unstable; urgency=medium
* New upstream version 4.2.1
-- Chris Hofstaedtler <zeha@debian.org> Mon, 02 Dec 2019 22:47:13 +0000
pdns (4.2.0-1) unstable; urgency=medium
* New upstream version 4.2.0, upload to unstable.
* pdns-backend-sqlite3: ensure default database path is writable.
Needed for WAL mode.
* d/copyright: Update
* Build, but do not actually ship new LMDB backend
* Qualify built binaries at build time
-- Chris Hofstaedtler <zeha@debian.org> Fri, 30 Aug 2019 10:53:16 +0000
pdns (4.2.0~rc2-1) experimental; urgency=medium
* New upstream version 4.2.0~rc2 (Closes: #918661, #916408)
* Bump Standards-Version to 4.4.0
* Use debhelper-compat v12
* Revert "Link with libatomic.so to fix build failure on armel"
* Ship DEP12 UpstreamMetadata per user request
* Remove pdns-backend-opendbx.
OpenDBX is unmaintained in Debian and possibly upstream, too.
* Use pdns_control rping in init script.
Makes the init script useful on systemd systems, too. (Closes: #876775)
* autopkgtests: add more guessed workarounds for debci
* Build-Depend on systemd for proper version detection
* Remove preinst code for upgrades from before 4.0.0-3
* Remove ddeb/dbgsym breaks, from before 4.0.0
* d/control: simplify Build-Depends and remove old Breaks/Replaces
* d/rules: simplify and sync with dnsdist, pdns-recursor
* pdns-ixfrdist: Add ixfrdist init script
* backends: take schema files from `make install` location
* pdns-tools: install dnspcap2calidns, stubquery
-- Chris Hofstaedtler <zeha@debian.org> Sun, 21 Jul 2019 20:59:16 +0000
pdns (4.2.0~rc1-2) experimental; urgency=medium
* Link with libatomic.so to fix build failure on armel
* Build with protobuf support
-- Chris Hofstaedtler <zeha@debian.org> Tue, 07 May 2019 09:29:57 +0000
pdns (4.2.0~rc1-1) experimental; urgency=medium
* New upstream version 4.2.0~rc1
* Ship upstream-supplied LDAP schema instead of our copy
* Add new ixfrdist binary package
-- Chris Hofstaedtler <zeha@debian.org> Sat, 27 Apr 2019 23:55:14 +0000
pdns (4.2.0~alpha1-1) experimental; urgency=medium
* New upstream version 4.2.0~alpha1
* Depend: libmaxminddb-dev for geoip backend
* Depend: libcurl4-openssl-dev for LUA record type
* configure: drop --enable-libsodium in favor of autodetection
-- Chris Hofstaedtler <zeha@debian.org> Mon, 14 Jan 2019 14:51:37 +0000
pdns (4.1.5-1) unstable; urgency=medium
* Cleanup insserv.d and resolvconf hooks that we used to install
* New upstream version 4.1.5 including fixes for CVE-2018-10851,
CVE-2018-14626 (Closes: #913163).
-- Chris Hofstaedtler <zeha@debian.org> Fri, 09 Nov 2018 18:42:11 +0000
pdns (4.1.4-1) unstable; urgency=medium
* New upstream version 4.1.4
-- Chris Hofstaedtler <zeha@debian.org> Wed, 29 Aug 2018 18:21:52 +0000
pdns (4.1.3-5) unstable; urgency=medium
* Tests: cleanup leftovers
-- Chris Hofstaedtler <zeha@debian.org> Wed, 01 Aug 2018 19:49:32 +0000
pdns (4.1.3-4) unstable; urgency=medium
* Remove automatic database configuration.
Some database backends previously used dbconfig-common as a convenient
way of setting up the respective database server automatically,
including upgrades of the database schema. This has caused numerous
issues over the years, and has now been removed.
As we no longer know the database server credentials, drop generation
of configuration files.
Closer to the upstream packages, too.
* Reenable RestrictAddressFamilies on all architectures
* Tests: Disable ipv6-requiring tests.
The docker runners on salsa.d.o do not have working ::1.
* Tests: Remove check for ECC-GOST
-- Chris Hofstaedtler <zeha@debian.org> Tue, 31 Jul 2018 07:42:26 +0000
pdns (4.1.3-3) unstable; urgency=medium
* d/rules: print make check logfile on failure
* d/rules: Reenable -Wall
* d/rules: turn on all hardening flags
-- Chris Hofstaedtler <zeha@debian.org> Thu, 26 Jul 2018 10:06:56 +0000
pdns (4.1.3-2) unstable; urgency=medium
The yearly packaging cleanup release, from DebConf18.
* Bump Standards-Version to 4.1.5
* Use dh compat level 10, drop B-D on dh-autoreconf, dh-systemd,
autotools-dev
* d/rules: avoid directly calling $(shell ...)
* Set Rules-Requires-Root: no
* Honor nocheck build option
-- Chris Hofstaedtler <zeha@debian.org> Thu, 26 Jul 2018 06:51:59 +0000
pdns (4.1.3-1) unstable; urgency=medium
* New upstream version 4.1.3
-- Chris Hofstaedtler <zeha@debian.org> Sun, 17 Jun 2018 12:25:15 +0000
pdns (4.1.2-1) unstable; urgency=medium
* New upstream version 4.1.2
* Includes fix for CVE-2018-1046 in dnsreplay. (Closes: #898255)
-- Chris Hofstaedtler <zeha@debian.org> Mon, 14 May 2018 11:17:08 +0000
pdns (4.1.1-1) unstable; urgency=medium
* Replace obsolete priority extra with optional
* New upstream version 4.1.1
-- Chris Hofstaedtler <zeha@debian.org> Fri, 16 Feb 2018 10:49:37 +0000
pdns (4.1.0-2) unstable; urgency=medium
* Update Maintainer: as alioth is going away
* Update Vcs-* URLs to point to salsa.debian.org
* Bump Standards-Version to 4.1.3 (no changes)
-- Chris Hofstaedtler <zeha@debian.org> Thu, 18 Jan 2018 20:44:07 +0000
pdns (4.1.0-1) unstable; urgency=medium
* New upstream version 4.1.0, upload to unstable.
* Update dbconfig-common schema definitions.
* Remove libbotan1.10-dev dependency, upstream has dropped support.
* Remove obsolete --with-pgsql-includes configure argument.
* Run make check at build time.
-- Chris Hofstaedtler <zeha@debian.org> Sat, 02 Dec 2017 20:51:27 +0000
pdns (4.1.0~rc3-1) experimental; urgency=medium
* New upstream version 4.1.0~rc3
* Update upstream signing key
* Bump Standards-Version to 4.1.1 (no changes)
-- Christian Hofstaedtler <zeha@debian.org> Mon, 27 Nov 2017 18:24:16 +0000
pdns (4.1.0~rc1-1) experimental; urgency=medium
* New upstream version 4.1.0~rc1
-- Christian Hofstaedtler <zeha@debian.org> Wed, 06 Sep 2017 18:54:41 +0000
pdns (4.0.5-1) unstable; urgency=medium
* New upstream version 4.0.5, fixes CVE-2017-15091
* Update upstream signing key
-- Chris Hofstaedtler <zeha@debian.org> Mon, 27 Nov 2017 21:40:00 +0000
pdns (4.0.4-2) unstable; urgency=medium
* Build with libsodium to support DNSSEC algo 15 (Closes: #867517)
-- Christian Hofstaedtler <zeha@debian.org> Mon, 17 Jul 2017 11:10:12 +0000
pdns (4.0.4-1) unstable; urgency=medium
* New upstream version 4.0.4.
* Bump Standards-Version to 4.0.0.
-- Christian Hofstaedtler <zeha@debian.org> Tue, 04 Jul 2017 10:45:55 +0000
pdns (4.0.3-1) unstable; urgency=medium
* New upstream version 4.0.3, fixing bug when running bindbackend
mixed with other backends.
* Fix mysql-5.6 schema incompatibility (Closes: #851586)
-- Christian Hofstaedtler <zeha@debian.org> Thu, 19 Jan 2017 23:05:09 +0000
pdns (4.0.2-1) unstable; urgency=medium
* New upstream version, fixing security issues: CVE-2016-7068 CVE-2016-7072
CVE-2016-7073 CVE-2016-7074 CVE-2016-2120.
* Also includes previous patches applied in Debian, esp. the libssl
1.1 fixes.
* Drop upstream applied patches.
-- Christian Hofstaedtler <zeha@debian.org> Fri, 13 Jan 2017 14:20:11 +0000
pdns (4.0.1-7) unstable; urgency=medium
* Drop RestrictAddressFamilies from .service file on 32bit.
This feature is broken in systemd before v233. (See also #849817)
* Add 4.0-series patches from upstream:
Fixing issues in remotebackend http, mydnsbackend, a DNSName
issue in core, a cleanup on randomness, and a performance
improvement in bindbackend.
-- Christian Hofstaedtler <zeha@debian.org> Sat, 31 Dec 2016 15:23:27 +0000
pdns (4.0.1-6) unstable; urgency=medium
* Fix init script "status" command without lsb library
* Make mysql schema compatible with MariaDB
-- Christian Hofstaedtler <zeha@debian.org> Sun, 18 Dec 2016 22:07:18 +0000
pdns (4.0.1-5) unstable; urgency=medium
* Remove our lsb-base dependency
* Update Suggest mysql-server to default-mysql-server
-- Christian Hofstaedtler <zeha@debian.org> Tue, 11 Oct 2016 02:45:15 +0000
pdns (4.0.1-4) unstable; urgency=medium
* Apply patches to fix API, PostgreSQL issues
* Switch Build-Depends from libmysqlclient-dev to default-libmysqlclient-dev
-- Christian Hofstaedtler <zeha@debian.org> Mon, 10 Oct 2016 18:34:28 +0000
pdns (4.0.1-3) unstable; urgency=medium
* Disable systemd integration on non-Linux archs. Patch from
Pino Toscano <pino@debian.org>. (Closes: #837348)
-- Christian Hofstaedtler <zeha@debian.org> Mon, 10 Oct 2016 14:30:03 +0000
pdns (4.0.1-2) unstable; urgency=medium
* Add patches from upstream to fix build with OpenSSL 1.1.0 final (again)
(Closes: #828490)
-- Christian Hofstaedtler <zeha@debian.org> Mon, 05 Sep 2016 18:43:49 +0000
pdns (4.0.1-1) unstable; urgency=medium
* New upstream release, drop upstream applied patch. (Closes: #828490,
#830808)
-- Christian Hofstaedtler <zeha@debian.org> Sat, 30 Jul 2016 20:38:41 +0000
pdns (4.0.0-5) unstable; urgency=medium
* Prevent empty DEALLOCATE.
Apply patch from upstream to prevent flooding PostgreSQL with empty
DEALLOCATE SQL commands. (Closes: #831741)
-- Christian Hofstaedtler <zeha@debian.org> Thu, 21 Jul 2016 12:57:45 +0000
pdns (4.0.0-4) unstable; urgency=medium
* debian/watch: Fix versionmangle for rc releases
* Remove supermaster.conf during purge if empty
-- Christian Hofstaedtler <zeha@debian.org> Sun, 17 Jul 2016 20:15:27 +0000
pdns (4.0.0-3) unstable; urgency=medium
* Avoid unchanged configuration prompt on upgrade from before 4.0.0-2
* Override lintian W: non-standard-file-perm etc/powerdns/pdns.conf
-- Christian Hofstaedtler <zeha@debian.org> Fri, 15 Jul 2016 22:28:26 +0000
pdns (4.0.0-2) unstable; urgency=medium
* Split bind backend into its own package and stop using ucf where possible
(Closes: #701798)
* Update README.Debian, remove outdated info
* Drop "Replaces: pdns" which has not been needed since wheezy
* Drop version on Depends: lsb-base, which is already fulfilled in oldstable
* Drop version on Depends: ucf, which is already fulfilled in oldstable
* debian/copyright: Add short license names where needed
* Drop unused lintian overrides
* Simplify maintainer scripts, stop stopping pdns-server in prerm
* Ensure daemon startup errors do not cause dpkg to fail
* Drop upgrade code from versions before oldoldstable
* Drop unused lintian overrides (all of them)
* pdns-backend-godbc: Stop registering example with ucf
* Stop installing resolvconf recursor= update hook.
Mixing authoritative and recursive in a single daemon is not
recommended in the first place.
* Rename example config files
* Use dh_auto_configure and stop manually passing V=1 to make
-- Christian Hofstaedtler <zeha@debian.org> Thu, 14 Jul 2016 16:54:11 +0000
pdns (4.0.0-1) unstable; urgency=medium
* New upstream release, drop upstream applied patches.
* Update debhelper dependency for dbgsym options.
* Move package to pkg-dns team.
* Update debian/copyright for backend files, m4 files.
-- Christian Hofstaedtler <zeha@debian.org> Mon, 11 Jul 2016 13:16:07 +0200
pdns (4.0.0~beta1-2) unstable; urgency=medium
* Drop extra -latomic, fixed upstream.
* Import proposed patch renaming notify to pdns_notify. (Closes: #825804)
* Enable OpenDBX backend. (Closes: #716726)
* Enable godbc backend.
* Enable random backend (part of the pdns-server binary package).
-- Christian Hofstaedtler <zeha@debian.org> Mon, 06 Jun 2016 20:36:37 +0000
pdns (4.0.0~beta1-1) unstable; urgency=medium
* New upstream version.
* Build with systemd Type=notify support and use it.
* Merge some upstream packaging changes, gets us new tools and
manpages in pdns-tools.
* Stop patching config-dir in pdns.conf
* pdns-backend-mysql: Fix ucf registration (Closes: #816362)
-- Christian Hofstaedtler <zeha@debian.org> Sun, 29 May 2016 14:43:55 +0000
pdns (4.0.0~alpha3-1) unstable; urgency=medium
* d/watch: Set versionmangle for alpha releases
* Bump Standards-Version to 3.9.8 (no changes needed)
* New upstream version.
-- Christian Hofstaedtler <zeha@debian.org> Thu, 12 May 2016 11:29:14 +0000
pdns (4.0.0~alpha2-4) unstable; urgency=medium
* Ensure server and backends are always updated together,
otherwise strange errors occur at runtime/startup.
* Update Vcs-* URLs to point to secure location.
* Remove pdns-recursor from Suggests, typical installations will not
have both.
* Remove Matthijs Möhlmann from Uploaders for now.
* Remove unused lintian overrides.
* Fix lintian warnings:
* Override possible-gpl-code-linked-with-openssl, we have a license
exception.
* Remove unused file paragraphs from debian/copyright.
-- Christian Hofstaedtler <zeha@debian.org> Thu, 24 Mar 2016 20:29:31 +0000
pdns (4.0.0~alpha2-3) unstable; urgency=medium
* Drop unused libzmq-dev build-dependency (Closes: #818223)
-- Christian Hofstaedtler <zeha@debian.org> Mon, 14 Mar 2016 20:08:39 +0000
pdns (4.0.0~alpha2-2) unstable; urgency=medium
* Update Build-Dependencies for newer upstream version
* Build with -latomic for mips(el)
-- Christian Hofstaedtler <zeha@debian.org> Sun, 28 Feb 2016 20:34:31 +0000
pdns (4.0.0~alpha2-1) unstable; urgency=medium
* Fix dbconfig-pgsql name
* New upstream version: 4.0.0-alpha2
-- Christian Hofstaedtler <zeha@debian.org> Sun, 28 Feb 2016 17:28:31 +0000
pdns (4.0.0~alpha1-2) unstable; urgency=medium
* Update systemd unit file from upstream.
* Build with Lua 5.3 instead of 5.1.
* Drop pdns-server-dbg in favor of automated dbgsym packages.
* Fix zone2sql call in autopkgtests.
* Use dbconfig-x metapackages instead of direct SQL DB clients.
(Closes: #801565)
* Disable secpoll by default.
* Move daemon startup options out of default config. They are included in
the sysvinit script and systemd unit file instead.
-- Christian Hofstaedtler <zeha@debian.org> Wed, 24 Feb 2016 21:52:47 +0000
pdns (4.0.0~alpha1-1) unstable; urgency=medium
* New upstream version: 4.0.0-alpha1
* Update debian/copyright.
* Disable lmdb backend (gone upstream).
* Add curl to Build-Depends.
* Follow pdnssec -> pdnsutil rename.
* Drop our mbedtls patch, as upstream now natively supports it.
* Enable reproducible build.
* Drop debconf questions that didn't really work.
-- Christian Hofstaedtler <zeha@debian.org> Fri, 25 Dec 2015 17:05:29 +0000
pdns (3.4.7-2) unstable; urgency=medium
* Switch from polarssl to mbedtls (Closes: #808065)
-- Christian Hofstaedtler <zeha@debian.org> Tue, 15 Dec 2015 17:20:09 +0000
pdns (3.4.7-1) unstable; urgency=medium
* New upstream release. Operating, stability, interop improvements.
Adds OPENPGPKEY support. New default-soa-edit(-signed) settings.
-- Christian Hofstaedtler <zeha@debian.org> Sun, 08 Nov 2015 13:43:27 +0000
pdns (3.4.6-3) unstable; urgency=medium
* Remove unused Build-Dependencies
* pdns-tools: Correctly Break/Replace pdns-server << 3.4.6-2.
As some pdns-tools files were previously shipped in pdns-server.
Thanks to Andreas Beckmann <anbe@debian.org> (Closes: #802737)
* Fix upgrades with default configuration.
The postinst script used to do a "grep include" on pdns.conf, which
in older versions would work (mostly), because the default config
only had a single "include=" entry. Now this is no longer true,
so remove that. Also, changing the include directory would have
never worked. (Closes: #798773)
Thanks to Stephen Frost <sfrost@snowman.net>.
-- Christian Hofstaedtler <zeha@debian.org> Sun, 25 Oct 2015 15:22:57 +0000
pdns (3.4.6-2) unstable; urgency=medium
* Retroactively add CVE to 3.4.6-1 changelog
* Move pdns.conf creation to override_dh_install.
Purely cosmetic, but aligned with the upstream packaging.
* Replace geobackend with geoipbackend (Closes: #798566)
* Ship (more) tools as part of the new pdns-tools package
-- Christian Hofstaedtler <zeha@debian.org> Thu, 10 Sep 2015 21:51:38 +0000
pdns (3.4.6-1) unstable; urgency=medium
* New upstream release, fixes security issue: CVE-2015-5230
-- Christian Hofstaedtler <zeha@debian.org> Fri, 28 Aug 2015 15:55:27 +0000
pdns (3.4.5-3) unstable; urgency=medium
* Stop installing files into /etc/insserv.d:
As a fix for #585966, pdns-server started installing a configuration
file into /etc/insserv.conf.d. But in 2011 this has been changed so
the file went into /etc/insserv.d instead. As this hasn't been
noticed quite a long time I suspect nobody is actually relying on
pdns-server providing $named, and really nobody should rely on that.
After all, pdns-server is meant to provide authoritative services,
not recursion.
* Stop building with libcrypto++
All features are satisfied by building with botan1.10 anyway, and
upstream's binary packages also don't build with libcrypto++. This
should allow us building on armel again.
* autopkgtest: Stop pdns after testing
* Add autopkgtest for mysql backend
* Add autopkgtest for postgresql backend
-- Christian Hofstaedtler <zeha@debian.org> Sun, 23 Aug 2015 16:39:41 +0000
pdns (3.4.5-2) unstable; urgency=medium
* Build pdns.conf at package build time
* Ship tinydns backend as new package pdns-backend-tinydns (Closes: #757287)
* Upgrade (mysql|postgresql)-client to dependencies.
Fixes the remove case of pdns-backend-(mysql|pgsql) when a
database was created using dbconfig-common. (Closes: #793593)
* debian/copyright: Fix various lintian warnings
* Fix URL pattern in watch file
* d/watch: Add upstream signature check
* wrap-and-sort all debian/* files
-- Christian Hofstaedtler <zeha@debian.org> Mon, 17 Aug 2015 10:53:40 +0200
pdns (3.4.5-1) unstable; urgency=medium
* New upstream version 3.4.5, remove patches applied upstream.
* Unconditionally rely on invoke-rc.d, available since sarge.
* Fix "empty paragraphs" in debian/copyright.
-- Christian Hofstaedtler <zeha@debian.org> Tue, 09 Jun 2015 21:34:14 +0200
pdns (3.4.4-2) unstable; urgency=medium
* Add performance patch from upstream's 3.4.x branch.
-- Christian Hofstaedtler <zeha@debian.org> Thu, 30 Apr 2015 19:45:02 +0200
pdns (3.4.4-1) unstable; urgency=medium
* Imported Upstream version 3.4.4 (Fixes CVE-2015-1868)
-- Christian Hofstaedtler <zeha@debian.org> Thu, 23 Apr 2015 23:21:05 +0200
pdns (3.4.1-4) unstable; urgency=medium
* Remove DROP INDEX domainmetaidindex from MySQL schema upgrade files.
The Debian schema files since at least wheezy didn't have that index,
so we can't drop it. It'd be nicer if we could say DROP INDEX IF EXISTS,
but apparently there's no such thing in MySQL.
Thanks to Andreas Beckmann <anbe@debian.org> (Closes: #773345)
-- Christian Hofstaedtler <zeha@debian.org> Tue, 23 Dec 2014 12:29:35 +0100
pdns (3.4.1-3) unstable; urgency=medium
* Fix PACKAGEVERSION not having the actual version.
Due to #766559 in dpkg, PACKAGEVERSION ended up not containing the
version part. Fixed by using the alternate syntax that
dpkg-parsechangelog understands since 1.17.0, thereby avoiding
a dependency bump to dpkg 1.17.21. (Closes: #769701)
-- Christian Hofstaedtler <zeha@debian.org> Sat, 15 Nov 2014 18:24:42 +0100
pdns (3.4.1-2) unstable; urgency=medium
* Bump dpkg-dev dependency for dpkg-parsechangelog -S, which
is used to pass the package version to the build process.
-- Christian Hofstaedtler <zeha@debian.org> Mon, 03 Nov 2014 18:57:24 +0100
pdns (3.4.1-1) unstable; urgency=medium
* Imported Upstream version 3.4.1, a bug fix release, that:
* Fixes slaving of DNSSEC-signed zones to NSD or BIND.
* Fixes pdnssec increase-serial to not break SOA records
in DNSSEC zones.
* Adds security status polling. (We set the package vendor
and version for this.)
* Remove patch 0001-API-Replace-HTTP-Basic-auth-with-static-key-in-custom,
which has been applied upstream.
* Resync pdns.conf with upstream
* Update debian/watch file, as upstream has changed to bz2 files.
-- Christian Hofstaedtler <zeha@debian.org> Sat, 01 Nov 2014 23:08:08 +0100
pdns (3.4.0-2) unstable; urgency=medium
* Apply patch from upstream switching API auth to a static key.
* Install upstream-supplied SQL schema files (Closes: #763555)
* Remove bindbackend.conf on purge (Closes: #678929)
* Bump Standards-Version to 3.9.6 (no changes)
-- Christian Hofstaedtler <zeha@debian.org> Wed, 15 Oct 2014 08:34:22 +0200
pdns (3.4.0-1) unstable; urgency=medium
* New upstream release, send to unstable.
-- Christian Hofstaedtler <zeha@debian.org> Tue, 30 Sep 2014 11:55:46 +0200
pdns (3.4.0~rc1+2014082902-1) experimental; urgency=medium
* Fix typo in init script, causing stop to not work
* Add a smoke test as an autopkgtest
* Install systemd unit file for pdns
* Imported Upstream version 3.4.0~rc1+2014082902
-- Christian Hofstaedtler <zeha@debian.org> Sun, 31 Aug 2014 07:33:48 +0200
pdns (3.4.0~rc1+20140829-1) experimental; urgency=medium
* Imported Upstream version 3.4.0~rc1+20140829
-- Christian Hofstaedtler <zeha@debian.org> Fri, 29 Aug 2014 21:26:13 +0200
pdns (3.4.0~rc1-1) experimental; urgency=medium
* New upstream release candidate, target experimental
* Update schema files for 3.4.0
* Add lmdb, mydns, remote backends
* Remove upstream applied patch to honor PKGLIBDIR
* Build tests in verbose mode
* Explicitly build with bind backend
* Stop installing lib*backend.a
* Update Vcs-* URLs to anonscm.debian.org
* Force usage of libpolarssl.so
* Skip make test: the remotebackend tests require various Ruby
libraries that we don't have.
* Update debian/copyright, the AES files are no longer distributed
-- Christian Hofstaedtler <zeha@debian.org> Fri, 01 Aug 2014 17:21:38 +0200
pdns (3.3.1-4) unstable; urgency=medium
* Drop unused pdns-backend-mongodb.prerm file
* Update schema migration files for 3.3.1.
In the case of MySQL, this includes the migration up from 3.0!
-- Christian Hofstaedtler <zeha@debian.org> Tue, 24 Jun 2014 14:50:17 +0200
pdns (3.3.1-3) unstable; urgency=medium
* Correct libdir/pkglibdir usage.
PowerDNS upstream abuses autoconf libdir as the package-specific
library location, when they should be using pkglibdir instead, which
prevented us from correctly setting the multiarch libdir.
As the package name is set to 'pdns', modules now go into
${libdir}/pdns, and libdir is now correctly set to the multiarch path,
so modules-dir now ends up being (ex.) /usr/lib/x86_64-linux-gnu/pdns.
Also fixes embedding the multiarch path as an rpath.
-- Christian Hofstaedtler <zeha@debian.org> Sun, 01 Jun 2014 21:37:34 +0200
pdns (3.3.1-2) unstable; urgency=medium
* Use pg_config to detect PostgreSQL lib dir (Closes: #750062)
-- Christian Hofstaedtler <zeha@debian.org> Sun, 01 Jun 2014 15:34:02 +0200
pdns (3.3.1-1) unstable; urgency=medium
* New upstream release.
* Remove GRANTs from SQL Schema scripts.
The SQL install scripts from upstream used to contain GRANT statements,
but these were never needed with dbconfig-common, as the objects are
created as the runtime user, plus they can lead to installation
failures.
* Remove patch "remove-rpath-ldflags-patch"
The original issue has been fixed upstream in a better way.
* Remove upstream applied patches
* Remove duplicate B-D: libpolarssl-dev
* Update copyright file, based on work by Marc Haber (Closes: #726401)
* Don't overwrite launch= statements in configuration
* Resync default pdns.conf
-- Christian Hofstaedtler <zeha@debian.org> Mon, 14 Apr 2014 20:50:10 +0200
pdns (3.3-2) unstable; urgency=medium
* Fix 3.3-1 SQL upgrade script for PostgreSQL.
Thanks to Peter van Dijk for the patch. (Closes: #726945)
* Fix FTBFS on s390x.
Thanks to Peter van Dijk for the upstream patches. (Closes: #726863)
* Add myself to Uploaders
* Bump Standards-Version to 3.9.5 (no changes)
* Run make with V=1.
Needed to get compiler flags into the build log.
* Revert "disable dnssec in default configuration to not break updates"
Reverting to not break upgrades from wheezy.
-- Christian Hofstaedtler <zeha@debian.org> Sun, 26 Jan 2014 23:41:14 +0100
pdns (3.3-1) unstable; urgency=low
* The "Habbie saves the World" release
[ Matthijs Möhlmann ]
* Standards-Version: 3.9.4 (no changes needed)
* Move files used by dbconfig-common to /usr/share/PACKAGE (Closes: #710360)
* Upstream fixes self notification (Closes: #374779)
* Added Brazilian Portuguese translation, thanks to Adriano Rafael Gomes
(Closes: #718713)
* All other nameservers are optional in insserv, so make that happen for
pdns too. (Closes: #714145)
* Update the default schema for the PostgreSQL backend (Closes: #698911)
* Reworked README fixes also #717356 (Closes: #717356)
* Add a SQL script for updating the database scheme in PostgreSQL, this will
be applied automatically by dbconfig-common if chosen to do so
(Closes: #685808, #707761)
[ Marc Haber ]
* be more robust with chmod in pdns-server.postinst.
Thanks to Peter van Dijk (Closes: #716859)
* fix exit code of init script to be more LSB compliant. (Closes: #708861)
* remove unnecessary MySQL dependency (Upstream #1032). Adapt patches.
(Closes: #725073)
* remove double code from postinst.
Thanks to Peter van Dijk (Closes: #725195)
-- Matthijs Möhlmann <matthijs@cacholong.nl> Sat, 13 Jul 2013 14:30:30 +0000
pdns (3.3-1~exp1) experimental; urgency=low
* New Upstream Release
* Fix for Upstream #555 (patch 2720) to build with botan. This
might address #675410, thanks to Florian Obser and Marcus
'darix' Rueckert.
* fix ECDSA (upstream patch 3036). (Closes: #697904)
* sqlite backend removed upstream. Suggest migration to sqlite3
* remove --disable-recursor, it's a no-op anyway
* build with --enable-tools and --enable-unit-tests
* remove local manpages that have been incorporated upstream
* remove lazy-recursion from default config
* refresh patches, remove obsolete patches
* disable dnssec in default configuration to not break updates
* upstream now has include-dir
* Use it instead of include
* remove our patch for include
* rename config files to .conf
* remove --with autotools-dev (see dh-autoreconf(7))
* zap dnslabeltext.cc in clean (see Upstream #554)
* ship dnsreplay, dnswasher and dnsscope
* add PDNSDEBUG environment variable to all postinst scripts
* properly handle pdns.simplebind.conf on installation and purge
* re-work conffile handling in postinst and postrm scripts
* document changes in configuration syntax/semantics for updaters
* depend on lsb-base (>= 3.2-14)
* do not call in /lib/init/vars.sh any more (lintian)
-- Marc Haber <mh+debian-packages@zugschlus.de> Fri, 12 Jul 2013 20:11:25 +0000
pdns (3.1-4) unstable; urgency=low
* put /etc/default/pdns back under ucf control.
Thanks to Andreas Beckmann (Closes: 678930)
* remove bindbackend.conf in postrm from correct path.
Thanks to Andreas Beckmann (Closes: 678929)
* make defaults file readable
-- Marc Haber <mh+debian-packages@zugschlus.de> Sun, 24 Jun 2012 20:40:27 +0200
pdns (3.1-3) unstable; urgency=low
* Upload with correct .orig.tar.gz
-- Marc Haber <mh+debian-packages@zugschlus.de> Sat, 23 Jun 2012 23:33:50 +0200
pdns (3.1-2) unstable; urgency=low
* move development to Alioth (Maint address, Vcs-Foo)
* remove bind-example-zones.
Thanks to Andreas Olsson (Closes: 676823)
* init script:
* adapt logic changes from upstream
* LSBize init script from debian's skeleton
* use automatic init script installation
* add upstream changesets (recommended by upstream):
2608, 2609+2612, 2611, 2622
* add DEP-3 headers to patches
* disable mongodb patch, we're not building mongodb anyway
* remove autostart debconf question, templates and code
* relax privileges on pdns.d directory
* add a simple bind backend config so that we can run immediately
* remove hurd-ftbfs-patch, it was already applied upstream (r2307)
-- Marc Haber <mh+debian-packages@zugschlus.de> Mon, 14 May 2012 21:14:38 +0200
pdns (3.1-1) unstable; urgency=low
[ Marc Haber ]
* Imported Upstream version 3.1
* reduce column size for 'algorithm' to 50. Closes: #662935
* handle smallcaps RRs. Closes: #656788
* refresh patches
* remove unused patches
* add patch to turn off the traceback handler at run time
* add patch for changeset 2575 (race condition with supermasters)
* fix mysql multiarch build failure, set cflags etc to hardening defaults
* do not run bootstrap a build time, using autotools_dev
* use dh-autoreconf, remove autofoo created files from
patches/fix-mongodb-backend-patch
* fix dh invocation
* create MySQL databases with engine=innodb instead of type
* set debian/compat to 9
* Standards-Version: 3.9.3 (no changes needed)
* add myself to uploaders, change Vcs-Header to my git. Closes: #672550
[ Evgeni Golov ]
* use system libpolarssl if present, local copy otherwise.
Closes: #671856, #656861
-- Marc Haber <mh+debian-packages@zugschlus.de> Fri, 11 May 2012 23:51:27 +0200
pdns (3.0-1.2) unstable; urgency=high
* Non maintainer upload.
* Fix build failure with GCC 4.7. Closes: #667321.
* Fix build failure with mysql multiarch location. Closes: #650058.
* Build with hardening defaults. Closes: #656861.
-- Matthias Klose <doko@debian.org> Wed, 09 May 2012 23:14:47 +0000
pdns (3.0-1.1) unstable; urgency=high
* Non-maintainer upload.
* Don't respond to responses fixes CVE-2012-0206
* Make build dependency on mongodb-dev arch specific (Closes: #654568).
-- Luk Claes <luk@debian.org> Sun, 15 Jan 2012 19:13:17 +0100
pdns (3.0-1) unstable; urgency=low
* New upstream version (Closes: #624330, #626909, #617476, #498918, #500572)
(Closes: #645539, #623036, #521791, #583161, #590285, #499396)
* Update Standards-Version to 3.9.2
* Add lua backend.
* Use new style dh instead of individual dh_* commands.
* Add Homepage to debian/control (Closes: #634947)
* Add pdnssec and dnsreplay utility.
* Use dbconfig-common to populate / upgrade databases.
* Update patch addconfigdir, do not parse ucf-dist files.
* Update manpage pdns_control and include a list of options (Closes: #621724)
* Add manpage for pdnssec.
* Add prerm scripts to the backends, stop the pdns server.
* Add patch from upstream to properly parse priority. (Closes: #533023)
-- Matthijs Möhlmann <matthijs@cacholong.nl> Sat, 19 Nov 2011 11:58:10 +0100
pdns (2.9.22-9) unstable; urgency=low
* My name is now spelled correctly with the ö instead of o.
* Reupload to fix a unresolved symbol (Closes: #623036)
* Add debug package for pdns-server (Closes: #594242)
* Fix the lintian overrides.
-- Matthijs Möhlmann <matthijs@cacholong.nl> Sun, 17 Apr 2011 13:02:43 +0200
pdns (2.9.22-8) unstable; urgency=high
* Update init.d scripts and remove mysql and postgresql from the
dependencies. The loop between mysql and pdns causes apt to fail hence
the urgency high. (Closes: #595018)
-- Matthijs Mohlmann <matthijs@cacholong.nl> Fri, 24 Sep 2010 16:24:04 +0200
pdns (2.9.22-7) unstable; urgency=low
* Provide the file now in the correct location. (Closes: #585966)
* Update Standards-Version to 3.9.1
* Add new dnsdomain2.schema for LDAP (Closes: #589606)
-- Matthijs Mohlmann <matthijs@cacholong.nl> Tue, 03 Aug 2010 18:25:28 +0200
pdns (2.9.22-6) unstable; urgency=high
* Provide the virtual facility $named. (Closes: #585966)
* Added danish translation thanks to Joe Dalton (Closes: #585572)
* For now add a 2 second delay before continue with the boot process to
ensure pdns is listening on a socket.
* Update Standards-Version to 3.9.0
-- Matthijs Mohlmann <matthijs@cacholong.nl> Sun, 18 Jul 2010 14:48:27 +0200
pdns (2.9.22-5) unstable; urgency=low
* Fix FTBFS on hurd
* Should-Start / Should-Stop added for slapd, mysql and postgresql
Thanks to Petter Reinholdtsen (Closes: #580819)
-- Matthijs Mohlmann <matthijs@cacholong.nl> Sun, 23 May 2010 13:18:25 +0200
pdns (2.9.22-4) unstable; urgency=low
* Add db_stop to fix an upgrade (Closes: #555311)
* Fix error in postinst of sqlite and sqlite3 (Closes: #565516)
* Updated Standards-Version to 3.8.4
* Make lintian happy
* Complete the pdns_control manpage (Closes: #556473)
* Switch to dpkg-source 3.0 (quilt) format
* Removing Christoph Haas from uploaders, thank you for the great work.
-- Matthijs Mohlmann <matthijs@cacholong.nl> Fri, 09 Apr 2010 17:23:24 +0200
pdns (2.9.22-3) unstable; urgency=low
* Fix a syntax error in postinst.
* Removed old upgrade code for splitting the config.
-- Matthijs Mohlmann <matthijs@cacholong.nl> Sun, 08 Nov 2009 14:48:57 +0100
pdns (2.9.22-2) unstable; urgency=low
[ Christoph Haas ]
* Fixed init.d script (Closes: #518294)
* Moved resolvconf temp file to /var/run/powerdns (Closes: #333726)
[ Matthijs Mohlmann ]
* Updated Standards-Version to 3.8.3
* Added russian translation (Closes: #539465)
* Added spanish translation (Closes: #508987)
* Added SQLite3 database schema to examples
* Added PostgreSQL database schema to examples
* Change libmysqlclient15-dev to libmysqlclient-dev.
* Moved from dpatch to quilt patch system.
* Fix FTBFS with gcc 4.4 (Closes: #510674)
* Added italian translation (Closes: #552219, #548695)
* Added basque translation (Closes: #553150)
* Fixed init.d script including correct dependencies and runlevels
(Closes: #548293)
* Added finnish translation (Closes: #553648)
* Implemented triggers to prevent multiple restarts (Closes: #502981)
-- Matthijs Mohlmann <matthijs@cacholong.nl> Mon, 02 Nov 2009 12:49:43 +0100
pdns (2.9.22-1) unstable; urgency=low
* New upstream version (closes: #513409).
-- Christoph Haas <haas@debian.org> Wed, 25 Feb 2009 23:25:51 +0100
pdns (2.9.21.2-2) unstable; urgency=low
* Added japanese PO file (closes: #510705)
-- Christoph Haas <haas@debian.org> Mon, 05 Jan 2009 23:38:05 +0100
pdns (2.9.21.2-1) unstable; urgency=low
* New Upstream Version
* Included typo fixes from Thijs Kinkhorst (closes: #502982)
* Removed the splitconfig call from debian/pdns-server.postinst as it
broke configurations with multiline definitions. It should not be
needed anymore anyway after an update from Sarge to Etch.
(closes: #475141)
* Added patch for LDAP requests spanning subdomains due to incorrect
LDAP search query (closes: #500137).
-- Christoph Haas <haas@debian.org> Tue, 25 Nov 2008 20:11:46 +0100
pdns (2.9.21.1.0-1) unstable; urgency=low
* Fixed glitch in upstream tarball for 2.9.2.21.1.
Actually this is the same upstream version as 2.9.21.1 but due to a
merging glitch when using git-buildpackage two files were changed.
So the orig.tar.gz for 2.9.21.1 in Debian is not entirely correct
(although it doesn't hurt either). To replace the wrong orig.tar.gz
it needs a higher version number. 2.9.21.1.0-1 it newer than 2.9.21.1-1.
-- Christoph Haas <haas@debian.org> Fri, 08 Aug 2008 15:38:55 +0200
pdns (2.9.21.1-1) unstable; urgency=high
* New Upstream Version (fixes CVE-2008-3337)
-- Christoph Haas <haas@debian.org> Thu, 07 Aug 2008 00:25:01 +0200
pdns (2.9.21-6) unstable; urgency=low
* Use upstream patch for the ldapbackend. (See #462966)
* Fix pdns-server hang in postinst (Closes: #468160)
* Fix typo in the Description of pdns-backend-mysql to make lintian happy.
-- Matthijs Mohlmann <matthijs@cacholong.nl> Sun, 02 Mar 2008 22:50:11 +0100
pdns (2.9.21-5) unstable; urgency=low
* Fix ignoring buid errors. (Closes: #462858)
* Patch from Steve to fix build with OpenLDAP 2.4. (Closes: #462966)
- Changed patch a bit to convert host, port and tls option to a ldapuri.
* Update Standards-Version to 3.7.3.
* Added gcc 4.3 fixes (Closes: #456073)
-- Matthijs Mohlmann <matthijs@cacholong.nl> Sun, 03 Feb 2008 20:57:51 +0100
pdns (2.9.21-4) unstable; urgency=low
* New portuguese translation included (closes: #444219).
Thanks, Américo Monteiro.
-- Christoph Haas <haas@debian.org> Wed, 03 Oct 2007 19:38:15 +0200
pdns (2.9.21-3) unstable; urgency=low
* Added missing dependency on docbook, missing dtd files. (Closes: #441592)
* Make package binNMUable.
* Fixed lintian error on in the clean target.
* Clean target was incomplete, twice in a row build didn't reproduce the
same result (Policy 4.9) (Closes: #441592)
* Win2k3 SP2 adds out of zone data to zonetransfers, ignore them instead of
rejecting the zone. (Closes: #433892)
-- Matthijs Mohlmann <matthijs@cacholong.nl> Sat, 15 Sep 2007 09:24:06 +0200
pdns (2.9.21-2) unstable; urgency=low
* Fix an unconditional replace in the resolvconf script. (Closes: #425441)
* Do not include the 127.0.0.1 in the recursor list. (Closes: #425442)
* Updated vietnamese translation
-- Matthijs Mohlmann <matthijs@cacholong.nl> Sat, 02 Jun 2007 00:13:47 +0200
pdns (2.9.21-1) unstable; urgency=low
[ Matthijs Mohlmann ]
* New upstream release. (Closes: #420294)
* Remove meta pdns package.
* Added new sqlite3 backend package.
* Months and minutes where mixed up. (Closes: #406462)
* Case sensitivity in bind backend caused PowerDNS to not serve a certain
zone. (Closes: #406461)
* Bind backend forgot about zones on a notify. (Closes: #398213)
[ Christoph Haas ]
* Documented incorporated backend bind. (Closes: #415471)
-- Matthijs Mohlmann <matthijs@cacholong.nl> Sun, 15 Apr 2007 23:23:39 +0200
pdns (2.9.20-8) unstable; urgency=high
[ Christoph Haas ]
* Updated czech translation (Closes: #408726)
* New galician translation (Closes: #413756)
* Added patch for potential buffer overflow, high urgency (Closes: #406465)
* Added example for the bind backend. Documented that the bind gbackend
is contained in the pdns-server package (Closes: #415471)
[ Matthijs Mohlmann ]
* LDAP backend changes
- Supports SOA autocalculation
- Handles dc=* correctly
-- Matthijs Mohlmann <matthijs@cacholong.nl> Sat, 10 Mar 2007 01:20:58 +0100
pdns (2.9.20-7) unstable; urgency=low
[ Matthijs Mohlmann ]
* Updated configuration parameter allow-axfr-ips. (Closes: #316789)
* Fix memory corruption after performing a zone reload (Closes: #394682)
* Fix wrong ttl for SOA records during AXFR.
* Added patch from upstream to fix ipv6 processing. (Closes: #395885, #396250)
* Added patch to fix alignment on ARM. (Closes: #397031)
-- Matthijs Mohlmann <matthijs@cacholong.nl> Mon, 30 Oct 2006 00:46:22 +0100
pdns (2.9.20-6) unstable; urgency=low
* Don't try to remove the user on purge.
* Typo in package description of pdns-backend-sqlite. (Closes: #384387)
* Create LSB init script.
* Added check to see if ucf exist. The postrm can't rely on ucf to be
available on purge. It is a non-essential package. (Closes: #389979)
* Added patch to fix wildcard lookups in the ldap backend. (Closes: #383726)
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Sun, 1 Oct 2006 15:29:45 +0200
pdns (2.9.20-5) unstable; urgency=low
* Update geobackend. (Closes: #382538)
-- Matthijs Mohlmann <matthijs@cacholong.nl> Sun, 13 Aug 2006 23:17:25 +0200
pdns (2.9.20-4) unstable; urgency=low
* Updated German translation.
* Remove patch for the recursor, the pdns-recursor is not shipped with this
package anymore
* Updated Dutch translation.
* Updated Swedish translation.
* Updated French translation. (Closes: #367217)
* Fix wrong permissions on /var/lib/powerdns in sqlite backend.
(Closes: #373627)
* Default pdns.conf overhaul, taken configuration parameters from the
website http://rtfm.powerdns.com/ (Closes: #369306)
* Removed --remove-home from deluser, it requires an extra dependency.
(Closes: #340124)
* Added a note regarding pgsql and chroot (Closes: #382017)
Actual solutions for running pdns in a chroot when trying to connect
to a pgsql server via SSL are welcome.
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Wed, 12 Jul 2006 00:29:14 +0200
pdns (2.9.20-3) unstable; urgency=low
* Disable the recursor, this is in a separate package now.
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Sat, 6 May 2006 10:40:44 +0200
pdns (2.9.20-2) unstable; urgency=low
* Fix bug which causes pdns not resolving the root nameservers anymore
(Closes: #364449)
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Tue, 25 Apr 2006 21:27:26 +0200
pdns (2.9.20-1) unstable; urgency=low
* New upstream release.
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Thu, 16 Mar 2006 21:09:38 +0100
pdns (2.9.19-4) unstable; urgency=low
* Fix pdns maintainer scripts to restart in postinst (instead of stopping
in prerm and starting in postinst) (Closes: #346426)
* Rewrote patch addconfigdir to C++ and to fix some memleaks.
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Wed, 18 Jan 2006 22:59:52 +0100
pdns (2.9.19-3) unstable; urgency=low
* Added a patch to fix NS delegation (Closes: #345778)
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Tue, 3 Jan 2006 23:18:17 +0100
pdns (2.9.19-2) unstable; urgency=high
* Added portuguese translation (Closes: #337832)
* Added a patch to fix a slight security bug
* Added a patch to allow '/' in domain names (Closes: #343737)
* Updated patch addconfigdir to be able to move launch= to include files.
(Patch is now more generic)
* Updated builddependency to libmysqlclient15-dev (Closes: #343789)
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Sun, 18 Dec 2005 11:39:41 +0100
pdns (2.9.19-1) unstable; urgency=low
* New upstream release (Closes: #327846)
* Now really fix the AXFR transfers from bind / djbdns to pdns.
(Closes: #330184)
* New bind backend (Closes: #318897)
* Update translation for Czech (Closes: #335355)
* Add translation for Swedish (Closes: #335261)
* Added patch to fix a memory hole in the pdns-recursor
* Added patch to proper catch an exception in the pdns-recursor
* Added patch to fix an exception that could escape
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Tue, 1 Nov 2005 15:22:39 +0100
pdns (2.9.18-4) unstable; urgency=low
* Fix AXFR transfers from bind to pdns. (Closes: #330184)
* Added resolvconf calls to pdns-recursor init script. (Closes: #308677)
* Added pdns update script in order to automate the creation of the
recursors list. (Closes: #304528)
* Leave permissions on upgrades (Closes: #328833)
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Sat, 1 Oct 2005 15:11:33 +0200
pdns (2.9.18-3) unstable; urgency=high
* High urgency as it fixes RC bugs.
* Add patch to support uri's in the ldapbackend.
* Add fix for crashes in the pdns-recursor with g++ 4.0.1
* Revert postinst scripts for geo, ldap, mysql, pgsql and pipe backend and
don't introduce bug #321974
* Add patch to fix CNAME wildcards. It returned the CNAME wildcard while an
A record exists for the query. Taken from svn.
* Fix pdns-server.config with exit status 20, bug in the parsing code of the
configuration file /etc/powerdns/pdns.conf (Closes: #311903)
* Fix the addconfigdir dpatch to be able to include files instead of only
directories (Closes: #327172)
* Remove postrm scripts as it can cause trouble when the include is set to
nothing. (Closes: #326260)
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Thu, 15 Sep 2005 09:21:28 +0200
pdns (2.9.18-2) unstable; urgency=low
* Added cs translation. (Closes: #321737)
* comma separated instead of semicolon separated in pdns-server.templates
(Closes: #318845)
* Updated po debconf files.
* Removed code that mess up the pdns.conf. (Closes: #321974)
* pdns should be an arch independent package. It comes from the split to
pdns-server and pdns-recursor.
* Tidied up the dh_install parts of the debian/rules script.
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Mon, 15 Aug 2005 12:01:41 +0200
pdns (2.9.18-1) unstable; urgency=high
* New upstream release (Closes: #318798)
* Drop patches: 64bit-compile-fix.dpatch, addfeatures-ldapbackend.dpatch,
amd64-compilefix.dpatch, blankout-domain-fix.dpatch,
consistent-sql.dpatch, dosfix-ldapbackend.dpatch, fix-exit-status.dpatch,
gpgsql-compilefix.dpatch, gsqlite-compilefix.dpatch, gsqlite-slave.dpatch,
recursor-slowdown.patch.dpatch, typoinitscript.dpatch, zone2ldap.dpatch
They are applied upstream.
* The ldapbackend did not properly escape all queries, allowing it to fail
and not answer questions. (CAN-2005-2301)
* Questions from clients denied recursion could blank out answers to clients
who are allowed recursion services, temporarily. (CAN-2005-2302)
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Fri, 29 Jul 2005 20:24:33 +0200
pdns (2.9.17-15) unstable; urgency=high
* New revision because last upload has accidentally been a native package.
A higher revision number should fix the wrong upload.
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Sat, 16 Jul 2005 13:04:14 +0200
pdns (2.9.17-14) unstable; urgency=high
* Changed Build-Depends from postgresql-dev to libpq-dev
* Build-Depends was missing the non-essential automake1.6
* Added libssl-dev to Build-Depends
* configure arguments updated to point to postgresql includes
* Patch added for: Denial of Service in the ldapbackend. When you do a query
with a '\' or a '*' the ldap instance will crash.
* Patch added for: Recursor became slow after 60 seconds.
* Added translation vi.po (Closes: #316704)
* Fixed typo in german debconf file de.po (Closes: #313930)
* Updated Standards-Version to 3.6.2
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Fri, 15 Jul 2005 00:16:17 +0200
pdns (2.9.17-13) unstable; urgency=high
* Fixed serious policy violation. (Closes: #310782, #310742)
* Updated dutch debconf translation.
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Thu, 26 May 2005 23:10:54 +0200
pdns (2.9.17-12) unstable; urgency=low
* Removed resolvconf from pdns initscript.
* Updated french debconf translation. (Closes: #305869)
* Updated pdns-recursor so it doesn't fail on restart.
* Patch to fix exit status. (Closes: #305527)
* Fixes a typo in pdns-backend-mysql.postrm which causes a failure when
removing the package. (Closes: #308410)
* Added a Pre-Depends on adduser (Closes: #308409)
* Fixed a failure when installing pdns-server on a fresh system.
* Fixed a failure when removing pdns-server when perl-modules isn't
installed.
* Added dutch translation.
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Tue, 10 May 2005 16:15:59 +0200
pdns (2.9.17-11) unstable; urgency=low
* Fixed the empty /usr/share/pdns/doc directory. (Closes: #304939)
* Removed superfluous upstream documentation from the doc directory.
* Rewritten pdns-recursor initscript. (Closes: #304937, #303602, #303602)
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Thu, 21 Apr 2005 22:38:47 +0200
pdns (2.9.17-10) unstable; urgency=low
* Maintainer changed to Debian PowerDNS Maintainers.
* Christoph Haas <haas@debian.org>:
+ changelog.html is no longer compressed to keep hypertext links in the
pdns-doc package working
+ fixed a typo in the debconf templates (netmasks -> subnets)
* Matthijs Mohlmann <matthijs@cacholong.nl>:
+ Fixed the ldap backend patch (Closes: #303910)
+ Fixed the patch for adding a directory with config files (Closes: #303669)
- Now you can add multiple files.
- Can add files with dots.
+ Added dnsdomain2.schema to pdns-backend-ldap. (Closes: #303685)
+ Updates resolv.conf when needed. (Closes: #303602)
-- Debian PowerDNS Maintainers <powerdns-debian@workaround.org> Thu, 14 Apr 2005 21:42:16 +0200
pdns (2.9.17-9) unstable; urgency=low
* Moved html docs to pdns-doc instead of pdns (Closes: #303227)
* Added french translation (Closes: #302681)
* Improved description for pdns-backend-geo (Closes: #302128)
-- Matthijs Mohlmann <matthijs@cacholong.nl> Tue, 5 Apr 2005 21:32:14 +0200
pdns (2.9.17-8) unstable; urgency=low
* Minor naming stupidity in example files resolved.
* Thanks to Christoph Haas for checking and uploading.
-- Matthijs Mohlmann <matthijs@cacholong.nl> Fri, 1 Apr 2005 22:02:56 +0200
pdns (2.9.17-7) unstable; urgency=low
* Removed more questions on several backends.
* Use one pdns.local file instead of using more files.
* Updated postinst and postrm to reflect these changes.
-- Matthijs Mohlmann <matthijs@cacholong.nl> Fri, 1 Apr 2005 17:05:29 +0200
pdns (2.9.17-6) unstable; urgency=low
* Raised Standards-Version to 3.6.1.1
* Fixed a FTBFS on 64bit platforms (Closes: #301642)
Thanks to Kurt Roeckx <kurt@roeckx.be> for testing the patch.
-- Matthijs Mohlmann <matthijs@cacholong.nl> Thu, 31 Mar 2005 10:00:37 +0200
pdns (2.9.17-5) unstable; urgency=low
* Removed stupid questions
* Updated templates
* Added README.Debian to pdns-server
* Fixed a typo (Closes: #300053)
-- Matthijs Mohlmann <matthijs@cacholong.nl> Mon, 28 Mar 2005 10:47:40 +0200
pdns (2.9.17-4) unstable; urgency=low
* Make gmysql and gpgsql backend more consistent by adding port parameter to
gpgsql backend.
-- Matthijs Mohlmann <matthijs@cacholong.nl> Sun, 27 Feb 2005 23:10:36 +0100
pdns (2.9.17-3) unstable; urgency=low
* Removed manpage xdb-fill
* Removed package pdns-backend-xdb (obsolete)
* Cleaned up debian/ directory
* Written an initscript for pdns-recursor (Closes: #296628)
-- Matthijs Mohlmann <matthijs@cacholong.nl> Mon, 14 Feb 2005 20:17:24 +0100
pdns (2.9.17-2) unstable; urgency=low
* Written manpage for xdb-fill
* Rewritten debian/rules for better understanding
-- Matthijs Mohlmann <matthijs@cacholong.nl> Mon, 14 Feb 2005 11:23:11 +0100
pdns (2.9.17-1) unstable; urgency=low
* Update Standards-Version to 3.6.1
* Change to debhelper programs
* Added geobackend (Closes: #243958)
* Added recursor.conf (Closes: #252286)
* Start the recursor before slapd (Closes: #281330)
* Fix a typo in init script (Closes: #267672)
* The pdns recursor is now in a seperate package
* Added zone2ldap patch to be LDAPv3 compliant
* Added query logging
* support for AXFR in non-hierarchical trees
* reenabled AXFR for normal zones in strict mode
* fix for wildcard lookups in tree mode
* fix for thrown exception if multiple associatedDomain are available
* changed wrong default method (simple or tree)
* fix in PowerLDAP if dn is necessary
* Took the tarball from the powerdns website and added seperate patches
* Added postinstall scripts to configure packages
* Added postremove scripts
* Make it lintian clean
* Manpages written for binaries
* Added patch letting work pdns as slave and superslave with sqlite backend
(Closes: #280359)
* Added schema as text file in pdns-backend-{mysql,pgsql} (Closes: #248315)
* starttls is added by upstream (Closes: #193474)
-- Matthijs Mohlmann <matthijs@cacholong.nl> Thu, 3 Feb 2005 15:49:40 +0000
pdns (2.9.16-6) unstable; urgency=high
* Backport DoS fix from 2.9.17 release, CVSTrac ticket #21
http://ds9a.nl/cgi-bin/cvstrac/pdns/tktview?tn=21,4
(CAN-2005-0428 DoS in PowerDNS)
* FTBFS: F_OK undeclared fixed (Closes: #286675)
* FTBFS on amd64/gcc-4.0 fixed (Closes: #287913)
-- Matthijs Mohlmann <matthijs@cacholong.nl> Thu, 20 Jan 2005 14:13:58 +0100
pdns (2.9.16-5) unstable; urgency=low
* New maintainer upload (Closes: #282200)
* pdns installs uncompressed manpages (Closes: #264221)
-- Matthijs Mohlmann <matthijs@cacholong.nl> Sun, 21 Nov 2004 14:24:35 +0100
pdns (2.9.16-4) unstable; urgency=high
* Apply patches from current CVS:
- checkin 267: make another FD non-blocking. Should really fix
Debian bug 241321 & ticket 13 (pdns_recursor hangs).
-- Wichert Akkerman <wichert@wiggy.net> Sun, 07 Nov 2004 13:49:06 +0100
pdns (2.9.16-3) unstable; urgency=high
* Apply patches from current CVS:
- properly dup2 fd 0, 1 and 2. Closes: Bug#241321
- make recursor sockets non-blocking, should fix hanging pdns_recursor
* Include pdns_recursor init script
-- Wichert Akkerman <wichert@wiggy.net> Mon, 01 Nov 2004 12:03:40 +0100
pdns (2.9.16-2) unstable; urgency=medium
* Remove stray libpq++ linkage for gpgsqlbackend. Closes: Bug#236941
-- Wichert Akkerman <wichert@wiggy.net> Fri, 14 May 2004 14:04:34 +0200
pdns (2.9.16-1) unstable; urgency=low
* New upstream version
-- Wichert Akkerman <wichert@wiggy.net> Sun, 07 Mar 2004 22:22:03 +0100
pdns (2.9.15-2) unstable; urgency=medium
* Update missing file with current version from libtool
* Remove hardcoded libpq++ link in postrges backend
* Remove libpq++ mentions in sgml documentation
-- Wichert Akkerman <wichert@wiggy.net> Sun, 18 Jan 2004 14:06:29 +0100
pdns (2.9.15-1) unstable; urgency=medium
* New upstream version
-- Wichert Akkerman <wichert@wiggy.net> Sun, 18 Jan 2004 11:28:39 +0100
pdns (2.9.14-1) unstable; urgency=medium
* New upstream version. Postgres support rewritten to use the C interface
instead of the deprectaed libpqpp
-- Wichert Akkerman <wichert@wiggy.net> Fri, 16 Jan 2004 23:23:33 +0100
pdns (2.9.13-3) unstable; urgency=medium
* Fix pdns postinst so pdns is properly restart on upgrade
-- Wichert Akkerman <wichert@wiggy.net> Sat, 10 Jan 2004 17:21:18 +0100
pdns (2.9.13-2) unstable; urgency=critical
* Fix a bug in calculation of early timestamps: 1<<31-1 is not the
same as (1<<31)-1. This made all pdns servers consume all possible
CPU when UNIX time went through 2^30 two hours ago.
-- Wichert Akkerman <wichert@wiggy.net> Sat, 10 Jan 2004 16:53:09 +0100
pdns (2.9.13-1) unstable; urgency=low
* New upstream release
* Stop using my debian.org email address
* Change init scripts to conform to Debian policy
-- Wichert Akkerman <wichert@wiggy.net> Thu, 25 Dec 2003 13:33:40 +0100
pdns (2.9.12-1) unstable; urgency=low
* New upstream release
* Fix dependency generation. Closes: Bug#210256
* Check if pdns is installed in init script. Closes: Bug#217402
* Create a SQLite backend package
* Add versioned dpkg-dev Build-Depends so ${dpkg:Version} works properly
-- Wichert Akkerman <wakkerma@debian.org> Mon, 27 Oct 2003 18:52:53 +0100
pdns (2.9.11-2) unstable; urgency=low
* Remove automake build-depends and bootstrap rule from debian/rules.
This makes pdns a bit more portable across Debian releases.
Closes: Bug#205990
* Try to remove the /etc/powerdns directory on purge. Closes: Bug#209051
* Use libmysqlclient-dev instead of libmysqlclient10-dev
-- Wichert Akkerman <wakkerma@debian.org> Tue, 9 Sep 2003 14:59:46 +0200
pdns (2.9.11-1) unstable; urgency=low
* New upstream release
* Do not include zone2ldap in pdns package. Closes: Bug#198613
* The gdbm-dev seems to have changed its name, update Build-Depends
accordingly. Closes: Bug#199595
-- Wichert Akkerman <wakkerma@debian.org> Mon, 14 Jul 2003 13:52:47 +0200
pdns (2.9.8-1) unstable; urgency=low
* New upstream release. Closes: Bug#187781
-- Wichert Akkerman <wakkerma@debian.org> Mon, 5 May 2003 13:43:16 +0200
pdns (2.9.7-1) unstable; urgency=low
* New upstream release. Closes: Bug#185730
-- Wichert Akkerman <wakkerma@debian.org> Fri, 21 Mar 2003 12:53:00 +0100
pdns (2.9.6-2) unstable; urgency=low
* Enable the recursing nameserver
* Change order of things in clean target so debian/files is properly
removed. Closes: Bug#181994
-- Wichert Akkerman <wakkerma@debian.org> Sun, 23 Feb 2003 12:34:57 +0100
pdns (2.9.6-1) unstable; urgency=low
* New upstream release, adding a new LDAP backend
-- Wichert Akkerman <wakkerma@debian.org> Sun, 16 Feb 2003 14:49:08 +0100
pdns (2.9.5-1) unstable; urgency=low
* fill in the blanks
-- Wichert Akkerman <wakkerma@debian.org> Mon, 3 Feb 2003 20:16:16 +0100
pdns (2.9.4-1) unstable; urgency=low
* fill in the blanks
-- Wichert Akkerman <wakkerma@debian.org> Sat, 21 Dec 2002 20:16:16 +0100
pdns (2.9.3a-1) unstable; urgency=low
* New upstream release; fixes a problem in zone2sql
-- Wichert Akkerman <wakkerma@debian.org> Sat, 21 Dec 2002 20:16:16 +0100
pdns (2.9.3-1) unstable; urgency=low
* New upstream release. Yes, the packaging changes yet again to
reflect changes made upstream. The packaging of SQL backends should
be more sane now and we don't expect to change them again.
-- Wichert Akkerman <wakkerma@debian.org> Sat, 21 Dec 2002 18:18:40 +0100
pdns (2.9.2-3) unstable; urgency=low
* Compile pgmysql and xdb backend with -fPIC. Real fix is to swithc
to using libtool for all backends, which will happen in the next
upstream release.
-- Wichert Akkerman <wakkerma@debian.org> Mon, 16 Dec 2002 13:43:52 +0100
pdns (2.9.2-2) unstable; urgency=low
* Add Build-Depends on libgdbmg1-dev, which is needed by the pipe backend
-- Wichert Akkerman <wakkerma@debian.org> Mon, 16 Dec 2002 11:18:11 +0100
pdns (2.9.2-1) unstable; urgency=low
* New upstream release
* bind backend fully merged in the main pdns package now
* Add new pipe, pgmysql and xdb backends
-- Wichert Akkerman <wakkerma@debian.org> Fri, 13 Dec 2002 16:39:29 +0100
pdns (2.9-1) unstable; urgency=low
* Initial packaging
-- Wichert Akkerman <wakkerma@debian.org> Sun, 1 Dec 2002 15:04:52 +0100
|