]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Add recursor 4.1.2 changelog (#6389)
authorPieter Lexis <pieterlexis@users.noreply.github.com>
Thu, 29 Mar 2018 14:10:34 +0000 (16:10 +0200)
committeraerique <aerique@xs4all.nl>
Thu, 29 Mar 2018 14:10:34 +0000 (16:10 +0200)
* Add recursor 4.1.2 changelog
* secpoll: add recursor 4.1.2

docs/secpoll.zone
pdns/recursordist/docs/changelog/4.1.rst
pdns/recursordist/docs/http-api/endpoint-rpz-stats.rst

index 3428098b523213c54018fa79294c4247fda9c7db..16b536f014b863b1dad78b75a553e906a8847344 100644 (file)
@@ -1,4 +1,4 @@
-@       86400   IN  SOA pdns-public-ns1.powerdns.com. pieter\.lexis.powerdns.com. 2018031401 10800 3600 604800 10800
+@       86400   IN  SOA pdns-public-ns1.powerdns.com. pieter\.lexis.powerdns.com. 2018032901 10800 3600 604800 10800
 @       3600    IN  NS  pdns-public-ns1.powerdns.com.
 @       3600    IN  NS  pdns-public-ns2.powerdns.com.
 ; Auth
@@ -153,6 +153,7 @@ recursor-4.1.0-rc2.security-status                      60 IN TXT "3 Unsupported
 recursor-4.1.0-rc3.security-status                      60 IN TXT "3 Unsupported pre-release (final release is out)"
 recursor-4.1.0.security-status                          60 IN TXT "3 Upgrade now, see https://doc.powerdns.com/recursor/security-advisories/powerdns-advisory-2018-01.html"
 recursor-4.1.1.security-status                          60 IN TXT "1 OK"
+recursor-4.1.2.security-status                          60 IN TXT "1 OK"
 
 ; Recursor Debian
 recursor-3.6.2-2.debian.security-status                 60 IN TXT "3 Upgrade now, see https://doc.powerdns.com/3/security/powerdns-advisory-2015-01/ and https://doc.powerdns.com/3/security/powerdns-advisory-2016-02/"
index 4eb33687ad060b82cf1849e353029a9ab7e8a7c3..ea225a42bf9565a183ccd658b183403347ebc6e1 100644 (file)
@@ -1,6 +1,57 @@
 Changelogs for 4.1.x
 ====================
 
+.. changelog::
+  :version: 4.1.2
+  :released: 29th of March 2018
+
+  This release improves the stability and resiliency of the RPZ implementation and fixes several issues related to EDNS Client Subnet.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 6298, 6303, 6290, 6268
+
+    Add the option to set the AXFR timeout for RPZs.
+
+  .. change::
+    :tags: Bug Fixes
+    :pullreq: 6336, 6237, 6293
+    :tickets: 6238
+
+    Retry loading RPZ zones from server when they fail initially.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 6172
+
+    IXFR: correct behavior of dealing with DNS Name with multiple records and speed up IXFR transaction (Leon Xu).
+
+  .. change::
+    :tags: Bug Fixes
+    :pullreq: 6300
+
+    Fix ECS-based cache entry refresh code.
+
+  .. change::
+    :tags: Bug Fixes
+    :pullreq: 6320
+    :tickets: 6319
+
+    Fix ECS-specific NS AAAA not being returned from the cache.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 6379
+    :tickets: 6225
+
+    Add :doc:`RPZ statistics endpoint <../http-api/endpoint-rpz-stats>` to the :doc:`API <../http-api/index>`.
+
+  .. change::
+    :tags: New Features
+    :pullreq: 6344
+
+    Add FFI version of :func:`gettag`.
+
 .. changelog::
   :version: 4.1.1
   :released: 22nd of January 2018
index 1e1924e6ad38aec47614c670b6ee1adb81374b8c..307485c56d6bad9a4882fbfaea7099548d9c977f 100644 (file)
@@ -21,14 +21,14 @@ RPZ Statistics endpoint
 
   .. code-block:: json
 
-  {
-    "myRPZ": {
-      "last_update": 1521798212,
-      "records": 1343149,
-      "serial": 5489,
-      "transfers_failed": 0,
-      "transfers_full": 3,
-      "transfers_success": 478
+    {
+      "myRPZ": {
+        "last_update": 1521798212,
+        "records": 1343149,
+        "serial": 5489,
+        "transfers_failed": 0,
+        "transfers_full": 3,
+        "transfers_success": 478
+      }
     }
-  }