From: Remi Gacogne Date: Fri, 15 Sep 2023 12:02:25 +0000 (+0200) Subject: dnsdist: Add ChangeLog and update secpoll for 1.9.0-alpha1 X-Git-Tag: rec-5.0.0-alpha2~64^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=75cbd47beade8b16736f0d191c6e93b3aec96cb7;p=thirdparty%2Fpdns.git dnsdist: Add ChangeLog and update secpoll for 1.9.0-alpha1 --- diff --git a/docs/secpoll.zone b/docs/secpoll.zone index 49b741c2ea..07ae7eac50 100644 --- a/docs/secpoll.zone +++ b/docs/secpoll.zone @@ -1,4 +1,4 @@ -@ 86400 IN SOA pdns-public-ns1.powerdns.com. peter\.van\.dijk.powerdns.com. 2023091300 10800 3600 604800 10800 +@ 86400 IN SOA pdns-public-ns1.powerdns.com. peter\.van\.dijk.powerdns.com. 2023091801 10800 3600 604800 10800 @ 3600 IN NS pdns-public-ns1.powerdns.com. @ 3600 IN NS pdns-public-ns2.powerdns.com. @@ -516,3 +516,4 @@ dnsdist-1.8.0-rc2.security-status 60 IN TXT "2 Unsuppor dnsdist-1.8.0-rc3.security-status 60 IN TXT "2 Unsupported pre-release (no known vulnerabilities)" dnsdist-1.8.0.security-status 60 IN TXT "1 OK" dnsdist-1.8.1.security-status 60 IN TXT "1 OK" +dnsdist-1.9.0-alpha1.security-status 60 IN TXT "3 Unsupported pre-release (no known vulnerabilities)" diff --git a/pdns/dnsdistdist/docs/changelog.rst b/pdns/dnsdistdist/docs/changelog.rst index 6801e82cb8..c5c61708db 100644 --- a/pdns/dnsdistdist/docs/changelog.rst +++ b/pdns/dnsdistdist/docs/changelog.rst @@ -1,6 +1,67 @@ Changelog ========= +.. changelog:: + :version: 1.9.0-alpha1 + :released: 18th of September 2023 + + Please review the :doc:`Upgrade Guide <../upgrade_guide>` before upgrading. + + .. change:: + :tags: Improvements, DNS over HTTPS + :pullreq: 12678 + + Add support for incoming DoH via nghttp2 + + .. change:: + :tags: Improvements + :pullreq: 13145 + + Fix building our fuzzing targets from a dist tarball + + .. change:: + :tags: Removals + :pullreq: 13168 + + Change the default for building with net-snmp from `auto` to `no` + + .. change:: + :tags: Improvements + :pullreq: 13135 + + Add a DNSHeader:getTC() Lua binding + + .. change:: + :tags: New Features + :pullreq: 13013 + :tickets: 13007 + + Add Lua bindings to access selector and action + + .. change:: + :tags: Improvements + :pullreq: 13088 + + Stop passing -u dnsdist -g dnsdist on systemd's ExecStart + + .. change:: + :tags: Improvements, Metrics + :pullreq: 13009 + + Add metrics for health-check failures + + .. change:: + :tags: Improvements + :pullreq: 12931 + + Use arc4random only for random values + + .. change:: + :tags: New Features + :pullreq: 12689 + + Add an option to write `grepq`'s output to a file + .. changelog:: :version: 1.8.1 :released: 8th of September 2023 diff --git a/pdns/dnsdistdist/docs/upgrade_guide.rst b/pdns/dnsdistdist/docs/upgrade_guide.rst index 575dd56fae..9efab181f3 100644 --- a/pdns/dnsdistdist/docs/upgrade_guide.rst +++ b/pdns/dnsdistdist/docs/upgrade_guide.rst @@ -11,6 +11,8 @@ the library used when dnsdist is built with support for both ``h2o`` and ``nghtt Note that ``nghttp2`` only supports HTTP/2, and not HTTP/1, while ``h2o`` supported both. This is not an issue for actual DNS over HTTPS clients that support HTTP/2, but might be one in setups running dnsdist behind a reverse-proxy that does not support HTTP/1. See :doc:`guides/dns-over-https` for some work-around. +SNMP support is no longer enabled by default during ``configure``, requiring ``--with-net-snmp`` to be built. + 1.7.x to 1.8.0 --------------