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
|
dnsmasq (2.91-1) unstable; urgency=medium
* New upstream version 2.91
* d/control: Bump Standards-Version to 4.7.2.
-- Sven Geuer <sge@debian.org> Thu, 20 Mar 2025 18:22:04 +0100
dnsmasq (2.91~test9-1) unstable; urgency=medium
* New upstream pre-release 2.91~test9
-- Sven Geuer <sge@debian.org> Thu, 23 Jan 2025 12:37:39 +0100
dnsmasq (2.91~test6-1) unstable; urgency=medium
* New upstream pre-release 2.91~test6
* d/watch: Consider only tar.gz archives.
* d/p/*: Drop fix-crash-when-reloading-DHCP-config-on-SIGHUP.patch,
applied upstream.
* d/t/functions.d/options*.patterns: Adapt pattern files to the new
upstream version.
* d/rules: Call dh_auto_build without --no-parallel, upstream meanwhile
supports parallel build.
* d/copyright:
- Correct copyright years of src/dnssec.c.
- Bump copyright years to 2025.
-- Sven Geuer <sge@debian.org> Mon, 13 Jan 2025 13:18:22 +0100
dnsmasq (2.90-7) unstable; urgency=medium
* d/p/*:
- Add patch to fix crash when reloading DHCP config on SIGHUP
(closes: #1090352).
-- Sven Geuer <sge@debian.org> Tue, 17 Dec 2024 22:21:34 +0100
dnsmasq (2.90-6) unstable; urgency=medium
* Enhance autopkgtests.
- d/t/functions:
- Deal with dhcpcd in addition to isc-dhcp-client (closes: #1089585).
- d/t/*:
- Make sure ifupdown is installed with tests relying on it and remove
systemd-resolved possibly installed by default (closes: #1089586).
- Drop trailing empty lines.
- Thanks to Lukas Märdian <slyon@ubuntu.com> for bringing up the issues
and for providing patches.
-- Sven Geuer <sge@debian.org> Tue, 10 Dec 2024 20:44:54 +0100
dnsmasq (2.90-5) unstable; urgency=medium
* d/control + d/copyright:
- Update my email address to the d.o one.
* d/control:
- Mark all packages as Multi-Arch: foreign (closes: #934477). Thanks to
"Yuriy M. Kaminskiy" <yumkam+debian@gmail.com> for the patch.
* d/dnsmasq.service + d/dnsmasq@.service:
- Require network-online.target instead of network.target (closes: #774970,
lp: #1531184). Thanks to David Britton <david.britton@canonical.com> for
the patch.
- Add Documentation key.
* d/init-system-common:
- Run resolvconf asynchronously (closes: #871958, lp: #1778073). Thanks to
Ciaby, https://launchpad.net/~ciaby, for tracking down what caused a
deadlock between dnsmasq, resolvconf and postfix.
* d/tests/*:
- Add test to verify the fix to bug #871958 still works.
* d/p/*:
- Add patch to remove trailing white space from dnsmasq.conf.example
(closes: #1022706).
* d/rules:
- Apply dh_installexamples instead of explicit code to package
dnsmasq.conf.example.
* d/dnsmasq.init:
- Fix lintian issue init.d-script-missing-lsb-short-description.
-- Sven Geuer <sge@debian.org> Sat, 23 Nov 2024 18:50:11 +0100
dnsmasq (2.90-4) unstable; urgency=medium
* d/dnsmasq-base.postrm:
- Handle the rare case "userdel" not being available (closes: #1071142).
* Bump Standards-Version to 4.7.0.
-- Sven Geuer <debmaint@g-e-u-e-r.de> Fri, 17 May 2024 17:33:51 +0200
dnsmasq (2.90-3) unstable; urgency=medium
* Update d/control:
- Add passwd to Depends of dnsmasq-base(-lua) (closes: #1064518).
- Update the Vcs-* fields (closes: #1065347).
- Fix lintian issue build-depends-on-obsolete-package.
- Add myself as uploader.
* Update d/copyright:
- Fix lintian issue missing-field-in-dep5-copyright.
* Add missing CVE number to the 2.90-1 change log.
-- Sven Geuer <debmaint@g-e-u-e-r.de> Sat, 09 Mar 2024 20:18:53 +0100
dnsmasq (2.90-2) unstable; urgency=medium
[ Sven Geuer ]
* Relax limits imposed by d/t/functions.d/ip-addr.patterns to allow for
successful tests on ci.debian.net.
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 14 Feb 2024 11:33:14 +0000
dnsmasq (2.90-1) unstable; urgency=medium
[ Simon Kelley ]
* New upstream. (closes: #1033165)
CVE-2023-28450
* Move hard-coding of Lua version from the upstream Makefile
to d/rules.
* Security fixes for Keytrap - DNSSEC validation CPU exhaustion.
CVE-2023-50387 and CVE-2023-50868
[ Sven Geuer ]
* Introduce autokpgtests per d/tests/* (closes: #1034135).
* Switch to dpkg-source 3.0 (quilt) format (closes: #1007041).
* doc.html: Add patch to eliminate privacy breaches leaving the Donations
paragraph as untouched as possible.
* Prepend dnsmasq. to default, init, preinst, postinst, prerm, postrm.
* Rename d/systemd.service to d/dnsmasq.service.
* Rename d/systemd@.service to d/dnsmasq@.service.
* Refactor d/rules to use the DH sequencer and fix major lintian issues
(closes: #844989, #1040923, #1063551).
Modified files:
- d/rules
Complete rewrite making use of debhelper and its tools, fixes lintian
warning debian-rules-sets-dpkg-architecture-variable.
- d/control
Build-Depends, Pre-Depends, Depends added or changed as needed, lintian
error depends-on-obsolete-package fixed.
- d/dnsmasq.default
ENABLED removed and comment changed to fix lintian error
init.d-script-should-always-start-service.
- d/dnsmasq.init
Remove handling of obsolete ENABLED flag.
Extract code used with System-V-style init and systemd into
d/init-system-common, extract code used with systemd only
into d/systemd-helper. This fixes lintian warning
systemd-service-file-wraps-init-script.
Drop workaround for hypothetically non-existent file
/lib/lsb/init-functions, it has been around for more than a decade.
- d/dnsmasq.service, d/dnsmasq@.service
Adapt these files to make use of init-system-common and systemd-helper.
- d/dnsmasq.{post,pre}{inst,rm}
Rely mostly on the script snippets created by the DH tools to get
things done, implicitly fixes the lintian warnings
maintainer-script-should-not-use-dpkg-maintscript-helper and
command-with-path-in-maintainer-script.
- d/resolvconf*
Change file mode bits to 0755, the installed files need it
New files:
- d/dnsmasq.{install,links,maintscript}
- d/dnsmasq-base.{dirs,docs,install}
- d/dnsmasq-base-lua.{dirs,docs,install,links}
- d/dnsmasq-utils.{install,manpages}
The DH tools use these to install what was scripted explicitly
in the previous version of the d/rules file,
lintian warning dbus-policy-in-etc fixed
- d/init-system-common
- d/systemd-helper
These files contain slightly modified code formerly part of in
d/dnsmasq.init.
Deleted files:
- d/*conffiles
- d/lintian-override
- d/installed-marker
These are not in use anymore.
* Deal with a removed conffile and changed links.
Modified files:
- d/dnsmasq-base.{postinst,postrm}
New files:
- d/dnsmasq-base.maintscript
- d/dnsmasq-base-lua.maintscript
* Add watch file and upstream's signing key.
New files:
- d/watch
- d/u/signing-key.asc
* Remove dependency on package adduser.
Modified files:
- d/control
- d/dnsmasq.post{inst,rm}
* Refactor d/copyright to comply with DEP 5 (closes: #966505).
* Remove trailing whitespace from various files under debian/.
* Bump Standards-Version to 4.6.2.
* Specify Rules-Requires-Root.
* Update http:// to https:// with Homepage, Vcs-Git and Vcs-Browser.
* Introduce d/u/metadata.
* Fix lintian issue duplicate-short-description.
* Fix lintian issue capitalization-error-in-description.
* Bump Lua version to 5.4 (closes: #1050750).
Modified files:
- d/control
- d/t/functions.d/log.patterns
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 23 Jan 2024 22:52:01 +0000
dnsmasq (2.89-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 13 Jan 2023 21:57:01 +0000
dnsmasq (2.88-1) unstable; urgency=low
* New upstream.
* Fix loss of server configuration (closes: #1020830)
Git commit 930428fb970f4991e5c2933fd5a5d2504c18a551
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 2 Nov 2022 22:15:45 +0000
dnsmasq (2.87-1) unstable; urgency=low
* New upstream. (closes: #1001209, #1003156)
* Include new NFTset support in the build.
* Fix crash on netboot with DNS server disabled. (closes: #996332)
* Fix rare lockup in DNSSEC. (closes: #1001576)
* Close old bug. (closes: #902963)
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 25 Sep 2022 23:11:25 +0000
dnsmasq (2.86-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Fix --address=/#/...... which was lost in 2.86. (closes: #995655)
-- Michael Biebl <biebl@debian.org> Wed, 10 Nov 2021 22:05:45 +0100
dnsmasq (2.86-1) unstable; urgency=low
* Fix debian/changelog format error. (closes: #986626)
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 08 Apr 2021 22:39:00 +0100
dnsmasq (2.85-1) unstable; urgency=low
* New upstream.
* Includes fix to CVE-2021-3448.
* Fix manpage typos. (closes: #986150)
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 03 Apr 2021 22:17:23 +0100
dnsmasq (2.84-1.2) unstable; urgency=medium
* Non-maintainer upload.
* Bump old-version in dpkg-maintscript-helper dir_to_symlink calls to also
clean up after upgrades to an earlier version in testing.
-- Andreas Beckmann <anbe@debian.org> Thu, 01 Apr 2021 16:01:51 +0200
dnsmasq (2.84-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Fix symlink to directory conversion for /usr/share/doc/dnsmasq.
This is achieved by directly calling dpkg-maintscript-helper in the preinst,
postinst, and postrm scripts, since the package does not use debhelper.
(Closes: #985282)
-- Sébastien Villemot <sebastien@debian.org> Sun, 28 Mar 2021 10:55:07 +0200
dnsmasq (2.84-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 24 Jan 2021 22:02:01 +0000
dnsmasq (2.83-1) unstable; urgency=high
* New upstream.
* Includes fixes to CVE-2020-25681 - CVE-2020-25687 inclusive.
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 15 Jan 2021 22:22:41 +0000
dnsmasq (2.82-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 26 Jun 2020 22:22:41 +0000
dnsmasq (2.81-4) unstable; urgency=low
* Remove runit support when building for Ubuntu. (closes: #960401)
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 26 Jun 2020 21:52:44 +0000
dnsmasq (2.81-3) unstable; urgency=low
* Fixes to control file for bug 958100
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 19 Apr 2020 21:44:12 +0000
dnsmasq (2.81-2) unstable; urgency=low
* Fix FTBFS on kFreeBSD. (closes: #958100)
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 18 Apr 2020 18:34:15 +0000
dnsmasq (2.81-1) unstable; urgency=low
* New upstream.
* Fix nodocs/nodoc confusion in rules. (closes: #922758)
* Add Vcs-* fields to control. (closes: #922422)
* Add systemd support for multiple daemon instances. (closes: #914305)
* Add note explaining that ENABLED is SYSV-init only. (closes: #914755)
* Replace ash with dash in contrib/reverse-dns. (closes: #920224)
* Move to libidn2. (closes: #932695)
* Fix RA problem with two interfaces on same net, but RA service on
only one of the interfaces. (closes: #949565)
* Fix breakage of dig +trace. (closes: #942363)
* Fix build faliure with newer Nettle libraries. (closes: #940985)
* Support runscript init-system (closes: #929884)
* Security fix for CVE-2019-14834 (closes: #948373)
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 8 Apr 2020 17:33:15 +0000
dnsmasq (2.80-1) unstable; urgency=low
* New upstream. (closes: #837602) (closes: #794640) (closes: #794636)
* Close old bugs, long agp fixed. (closes: #802845) (closes: #754299)
* Provide usr/lib/tmpfiles.d/dnsmasq.conf. (closes: #872396)
* Run restorecon on /run/dnsmasq for SE Linux. (closes: #872397)
-- Simon Kelley <simon@thekelleys.org.uk> Mon, 17 Sep 2018 23:11:25 +0000
dnsmasq (2.79-1) unstable; urgency=low
* New upstream. (closes: #888200)
* Fix trust-anchor regex in init script. (closes: #884347)
* Fix exit code for dhcp_release6 (closes: #883596)
* Add project homepage to control file. (closes: #887764)
* New binary package dnsmasq-base-lua, includes Lua support.
* Remove hardwired shlibs dependency for libnettle 3.3 and
fix code to avoid ABI breakage as long as compiled against
libnettle 3.4 or later. (closes: #891315)
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 16 Feb 2018 19:54:22 +0000
dnsmasq (2.78-3) unstable; urgency=high
* Make failure of pidfile chown a warning. (closes: #889857)
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 8 Feb 2018 21:26:30 +0000
dnsmasq (2.78-2) unstable; urgency=high
* Change ownership of pid file, to keep systemd happy. (closes: #889336)
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 6 Feb 2018 17:21:30 +0000
dnsmasq (2.78-1) unstable; urgency=high
* New upstream.
Security fixes for CVE-2017-13704 (closes: #877102)
Security fixes for CVE-2017-14491 - CVE-2017-14496 inclusive.
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 29 Sep 2017 21:34:00 +0000
dnsmasq (2.77-2) unstable; urgency=low
* Improve sed regexp for parsing root.ds.
-- Simon Kelley <simon@thekelleys.org.uk> Mon, 5 Jun 2017 20:46:32 +0000
dnsmasq (2.77-1) unstable; urgency=low
* New upstream.
* Don't register as a resolvconf source when config file
includes port=0 to disable DNS.
* Handle gratuitous format change in /usr/share/dns/root.ds
(closes: #858506) (closes: #860064)
* Add lsb-base dependency.
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 11 Apr 2017 14:19:20 +0000
dnsmasq (2.76-5) unstable; urgency=medium
* Nail libnettle dependency to avoid ABI incompatibility.
(closes: #846642)
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 14 Dec 2016 17:58:10 +0000
dnsmasq (2.76-4.1) unstable; urgency=medium
* Non-maintainer upload.
* Add two upstream patches to fix binding to an interface being
destroyed and recreated. Closes: #834722.
+ 2675f2061525bc954be14988d64384b74aa7bf8b
+ 16800ea072dd0cdf14d951c4bb8d2808b3dfe53d
-- Vincent Bernat <bernat@debian.org> Sat, 26 Nov 2016 20:15:34 +0100
dnsmasq (2.76-4) unstable; urgency=medium
* Non-maintainer upload.
* Fix FTCBFS: Use triplet-prefixed tools. (closes: #836072)
-- Helmut Grohne <helmut@subdivi.de> Tue, 30 Aug 2016 13:59:12 +0200
dnsmasq (2.76-3) unstable; urgency=medium
* Bump auth zone serial on SIGHUP. (closes: #833733)
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 13 Aug 2016 21:43:10 +0000
dnsmasq (2.76-2) unstable; urgency=medium
* Fix to systemd to fix failure to start with bridge interface.
(Closes: #831372)
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 16 Jul 2016 22:09:10 +0000
dnsmasq (2.76-1.2) unstable; urgency=medium
* Non-maintainer upload.
* dnsmasq: Install marker file to determine package installed state,
for the benefit of the init script. (Closes: #819856)
-- Christian Hofstaedtler <zeha@debian.org> Sat, 16 Jul 2016 00:17:57 +0000
dnsmasq (2.76-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Provide nss-lookup.target for systemd, without relying on insserv.
Patch from Michael Biebl <biebl@debian.org>. (Closes: #826242)
-- Christian Hofstaedtler <zeha@debian.org> Fri, 01 Jul 2016 13:41:11 +0000
dnsmasq (2.76-1) unstable; urgency=low
* New upstream. (closes: #798586)
* Use /run/dnsmasq directly, rather than relying on link from /var/run
to avoid problems before /var is mounted. (closes: #800351)
* Test for the existence of /usr/share/doc/dnsmasq rather then
/etc/dnsmasq.d/README in the daemon startup script. (closes: #819856)
* Add --help to manpage and mention dhcp6 in summary. (closes: #821226)
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 10 Sep 2015 23:07:21 +0000
dnsmasq (2.75-1) unstable; urgency=low
* New upstream. (closes: #794095)
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 30 Jul 2015 20:58:31 +0000
dnsmasq (2.74-1) unstable; urgency=low
* New upstream. (LP: #1468611)
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 15 Jul 2015 21:54:11 +0000
dnsmasq (2.73-2) unstable; urgency=low
* Fix behaviour of empty --conf-file (closes: #790341)
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 7 Jul 2015 21:46:42 +0000
dnsmasq (2.73-1) unstable; urgency=low
* New upstream. (closes: #786996)
* Tweak field width in cache dump to avoid truncating IPv6
addresses. (closes: #771557)
* Add newline at the end of example config file. (LP: #1416895)
* Make Debian package build reproducible. (closes: #777323)
* Add Requires=network.target to systemd unit.
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 4 Jun 2015 22:31:42 +0000
dnsmasq (2.72-3) unstable; urgency=medium
* debian/systemd.service: switch from Type=dbus to Type=forking.
dnsmasq does not depend on dbus, but Type=dbus systemd services cannot
work without it. (Closes: #769486, #776530)
- debian/init: when called with systemd-exec argument, let dnsmasq
go into the background, so Type=forking can detect when it is ready
* Remove line containing only whitespace in debian/control.
(closes: #777571)
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 11 Feb 2015 21:56:12 +0000
dnsmasq (2.72-2) unstable; urgency=low
* Fix build in Debian-kFreeBSD. (closes: #763693)
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 02 Oct 2014 22:34:12 +0000
dnsmasq (2.72-1) unstable; urgency=low
* New upstream.
* If dns-root-data package is installed, use it to set the DNSSEC
trust anchor(s). Recommend dns-root-data. (closes: #760460)
* Handle AD bit correctly in replies from cache. (closes: #761654)
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 20 May 2014 21:01:11 +0000
dnsmasq (2.71-1) unstable; urgency=low
* New upstream.
* Fix 100% CPU-usage bug when dnsmasq started with cachesize
set to zero. (LP: #1314697)
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 16 May 2014 20:17:10 +0000
dnsmasq (2.70-3) unstable; urgency=medium
* Write a pid-file, even when being started using systemd, since
other components may wish to signal dnsmasq.
* Enable dnsmasq systemd unit on install. Otherwise dnsmasq does not run on
fresh installations (without administrator handholding) and even worse it
is disabled on systems switching from sysv to systemd. Modify
postinst/postrm exactly as dh_systemd would, add dependency on
init-system-helpers. Closes: #724602
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 11 May 2014 17:45:21 +0000
dnsmasq (2.70-2) unstable; urgency=low
* Ensure daemon not stared if dnsmasq package has been removed,
even if dnsmasq-base is still installed. (closes: #746941)
* Tidy cruft in initscript. (closes: #746940)
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 04 May 2014 21:34:11 +0000
dnsmasq (2.70-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 23 Apr 2014 15:14:42 +0000
dnsmasq (2.69-1) unstable; urgency=low
* New upstream.
* Set --local-service. (closes: #732610)
This tells dnsmasq to ignore DNS requests that don't come
from a local network. It's automatically ignored if
--interface --except-interface, --listen-address or
--auth-server exist in the configuration, so for most
installations, it will have no effect, but for
otherwise-unconfigured installations, it stops dnsmasq
from being vulnerable to DNS-reflection attacks.
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 4 Feb 2014 16:28:12 +0000
dnsmasq (2.68-1) unstable; urgency=low
* New upstream. (closes: #730553)
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 8 Dec 2013 15:57:32 +0000
dnsmasq (2.67-1) unstable; urgency=low
* New upstream.
* Update resolvconf script. (closes: #720732)
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 4 Aug 2013 14:53:22 +0000
dnsmasq (2.66-4) unstable; urgency=low
* Update resolvconf script. (closes: #716908)
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 4 Aug 2013 14:48:21 +0000
dnsmasq (2.66-3) unstable; urgency=low
* Update resolvconf script for dnscrypt-proxy integration. (closes: #709179)
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 28 May 2013 14:39:51 +0000
dnsmasq (2.66-2) unstable; urgency=low
* Fix error on startup with some configs. (closes: #709010)
-- Simon Kelley <simon@thekelleys.org.uk> Mon, 20 May 2013 11:46:11 +0000
dnsmasq (2.66-1) unstable; urgency=low
* New upstream.
* Add support for noipset in DEB_BUILD_OPTIONS.
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 22 Feb 2013 21:52:13 +0000
dnsmasq (2.65-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 14 Dec 2012 11:34:12 +0000
dnsmasq (2.64-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 21 Sep 2012 17:17:22 +0000
dnsmasq (2.63-4) unstable; urgency=low
* Make pid-file creation immune to symlink attacks. (closes: #686484)
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 21 Sep 2012 17:16:34 +0000
dnsmasq (2.63-3) unstable; urgency=low
* Move adduser dependency to dnsmasq-base. (closes: #686694)
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 4 Sep 2012 21:44:15 +0000
dnsmasq (2.63-2) unstable; urgency=low
* Fix version script to report correct version.
* Unbotch move of dbus config file by using correct versions in
Replaces: and Breaks: lines. (closes: #685204)
* Create dnsmasq user in dnsmasq-base so that Dbus doesn't complain if
only dnsmasq-base is installed. (closes: #685987)
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 28 Aug 2012 16:18:35 +0000
dnsmasq (2.63-1) unstable; urgency=low
* New upstream.
* Move /etc/dbus-1/system.d/dnsmasq.conf from dnsmasq to dnsmasq-base.
-- Simon Kelley <simon@thekelleys.org.uk> Mon, 11 Jun 2012 21:55:35 +0000
dnsmasq (2.62-3) unstable; urgency=low
* Do resolvconf and /etc/default startup logic when
starting with systemd. (closes: #675854)
-- Simon Kelley <simon@thekelleys.org.uk> Mon, 11 Jun 2012 21:50:11 +0000
dnsmasq (2.62-2) unstable; urgency=low
* Pass LDFLAGS to make to get hardening in linker.
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 7 Jun 2012 09:53:43 +0000
dnsmasq (2.62-1) unstable; urgency=low
* New upstream.
* Use dpkg-buildflags. (Enables hardening).
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 12 May 2012 15:25:23 +0000
dnsmasq (2.61-1) unstable; urgency=low
* New upstream.
* Provide "dump-stats" initscript method. (closes: #654656)
* Add (empty) build-indep and build-arch rules targets.
* Bump standards-version to 3.9.3
* Add port option to example dnsmasq.conf (closes: #668386)
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 6 Mar 2012 19:45:43 +0000
dnsmasq (2.60-2) unstable; urgency=high
* Fix DHCPv4 segfault. (closes: #665008)
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 23 Mar 2012 09:37:23 +0000
dnsmasq (2.60-1) unstable; urgency=low
* New upstream.
* Bump standards-version to 3.9.2
* Fix typo in example config file. (closes: #654897)
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 1 Dec 2011 15:49:33 +0000
dnsmasq (2.59-4) unstable; urgency=low
* Supply /etc/insserv.conf.d/dnsmasq (closes: #650540)
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 1 Dec 2011 11:35:13 +0000
dnsmasq (2.59-3) unstable; urgency=low
* Stop daemon at runlevels 0, 1 and 6. (closes: #647726)
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 26 Nov 2011 15:28:33 +0000
dnsmasq (2.59-2) unstable; urgency=low
* Fix reported version number.
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 19 Oct 2011 09:25:53 +0000
dnsmasq (2.59-1) unstable; urgency=low
* New upstream.
* Fix IPv6 bind problem (closes: #644345)
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 8 Oct 2011 16:34:13 +0000
dnsmasq (2.58-3) unstable; urgency=low
* Fix resolvconf script location. (closes: #641717)
* Update systemd service file. (closes: #640095)
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 15 Sep 2011 16:33:23 +0000
dnsmasq (2.58-2) unstable; urgency=low
* Fix resolvconf script. (closes: #639963)
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 1 Sep 2011 10:05:23 +0000
dnsmasq (2.58-1) unstable; urgency=low
* New upstream.
* Add noconntrack DEB_BUILD_OPTIONS flag.
* Improve error message when tag:xxx appears
in --dhcp-host (closes: #627986)
* Add /usr/lib/resolvconf/packaging-event.d/dnsmasq (closes: #628003)
* Update resolvconf hook script to sleep only
when necessary. (closes: #627789)
* Tweak behaviour of --domain-needed to avoid problems with recursive
nameservers _downstream_ of dnsmasq. (closes: #630637)
* Allow processes running as uid dnsmasq to send messages on the DBus,
so that dnsmasq can return errors. (closes: #635017)
* Add /lib/systemd/system/dnsmasq.service (closes: #635753)
* New binary package, dnsmasq-utils, containing dhcp_release and
dhcp_lease_time from contrib/wrt. Note that these are Linux-specific
so this package is Architecture: linux-any (closes: #638136)
-- Simon Kelley <simon@thekelleys.org.uk> Mon, 22 Aug 2011 14:57:03 +0000
dnsmasq (2.57-1) unstable; urgency=low
* New upstream.
* Fix typos in example config file. (closes: #606615)
* Bump standards-version to 3.9.1
* Add noidn DEB_BUILD_OPTIONS flag.
* Don't complain about extra command line arguments if
they are empty, as this breaks libvirt. (closes: #613915)
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 18 Feb 2011 09:54:13 +0000
dnsmasq (2.56-1) unstable; urgency=low
* New upstream.
* Die if non-option args present on the command-line. (closes: #589885)
* Tighten up use of IGNORE_RESOLVCONF in initscript. (closes: #575345)
* Update URL of ISC's explanation of dhcp-authoritative in the example
configuration file. (closes: #604870)
* Cosmetic changes to dnsmasq.conf.example. (closes: #598790)
* More dnsmasq.conf.example fixes. (closes: #606615)
* Add other resolv.conf locations to FILES section of the manual
page. (closes: #603505)
* Clarify configuration for static IP addresses in the absence of
resolvconf in the Debian readme file. (closes: #604035)
* Fix handling of obsolete DNSMASQ_INTERFACE and DNSMASQ_EXCEPT
variables in /etc/default/dnsmasq. (LP: #691329)
* Provide debian/source/format.
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 17 Dec 2010 13:17:33 +0000
dnsmasq (2.55-2) unstable; urgency=high
* Fix crash on double free. (closes: #597205)
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 19 Sep 2010 21:45:33 +0000
dnsmasq (2.55-1) unstable; urgency=low
* New upstream.
* Fix crash when /etc/ethers in use. (closes: #584754)
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 6 Jun 2010 20:33:13 +0000
dnsmasq (2.53-1) unstable; urgency=low
* New upstream.
* Fix FTBFS on kFreeBSD. (closes: #566334)
* Teach initscript to check the config file syntax before
restarting dnsmasq. An error will leave the old dnsmasq still
running, rather than killing the old daemon and then failing to start
a new one.
* Tweak DHCP behaviour when a physical interface has two addresses on
the same subnet. (closes: #581064)
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 20 May 2010 11:41:23 +0000
dnsmasq (2.52-1) unstable; urgency=low
* New upstream.
* Be more conservative with "A for A" processing. (closes: #553337)
* Add README file in /etc/dnsmasq.d to explain what's going on.
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 14 Jan 2010 09:53:13 +0000
dnsmasq (2.51-1) unstable; urgency=low
* New upstream.
* Bump standards-version to 3.8.2 (no changes needed).
* Ignore files named *.dpkg-old, *.dpkg-new and *.dpkg-dist
in /etc/dnsmasq.d
* Provide a facility in /etc/default/dnsmasq to disable dnsmasq's
interaction with the resolvconf package. This is needed because
setting "resolv-file" in /etc/dnsmasq.conf won't override a
file given on the command line from resolvconf. (closes: #528762)
* Check for duplicate names/addresses in /etc/ethers. (closes: #523787)
* Set the system locale in the environment before invoking dnsmasq,
so that translated messages work, and IDN uses the correct charset.
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 4 Oct 2009 14:01:14 +0000
dnsmasq (2.50-1) unstable; urgency=high
* New upstream, fixes remote vulns in TFTP server.
Bugtraq id: 36120,36121 CVE: 2009-2957,2009-2958
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 21 Aug 2009 10:25:13 +0000
dnsmasq (2.49-1) unstable; urgency=low
* New upstream.
* Log TFTP "file not found" errors. (closes: #532201)
-- Simon Kelley <simon@thekelleys.org.uk> Mon, 8 Jun 2009 22:03:23 +0000
dnsmasq (2.48-2) unstable; urgency=low
* Change dnsmasq -> dnsmasq-base dependency to >= to allow binNMU,
fixes Lintian error.
* Bump standards-version to 3.8.1
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 5 Jun 2009 10:58:33 +0000
dnsmasq (2.48-1) unstable; urgency=low
* New upstream.
* Detect and ignore duplicate configuration files. (closes: #516234)
* Add 2 second sleep between stop and start during initscript restart.
* Make dependency on dnsmasq-base in dnsmasq package versioned, so that
installing the latest dnsmasq will install the latest dnsmasq-base
too. (closes: #523955)
* Add nodhcp DEB_BUILD_OPTIONS option.
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 29 May 2009 10:20:23 +0000
dnsmasq (2.47-3) unstable; urgency=low
* Fix bashism in init script. (closes: #514397)
* Tweak logging in init script.
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 7 Feb 2009 19:25:23 +0000
dnsmasq (2.47-2) unstable; urgency=low
* Check that /etc/init.d/dnsmasq is executable in postinst in case
the daemon has been disabled that way. (closes: #514314)
* Ensure that /var/run/dnsmasq exists and has the right permissions
before running dnsmasq. On some systems /var/run is cleared over
reboot. (closes: #514317)
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 6 Feb 2009 09:38:21 +0000
dnsmasq (2.47-1) unstable; urgency=low
* New upstream.
* Handle the "ENABLED" flag in the init script a bit more
intelligently. The "stop" and "status" functions continue
to work even when disabled, but a failed "stop" becomes
silent and returns zero exit code.
* Don't explicitly kill dnsmasq at system shutdown, rely on the
sendsigs script instead which is quicker. (closes: #506734)
* Store the PID-file in /var/run/dnsmasq. This directory is owned by
user "dnsmasq", so that dnsmasq can delete the PID-file on
shutdown. This ensures that the the PID-file goes even when dnsmasq
is stopped by sendsigs. (closes: #508560)
* Bump standards-version to 3.8.0 (no changes required.)
* /usr/sbin/adduser -> adduser in postinst. Lintian fix.
* Handle IPv6 addresses in "tentative" state better. (closes: #507646)
* Add DBus introspection support. (closes: #508774)
* Fix Dbus configuration. (closes: #510649)
-- Simon Kelley <simon@thekelleys.org.uk> Mon, 2 Feb 2009 13:39:11 +0000
dnsmasq (2.46-1) unstable; urgency=low
* New upstream. (closes: #499162) (closes: #499007)
* Remove from init script start-stop-daemon call to kill
child processes. This is not needed since dnsmasq is
carefully written to kill child processes, and it interacts
badly with "private" instances of dnsmasq. (closes: #505523)
* Provide /etc/dnsmasq.d and alter the installed /etc/default/dnsmasq
so that /etc/dnsmasq.d is read. This provides a drop-directory where
libvirt can add options to make the system dnsmasq automatically
play nice with libvirt's private instances. (closes: #505522)
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 13 Nov 2008 20:15:31 +0000
dnsmasq (2.45-1) unstable; urgency=high
* New upstream - fixes regression when min-port not set.
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 20 Jul 2008 19:27:11 +0000
dnsmasq (2.44-1) unstable; urgency=high
* New upstream - bugfix release for 2.43.
* Fix crash in netlink code. (closes: #491289)
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 11 Jul 2008 19:39:10 +0000
dnsmasq (2.43-1) unstable; urgency=high
* New upstream.
* Implement source-port randomisation and better random
number generator as defence against CVE-2008-1447 (closes: #490123)
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 17 Jun 2008 11:55:38 +0000
dnsmasq (2.42-4) unstable; urgency=low
* Fix botch in postinst introduced in 2.42-2. (closes: #486616)
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 17 Jun 2008 11:39:10 +0000
dnsmasq (2.42-3) unstable; urgency=low
* Fix thinko in init script, breaks status command. (closes: #486455)
-- Simon Kelley <simon@thekelleys.org.uk> Mon, 16 Jun 2008 11:26:20 +0000
dnsmasq (2.42-2) unstable; urgency=low
* Error check in postinst file (closes: #485645)
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 10 Jun 2008 20:25:10 +0000
dnsmasq (2.42-1) unstable; urgency=low
* New upstream.
* Fix manpage typos. (closes: #468762)
* Use LSB log_*_msg rather than echo in init script. (closes: #473117)
* Fix agent-id echo problem. (closes: #473015)
* Fixup changing /usr/share/doc/dnsmasq to symlink. (closes: #468763)
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 27 Feb 2008 21:15:28 +0000
dnsmasq (2.41-2) unstable; urgency=low
* Fix rules to build binary-arch and binary-indep correctly.
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 27 Feb 2008 19:57:10 +0000
dnsmasq (2.41-1) unstable; urgency=low
* New upstream.
* Fix typo. (closes: #448038)
* Fix DHCP problem interoperating with Sony Ericsson K610i (closes: #451871)
* Split binary packages into dnsmasq and dnsmasq-base (closes: #463407)
* Add warnings about bad effects of --filterwin2k to default config
file. (closes: #464357)
* Don't declare Provides: $named in LSB header. (closes: #464512)
* Remove conflict with pdnsd. (closes: #464691)
* Add ability to disable dnsmasq in /etc/default/dnsmasq. (closes: #465062)
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 31 Jan 2008 20:25:28 +0000
dnsmasq (2.40-1) unstable; urgency=low
* New upstream.
* Fix manpage typo. (closes: #429412)
* Fix dnsmasq.conf typos (closes: #429929)
* Handle DEB_BUILD_OPTIONS nostrip and noopt (closes: #436784)
* Add DEB_BUILD_OPTIONS for nodocs, notftp, noipv6,
nodbus, noi18n and nortc.
* Create DEBIAN/md5sums file in package.
* Add status function to init script. (closes: #439316)
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 9 Aug 2007 10:24:18 +0000
dnsmasq (2.39-1) unstable; urgency=low
* New upstream.
* Provide example config file in /usr/share/doc/dnsmasq/examples
as well as /etc/dnsmasq.conf, so it's available for reference.
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 13 Feb 2007 10:02:38 +0000
dnsmasq (2.38-1) unstable; urgency=low
* New upstream (closes: #410185)
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 6 Feb 2007 21:14:58 +0000
dnsmasq (2.37-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 25 Jan 2007 10:44:18 +0000
dnsmasq (2.36-1) unstable; urgency=low
* New upstream. (closes: #400037)
* Don't fail to purge if deluser command is not available.
* Add one second sleep to resolvconf script. (closes: #398961)
* Fix dnsmasq.conf typo (closes: #405314)
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 31 Oct 2006 10:24:58 +0000
dnsmasq (2.35-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 18 Oct 2006 09:23:28 +0000
dnsmasq (2.34-1) unstable; urgency=low
* New upstream.
* Includes --clear-on-reload flag. (loses: #391654)
* Don't any longer set the "domain-needed" and "bogus-priv" flags in the
* the default-installed dnsmasq.conf. These can generate puzzling
* behaviour for people who get them without asking.
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 9 Aug 2006 09:23:28 +0000
dnsmasq (2.33-1) unstable; urgency=low
* New upstream.
* Remove bashism from Makefile (closes: #375409)
* Added Provides: $named to LSB header in init script.
* Add --dns-forward-max flag. (closes: #377506)
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 25 June 2006 18:03:13 +0000
dnsmasq (2.32-2) unstable; urgency=low
* Added LSB tags to init.d startup script. (closes: #374650)
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 25 June 2006 17:55:11 +0000
dnsmasq (2.32-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Mon, 8 May 2006 09:23:28 +0000
dnsmasq (2.31-1) unstable; urgency=high
* New upstream. (closes: #364800)
* Compile in Dbus support now that suitable Dbus packages exist.
* Don't stop an old dnsmasq process, until a new one is ready,
when upgrading. (closes: #366224)
* Move to standards-version 3.7.2 (no changes needed).
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 6 May 2006 11:58:22 +0000
dnsmasq (2.30-1) unstable; urgency=low
* New upstream, fixes crash with DHCP broadcast replies.
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 23 Apr 2006 14:58:22 +0000
dnsmasq (2.29-1) unstable; urgency=low
* New upstream. (closes: #363244) (closes: #363340)
* Made config options clearer in src/config.h and
clarify ISC integration status in Debian readme. (closes: #364250)
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 18 Apr 2006 10:26:12 +0000
dnsmasq (2.28-1) unstable; urgency=low
* New upstream. (closes: #359956) (closes: #362499)
* Added firestarter info to FAQ. (closes: #359139)
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 14 Mar 2006 19:20:12 +0000
dnsmasq (2.27-1) unstable; urgency=low
* New upstream.
* Workaround buggy Microsoft DHCP clients. (closes: #355008)
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 1 Feb 2006 17:05:12 +0000
dnsmasq (2.26-1) unstable; urgency=high
* New upstream. (Fixes possible crash in 2.25, hence urgency).
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 22 Jan 2006 11:05:22 +0000
dnsmasq (2.25-1) unstable; urgency=low
* Remove bashisms in postinst and prerm scripts.
* Remove misconceived dependency on locales.
* Depend on adduser.
-- Simon Kelley <simon@thekelleys.org.uk> Thu, 01 Dec 2005 21:02:12 +0000
dnsmasq (2.24-1) unstable; urgency=low
* New upstream. (closes: #330422)
* Fix typo and clean up dnsmasq.conf (closes: #326057) (closes: #304446)
* Add build support for I18N and gettext.
* Fixed manpage typos. (closes: #336413)
* Create a dnsmasq-unique userid for the daemon to run as. (closes: #338353)
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 03 Sep 2005 20:02:32 +0000
dnsmasq (2.23-1) unstable; urgency=low
* New upstream. (closes: #302501) (closes: #315794)
* Fix manpage typos. (closes: #304984)
* Add support for DNSMASQ_EXCEPT in /etc/defaults/dnsmasq.
putting "lo" in this also disables resolvconf support.
* No longer delete pre-existing /etc/init.d symlinks. The
change in default runlevels which necessitated this
is now ancient history and anyway the startup script now
behaves when called twice. (closes: #312111)
* Tightened config-file parser. (closes: #317030)
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 02 Aug 2005 13:17:22 +0000
dnsmasq (2.22-2) unstable; urgency=low
* Make the resolv.conf polling code resistant to
backwards-moving system clocks. (closes: #306117) (closes: #300694)
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 04 May 2005 13:25:23 +0000
dnsmasq (2.22-1) unstable; urgency=low
* New upstream.
* Fixed broken-ness when read /etc/ethers. (closes: #301999)
-- Simon Kelley <simon@thekelleys.org.uk> Thur, 24 Mar 2005 17:10:13 +0000
dnsmasq (2.21-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 29 Jan 2005 16:05:13 +0000
dnsmasq (2.20-1) unstable; urgency=low
* New upstream.
* Fix shadowed CNAME-target problem. (closes: #286654)
* Add --localise-queries option. (closes: #291367)
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 17 Dec 2004 17:35:23 +0000
dnsmasq (2.19-1) unstable; urgency=high
* New upstream.
* Fix another IPv6 interface enumeration problem. (closes: #285182)
* Uploading at high priority since 285182 is really RC.
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 11 Dec 2004 20:39:33 +0000
dnsmasq (2.18-2) unstable; urgency=low
* Revert startup to not start from rcS. Starting in rcS
* causes problems if interfaces are not available at that
* point. Users who need this facility should manually
* make rcS.d symlinks. (closes: #283239)
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 27 Nov 2004 16:33:12 +0000
dnsmasq (2.18-1) unstable; urgency=low
* New upstream.
* Reset cache statistics when clearing the cache. (closes: #281817)
* Fix problems with bind-interfaces and IPv6. (closes: #282192)
* Fix problems upgrading when restarting dnsmasq fails.
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 16 Nov 2004 17:33:32 +0000
dnsmasq (2.17-1) unstable; urgency=high
* New upstream - fixes crash, hence high urgency.
* Clarified log message when a record in /etc/hosts
and a DHCP name clash. (closes: #275420)
* Start dnsmasq just before portmap and nfs mounts from rcS.d
DNS is required at this stage to use the net. (closes: #280434)
* Make "bind-interfaces" apply to IPv6 interfaces. (closes: #278492)
* Allow a list if interfaces as arg to the --interface and
--except-interface options. (closes: #279063)
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 26 Oct 2004 20:39:33 +0000
dnsmasq (2.16-2) unstable; urgency=high
* Rename variable in cache.c which clashes with C headers
under gcc-3.4 (closes: #277893)
-- Simon Kelley <simon@thekelleys.org.uk> Mon, 25 Oct 2004 16:03:24 +0000
dnsmasq (2.16-1) unstable; urgency=high
* New upstream.
* Fixes interaction with Linux 2.4.x and 2.6.x not-quite-POSIX
select behavior, which can cause hangs when receiving UDP
packets with bad checksum.
* Fix bad interaction with polipo. (closes: #275754)
* Cache CNAMEs better. (closes: #276289)
-- Simon Kelley <simon@thekelleys.org.uk> Mon, 04 Oct 2004 15:25:44 +0000
dnsmasq (2.15-1) unstable; urgency=low
* New upstream.
* Fix NXDOMAIN/NODATA confusion for locally known names. (closes: #271564)
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 15 Sep 2004 15:01:44 +0000
dnsmasq (2.14-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 28 Aug 2004 20:39:33 +0000
dnsmasq (2.13-1) unstable; urgency=high
* New upstream - fixes crash. (closes #265313)
-- Simon Kelley <simon@thekelleys.org.uk> Thur, 12 Aug 2004 12:45:23 +0000
dnsmasq (2.12-1) unstable; urgency=low
* New upstream.
* Log types of incoming queries (closes: #230123).
* Don't set "filterwin2k" by default in the included
config file - it breaks SRV lookups and Kerberos.
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 8 Aug 2004 19:58:13 +0000
dnsmasq (2.11-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 28 July 2004 21:59:33 +0000
dnsmasq (2.10-1) unstable; urgency=low
* New upstream.
* Allow query-port less than 1024 (closes: #236586)
* Change behaviour of --bogus-priv (closes: #254711)
* Match existing leases by MAC address when a client stops
using client-id or they get suppressed by dnsmasq. (closes: #258519)
-- Simon Kelley <simon@thekelleys.org.uk> Thur, 24 June 2004 20:55:42 +0000
dnsmasq (2.9-2) unstable; urgency=low
* Fix typo in debian/control (closes: #255762)
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 23 Jun 2004 20:40:13 +0000
dnsmasq (2.9-1) unstable; urgency=low
* New upstream.
* New version has improved server selection logic (closes: #251097)
* Improved initscript (closes: #252229)
* Conflict with old resolvconf versions to maintain compatibility.
* Updated README.debian (closes: #253429)
* Changed startup message to mention DHCP as well as DNS.
* New resolvconf update script (closes: #254765)
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 26 May 2004 12:35:23 +0000
dnsmasq (2.8-1) unstable; urgency=low
* New upstream.
* Fixes problem with zero-length hostnames which can lose
DHCP leases over a restart. (closes: #248829)
-- Simon Kelley <simon@thekelleys.org.uk> Thur, 13 May 2004 18:40:12 +0000
dnsmasq (2.7-2) unstable; urgency=low
* New version of resolvconf script from Thomas Hood with the
following changes: (closes: #247695)
* Doesn't include nameservers listed in the lo.inet or lo.inet6 interface
records created by "ifup lo"
* Lists addresses in a specified order (by interface name)
* Eliminates duplicate nameserver addresses
* Updates /var/run/dnsmasq/resolv.conf atomically
* Doesn't generate empty lines
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 11 May 2004 22:35:12 +0000
dnsmasq (2.7-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 18 Apr 2004 20:00:23 +0000
dnsmasq (2.6-3) unstable; urgency=low
* Removed reload command from start script and moved force-reload
to be equivalent to restart. This is needed to be policy compliant
since SIGHUP doesn't cause dnsmasq to reload its configuration file,
only the /etc/hosts, /etc/resolv.conf etc. (closes: #244208)
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 18 Apr 2004 14:40:51 +0000
dnsmasq (2.6-2) unstable; urgency=low
* Added Conflict with pdnsd (closes: #242731).
Rationale: dnsmasq used to conflict with all the DNS servers
in Debian, but that was removed because some people wished
to run with dnsmasq listening on one interface and another DNS
server listening on another interface. However AFAIK it is not
possible to make pdnsd listen on a subset of a hosts interfaces,
so there is no scenario where running pdnsd and dnsmasq on the same
host would be useful, hence the conflict goes back.
* Added note about the --bind-interfaces option to
readme.Debian (closes: #241700)
-- Simon Kelley <simon@thekelleys.org.uk> Tue, 13 Apr 2004 18:37:55 +0000
dnsmasq (2.6-1) unstable; urgency=low
* New upstream.
* New version adds back ability to read ISC dhcpd lease files
for backwards compatibility. (closes: #229684) (closes: #236421)
* Fix parsing of # characters in options file. (closes: #241199)
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 21 Mar 2004 19:59:25 +0000
dnsmasq (2.5-1) unstable; urgency=low
* New upstream, includes fix for IP-alias related
problem. (closes: #238268)
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 14 Mar 2004 08:32:43 +0000
dnsmasq (2.4-3) unstable; urgency=low
* Fixed "bind-interfaces" option, even when
an "interface" option is given also.
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 12 Mar 2004 08:14:23 +0000
dnsmasq (2.4-2) unstable; urgency=low
* Fixed "bind-interfaces" option (closes: #237543).
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 12 Mar 2004 07:30:25 +0000
dnsmasq (2.4-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Thurs, 11 Mar 2004 07:59:55 +0000
dnsmasq (2.3-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Tues, 03 Feb 2004 20:33:10 +0000
dnsmasq (2.2-1) unstable; urgency=low
* New upstream. (fixes no DHCP with IPv6 problem)
* Restart (old) daemon on abort-upgrade. (closes: #230286)
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 30 Jan 2004 10:23:00 +0000
dnsmasq (2.1-1) unstable; urgency=low
* New upstream.
* Allow addresses in /etc/hosts to be used for
DHCP leases (closes: #229681)
* Fix lease time processing. (closes: #229682) (closes: #229687)
* Fix example conf file. (closes: #229683) (closes: #229701)
* Allow address 0.0.0.0 to mean "self" in dhcp-option. (closes: #229685)
* Cope with ENODEV return from bind of
IPv6 server socket (closes: #229607)
* Document the strict-order option in dnsmasq.conf (closes: #229272)
* Fix local-only domain setting. (closes: #229846)
* Updates Debian readme to mention resolvconf and point at the
local copy of RFC2132.
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 23 Jan 2004 14:38:29 +0000
dnsmasq (2.0-1) unstable; urgency=low
* New upstream: This removes the ability to read the
the leases file of ISC DHCP and replaces it with a built-in
DHCP server. Apologies in advance for breaking backwards
compatibility, but this replaces a bit of a hack (the ISC stuff)
with a nicely engineered and much more appropriate solution.
Wearing my upstream-maintainer hat, I want to lose the hack now,
rather than have to support it into Sarge.
* New upstream closes some bugs since they become
irrelevant. (closes: #197295)
* Ensure that /var/run and /var/lib/misc exist.
* Remove sed dependency, which was a mistake.
* Remove extraneous "build" file. (closes: #226994)
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 16 Jan 2004 19:35:49 +0000
dnsmasq (1.18-2) unstable; urgency=low
* Fixed manpage typo (closes: #220961)
* Added dependency for sed. (closes: #222401)
* Check for complete resolvconf installation before
calling it. (closes: #223442)
* Added Links section to doc.html
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 27 Dec 2003 20:21:15 +0000
dnsmasq (1.18-1) unstable; urgency=low
* New upstream which does round-robin. (closes: #215460)
* Removed conflicts with other dns servers since it is now
possible to control exactly where dnsmasq listens on multi-homed
hosts, making co-existence with another nameserver
a viable proposition. (closes #176163)
* New upstream allows _ in hostnames and check for illegal
names in /etc/hosts. (closes: #218842)
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 17 Oct 2003 16:23:14 +0000
dnsmasq (1.17-1) unstable; urgency=high
* New upstream (closes: #212680)
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 8 Oct 2003 14:38:29 +0000
dnsmasq (1.16-1) unstable; urgency=low
* New upstream.
* Renamed Debian README to the standard README.Debian. (closes: #211577)
* Updated the installed /etc/dnsmasq.conf to reflect new options.
-- Simon Kelley <simon@thekelleys.org.uk> Tues, 16 Sep 2003 23:18:59 +0000
dnsmasq (1.15-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Tues, 16 Sep 2003 21:48:49 +0000
dnsmasq (1.14-1) unstable; urgency=low
* New upstream.
* Use invoke-rc.d in postinst and prerm scripts when available.
* Stop dnsmasq later (at priority 85). (closes: #200625)
* Updated /etc/resolvconf/update.d/dnsmasq. (closes: #202609)
* Suggest resolvconf. (closes: #208093)
-- Simon Kelley <simon@thekelleys.org.uk> Tues, 2 Sep 2003 16:43:29 +0000
dnsmasq (1.13-4) unstable; urgency=high
* Ignore failures in stopping existing dnsmasq
processes. (closes: #204127) (closes: #204129)
* Added download source to copyright. (closes: #206647)
-- Simon Kelley <simon@thekelleys.org.uk> Tues, 2 Sep 2003 15:28:28 +0000
dnsmasq (1.13-3) unstable; urgency=low
* Moved /etc/resolvconf/update.d/dnsmasq script into this package.
* Don't call resolvconf from /etc/init.d/dnsmasq if dnsmasq fails
to start. (Patch from Thomas Hood.)
-- Simon Kelley <simon@thekelleys.org.uk> Mon, 7 Jul 2003 20:55:29 +0000
dnsmasq (1.13-2) unstable; urgency=low
* Added support for the resolvconf nameserver configuration package.
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 22 Jun 2003 20:30:19 +0000
dnsmasq (1.13-1) unstable; urgency=low
* New upstream.
* Added new options to the default dnsmasq.conf.
* Default config now reads /var/lib/dhcp/dhcp.leases (closes: #195185)
* Added option to disable negative caching. (closes: #194274)
* Added David Coe's query port patch. (closes: #196578)
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 31 May 2003 18:10:29 +0000
dnsmasq (1.12-1) unstable; urgency=low
* New upstream.
* Added examples of "local" and "address" options to dnsmasq.conf.
* Remove /usr/doc symlink code.
* Remove period from end of description field.
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 8 Mar 2003 12:16:09 +0000
dnsmasq (1.11-2) unstable; urgency=low
* Fixed thinko in example dnsmasq.conf. (closes: #180410)
-- Simon Kelley <simon@thekelleys.org.uk> Mon, 24 Feb 2003 20:06:19 +0000
dnsmasq (1.11-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Tues, 12 Jan 2003 22:25:17 -0100
dnsmasq (1.10-1) unstable; urgency=low
* New upstream.
* Force service to stop in postinst before restarting. I don't
understand the circumstances under which it would still be running at
this point, but this is the correct fix anyway. (closes: #169718)
* Add /etc/dnsmasq.conf as a conffile and add a comment to
/etc/default/dnsmasq deprecating its use and recommending
/etc/dnsmasq.conf instead, since upstream now supports this.
-- Simon Kelley <simon@thekelleys.org.uk> Mon, 9 Oct 2002 19:05:34 -0100
dnsmasq (1.9-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Mon, 23 Sept 2002 21:35:07 -0100
dnsmasq (1.8-1) unstable; urgency=low
* New upstream.
-- Simon Kelley <simon@thekelleys.org.uk> Mon, 12 Aug 2002 21:56:17 -0100
dnsmasq (1.7-1) unstable; urgency=low
* New upstream including better group-id manipulation. (closes: #152212)
* Conflict with bind9 (closes: #151812)
* Added more options to startup script. (closes: #148535)
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 14 July 2002 20:23:14 -0100
dnsmasq (1.6-1) unstable; urgency=low
* New upstream.
* Fixed documentation typos. (closes: #144637)
* Fixed failure to remove package if daemon not running. (closes: #147083)
* Changed upload to tarball-and-diff. (closes: #144638)
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 19 May 2002 22:30:17 -0100
dnsmasq (1.5-1) unstable; urgency=medium
* New upstream (includes hotmail.com fix).
* Fixed DHCP lease file bug. (closes: #143778)
* Fixed failure of "reload" command in startup script (closes: #141021)
* Allow more than one interface name in the DNSMASQ_INTERFACE variable.
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 14 Apr 2002 16:39:13 -0100
dnsmasq (1.4-2) unstable; urgency=low
* Fixed snafu in startup script (closes: #139760)
-- Simon Kelley <simon@thekelleys.org.uk> Sun, 24 Mar 2002 23:06:18 +0000
dnsmasq (1.4-1) unstable; urgency=low
* New upstream
-- Simon Kelley <simon@thekelleys.org.uk> Thurs, 7 Mar 2002 21:02:05 +0000
dnsmasq (1.3-1) unstable; urgency=low
* New upstream
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 15 Feb 2002 20:45:01 +0000
dnsmasq (1.2-4) unstable; urgency=low
* Updated standards-version.
* More aggressive strip of binaries.
* Added depends: netbase.
* distribution->unstable for upload.
* Updated readme.Debian since config in /etc/default/dnsmasq now.
* Updated readme.Debian to reflect fact that this package is official now!
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 15 Feb 2002 20:45:01 +0000
dnsmasq (1.2-3) stable; urgency=low
* Added Suggests: and Conflicts: fields to control file.
-- Simon Kelley <simon@thekelleys.org.uk> Thurs, 14 Feb 2002 20:33:47 +0000
dnsmasq (1.2-2) stable; urgency=low
* Many packaging fixes, to please lintian
* Added extended description.
* Fixed copyright file.
* Compressed everything in /usr/share/doc/dnsmasq.
* Added code to remove /usr/doc/dnsmasq to prerm script.
* Moved configuration from /etc/init.d/dnsmasq to /etc/default/dnsmasq
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 02 Feb 2002 18:54:37 +0000
dnsmasq (1.2-1) stable; urgency=low
* New upstream
* Added more options to startup script
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 20 Dec 2001 21:15:07 +0000
dnsmasq (1.1-2) stable; urgency=low
* New upstream
* Strip binary
* Moved manpage from section 1 to section 8
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 21 Oct 2001 17:32:04 -0100
dnsmasq (1.0-1) unstable; urgency=low
* New upstream
-- Simon Kelley <simon@thekelleys.org.uk> Sat, 10 Oct 2001 15:52:06 -0100
dnsmasq (0.996-1) unstable; urgency=low
* New upstream
-- Simon Kelley <simon@thkelleys.org.uk> Fri, 26 Oct 2001 10:32:06 -0100
dnsmasq (0.995-1) unstable; urgency=low
* New upstream
-- Simon Kelley <simon@thkelleys.org.uk> Tue, 09 Oct 2001 16:39:07 -0100
dnsmasq (0.994-1) unstable; urgency=low
* New upstream
-- Simon Kelley <simon@thkelleys.org.uk> Sat, 07 Oct 2001 15:45:04 -0100
dnsmasq (0.992-1) unstable; urgency=low
* New upstream
-- Simon Kelley <simon@thkelleys.org.uk> Fri, 31 Aug 2001 16:17:00 -0100
dnsmasq (0.98-1) unstable; urgency=low
* New upstream
-- Simon Kelley <simon@thkelleys.org.uk> Wed, 11 Jul 2001 11:31:00 -0100
dnsmasq (0.96-1) unstable; urgency=low
* Fixed thinko in cache code..
-- Simon Kelley <simon@thkelleys.org.uk> Sat, 07 Jul 2001 18:52:00 -0100
dnsmasq (0.95-1) unstable; urgency=low
* Initial Release.
-- Simon Kelley <simon@thkelleys.org.uk> Sat, 29 Aug 1998 20:27:27 -0400
|