aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Yong Tang <yong.tang.github@outlook.com> 2022-03-11 09:30:37 -0800
committerGravatar GitHub <noreply@github.com> 2022-03-11 09:30:37 -0800
commit4b597f8308d8d7cecb538e9831d77117da68c04e (patch)
treeae2a234fee2d4079cbb5c01fbb20b4e2f238275a
parent83f7e0db309d9ee3ca03bd67081565c7636595df (diff)
downloadcoredns-4b597f8308d8d7cecb538e9831d77117da68c04e.tar.gz
coredns-4b597f8308d8d7cecb538e9831d77117da68c04e.tar.zst
coredns-4b597f8308d8d7cecb538e9831d77117da68c04e.zip
Bump version to 1.9.1, and add release notes (#5247)v1.9.1
This PR bumps coredns to 1.9.1 and add release notes. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
-rw-r--r--coremain/version.go2
-rw-r--r--notes/coredns-1.9.1.md38
2 files changed, 39 insertions, 1 deletions
diff --git a/coremain/version.go b/coremain/version.go
index 047b8ecae..0b7119917 100644
--- a/coremain/version.go
+++ b/coremain/version.go
@@ -2,7 +2,7 @@ package coremain
// Various CoreDNS constants.
const (
- CoreVersion = "1.9.0"
+ CoreVersion = "1.9.1"
coreName = "CoreDNS"
serverType = "dns"
)
diff --git a/notes/coredns-1.9.1.md b/notes/coredns-1.9.1.md
new file mode 100644
index 000000000..791285727
--- /dev/null
+++ b/notes/coredns-1.9.1.md
@@ -0,0 +1,38 @@
++++
+title = "CoreDNS-1.9.1 Release"
+description = "CoreDNS-1.9.1 Release Notes."
+tags = ["Release", "1.9.1", "Notes"]
+release = "1.9.1"
+date = "2022-03-09T00:00:00+00:00"
+author = "coredns"
++++
+
+This is a release with security and bug fixes and some new features added. 1.9.1 is also built
+with golang 1.17.8 that addressed several golang 1.17.6 vulnerabilities (CVE-2022-23772,
+CVE-2022-23773, CVE-2022-23806).
+Note golang 1.17.6 was used to built coredns 1.9.0.
+
+## Brought to You By
+
+Chris O'Haver,
+Elijah Andrews,
+Rudolf Schönecker,
+Yong Tang,
+nathannaveen,
+xuweiwei
+
+## Noteworthy Changes
+
+* plugin/autopath: Don't panic on empty token (https://github.com/coredns/coredns/pull/5169)
+* plugin/cache: Add zones label to cache metrics (https://github.com/coredns/coredns/pull/5124)
+* plugin/file: Add TXT test case (https://github.com/coredns/coredns/pull/5079)
+* plugin/forward: Don't panic when from-zone cannot be normalized (https://github.com/coredns/coredns/pull/5170)
+* plugin/grpc: Fix healthy proxy error case (https://github.com/coredns/coredns/pull/5168)
+* plugin/grpc: Don't panic when from-zone cannot be normalized (https://github.com/coredns/coredns/pull/5171)
+* plugin/k8s_external: Implement zone transfers (https://github.com/coredns/coredns/pull/4977)
+* plugin/k8s_external: Fix external nsAddrs when CoreDNS Service has no External IPs (https://github.com/coredns/coredns/pull/4891)
+* plugin/kubernetes: Log api connection failures and server start delay (https://github.com/coredns/coredns/pull/5044)
+* plugin/log: Expand `{combined}` and `{common}` in log format (https://github.com/coredns/coredns/pull/5230)
+* plugin/metrics: Add metric counting DNS-over-HTTPS responses (https://github.com/coredns/coredns/pull/5130)
+* plugin/reload: Change hash from md5 to sha512 (https://github.com/coredns/coredns/pull/5226)
+* plugin/secondary: Fix startup transfer failure wrong zone logged (https://github.com/coredns/coredns/pull/5085)