aboutsummaryrefslogtreecommitdiff
path: root/notes
diff options
context:
space:
mode:
authorGravatar Miek Gieben <miek@miek.nl> 2019-10-13 17:37:24 +0100
committerGravatar Yong Tang <yong.tang.github@outlook.com> 2019-10-14 01:37:24 +0900
commit62f7e0784f65236d0f510e5212fba0e2615c015b (patch)
treeb1d556c6023115487bd86dd1ff40930692ac82ae /notes
parent1820c71f28b3f0f26d97eef1dba41ff40dcaf15b (diff)
downloadcoredns-62f7e0784f65236d0f510e5212fba0e2615c015b.tar.gz
coredns-62f7e0784f65236d0f510e5212fba0e2615c015b.tar.zst
coredns-62f7e0784f65236d0f510e5212fba0e2615c015b.zip
Add release notes for 1.6.5 (#3373)
Signed-off-by: Miek Gieben <miek@miek.nl>
Diffstat (limited to 'notes')
-rw-r--r--notes/coredns-1.6.5.md44
1 files changed, 44 insertions, 0 deletions
diff --git a/notes/coredns-1.6.5.md b/notes/coredns-1.6.5.md
new file mode 100644
index 000000000..479befc71
--- /dev/null
+++ b/notes/coredns-1.6.5.md
@@ -0,0 +1,44 @@
++++
+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
+author = "coredns"
++++
+
+The CoreDNS team has released
+[CoreDNS-1.6.5](https://github.com/coredns/coredns/releases/tag/v1.6.5).
+
+A fairly small release that polishes various plugins and fixes a bunch of bugs.
+
+# Plugins
+
+* [*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 .
+* [*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
+
+## Brought to You By
+
+Erfan Besharat,
+Hauke Löffler,
+Ingo Gottwald,
+janluk,
+Miek Gieben,
+Uladzimir Trehubenka,
+Yong Tang,
+yuxiaobo96.
+
+## Noteworthy Changes
+
+* core: Make request.Request smaller (https://github.com/coredns/coredns/pull/3351)
+* 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)
+* plugin/file: fix panic in miekg/dns.CompareDomainName() (https://github.com/coredns/coredns/pull/3337)
+* 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)