aboutsummaryrefslogtreecommitdiff
path: root/notes
diff options
context:
space:
mode:
authorGravatar Miek Gieben <miek@miek.nl> 2019-11-05 11:18:02 +0000
committerGravatar GitHub <noreply@github.com> 2019-11-05 11:18:02 +0000
commita214161bc3bdb7b3f805c11d6ffe1fe27c613b3e (patch)
tree8c52fb7ede3bc1ed7f2c5b50b15ee251ca1f93ca /notes
parent86680793dc1f412bb51bf5b220508050ec2f1192 (diff)
downloadcoredns-a214161bc3bdb7b3f805c11d6ffe1fe27c613b3e.tar.gz
coredns-a214161bc3bdb7b3f805c11d6ffe1fe27c613b3e.tar.zst
coredns-a214161bc3bdb7b3f805c11d6ffe1fe27c613b3e.zip
Update the notes for the 1.6.5 release. (#3424)
* Update the notes for the 1.6.5 release. Signed-off-by: Miek Gieben <miek@miek.nl> * manpages: regenerate Signed-off-by: Miek Gieben <miek@miek.nl> * Fix date Signed-off-by: Miek Gieben <miek@miek.nl> * Go gen/go build Signed-off-by: Miek Gieben <miek@miek.nl>
Diffstat (limited to 'notes')
-rw-r--r--notes/coredns-1.6.5.md16
1 files changed, 12 insertions, 4 deletions
diff --git a/notes/coredns-1.6.5.md b/notes/coredns-1.6.5.md
index 479befc71..bb426a99c 100644
--- a/notes/coredns-1.6.5.md
+++ b/notes/coredns-1.6.5.md
@@ -3,7 +3,7 @@ title = "CoreDNS-1.6.5 Release"
description = "CoreDNS-1.6.5 Release Notes."
tags = ["Release", "1.6.5", "Notes"]
release = "1.6.5"
-date = 2019-10-13T10:00:00+00:00
+date = 2019-11-06T10:00:00+00:00
author = "coredns"
+++
@@ -14,14 +14,19 @@ A fairly small release that polishes various plugins and fixes a bunch of bugs.
# Plugins
+A new plugin [*transfer*](/plugins/transfer) that encapsulates the zone transfer knowledge and code
+in one place. This makes it easier to add this functionality to new plugins. Plugins that already
+implement zone transfers are expected to move to it in the 1.7.0 release.
+
* [*forward*](/plugins/forward) don't block on returning sockets; instead timeout and drop the
- socket on the floor, this makes each go-routine guarantee to exit .
+ socket on the floor, this makes each go-routine guarantee to exit.
* [*kubernetes*](/plugins/kubernetes) adds metrics to measure kubernetes control plane latency, see
documentation for details.
-* [*file*](/plugins/file) fixes a panic when comparing domains names
+* [*file*](/plugins/file) fixes a panic when comparing domains names.
## Brought to You By
+Chris O'Haver,
Erfan Besharat,
Hauke Löffler,
Ingo Gottwald,
@@ -34,6 +39,7 @@ yuxiaobo96.
## Noteworthy Changes
* core: Make request.Request smaller (https://github.com/coredns/coredns/pull/3351)
+* pkg/log: Add Clear to stop debug logging (https://github.com/coredns/coredns/pull/3372)
* plugin/cache: move goroutine closure to separate function to save memory (https://github.com/coredns/coredns/pull/3353)
* plugin/clouddns: remove initialization from init (https://github.com/coredns/coredns/pull/3349)
* plugin/erratic: doc and zone transfer (https://github.com/coredns/coredns/pull/3340)
@@ -41,4 +47,6 @@ yuxiaobo96.
* plugin/forward: make Yield not block (https://github.com/coredns/coredns/pull/3336)
* plugin/forward: Move map to array (https://github.com/coredns/coredns/pull/3339)
* plugin/kubernetes: Measure and expose DNS programming latency from Kubernetes plugin. (https://github.com/coredns/coredns/pull/3171)
-* plugin/route53: remove amazon intialization from init (https://github.com/coredns/coredns/pull/3348)
+* plugin/route53: Remove amazon initialization from init (https://github.com/coredns/coredns/pull/3348)
+* plugin/transfer: Zone transfer plugin (https://github.com/coredns/coredns/pull/3223)
+* plugins: Add MustNormalize (https://github.com/coredns/coredns/pull/3385)