From: Pieter Lexis Date: Thu, 29 Mar 2018 14:10:34 +0000 (+0200) Subject: Add recursor 4.1.2 changelog (#6389) X-Git-Tag: dnsdist-1.3.0~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2bd1c9e71bf3b15506fb7bdb71f5b1db1c79bbe9;p=thirdparty%2Fpdns.git Add recursor 4.1.2 changelog (#6389) * Add recursor 4.1.2 changelog * secpoll: add recursor 4.1.2 --- diff --git a/docs/secpoll.zone b/docs/secpoll.zone index 3428098b52..16b536f014 100644 --- a/docs/secpoll.zone +++ b/docs/secpoll.zone @@ -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/" diff --git a/pdns/recursordist/docs/changelog/4.1.rst b/pdns/recursordist/docs/changelog/4.1.rst index 4eb33687ad..ea225a42bf 100644 --- a/pdns/recursordist/docs/changelog/4.1.rst +++ b/pdns/recursordist/docs/changelog/4.1.rst @@ -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 diff --git a/pdns/recursordist/docs/http-api/endpoint-rpz-stats.rst b/pdns/recursordist/docs/http-api/endpoint-rpz-stats.rst index 1e1924e6ad..307485c56d 100644 --- a/pdns/recursordist/docs/http-api/endpoint-rpz-stats.rst +++ b/pdns/recursordist/docs/http-api/endpoint-rpz-stats.rst @@ -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 + } } - }