]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
dnsdist: Add ChangeLog and update secpoll for 1.9.0-alpha1
authorRemi Gacogne <remi.gacogne@powerdns.com>
Fri, 15 Sep 2023 12:02:25 +0000 (14:02 +0200)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Fri, 15 Sep 2023 12:05:52 +0000 (14:05 +0200)
docs/secpoll.zone
pdns/dnsdistdist/docs/changelog.rst
pdns/dnsdistdist/docs/upgrade_guide.rst

index 49b741c2ea175417bb993fe3e28b73a0c412de5e..07ae7eac50d0b521868e799c6b3a396ac172e04a 100644 (file)
@@ -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)"
index 6801e82cb8376fcfb4e9a4680fac68db633cbbcd..c5c61708db69b396767a4454e893ac7d5d41cc61 100644 (file)
@@ -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
index 575dd56faeaa6b00f213b8aa791fee00218b78b2..9efab181f360a57051a2c2a8f88f409873298f93 100644 (file)
@@ -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
 --------------