diff options
author | 2022-02-09 11:26:02 -0800 | |
---|---|---|
committer | 2022-02-09 11:26:02 -0800 | |
commit | ace3dcb1a34ad710124e424247ed71200ba0abc1 (patch) | |
tree | a4c49527c078fd533a8b7f722c896ed8864f15e2 | |
parent | 4693f40990cd6fbd798962d6ac15d8aea9c8b737 (diff) | |
download | coredns-ace3dcb1a34ad710124e424247ed71200ba0abc1.tar.gz coredns-ace3dcb1a34ad710124e424247ed71200ba0abc1.tar.zst coredns-ace3dcb1a34ad710124e424247ed71200ba0abc1.zip |
Add inital 1.9.0 release note (#5145)v1.9.0
* Add inital 1.9.0 release note
Add inital 1.9.0 release note, will update later if there are
more items to add.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* Update notes/coredns-1.9.0.md
Co-authored-by: Chris O'Haver <cohaver@infoblox.com>
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* Update notes/coredns-1.9.0.md
Co-authored-by: Chris O'Haver <cohaver@infoblox.com>
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* Update notes/coredns-1.9.0.md
Co-authored-by: Chris O'Haver <cohaver@infoblox.com>
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* Update version string to 1.9.0
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
Co-authored-by: Chris O'Haver <cohaver@infoblox.com>
-rw-r--r-- | coremain/version.go | 2 | ||||
-rw-r--r-- | notes/coredns-1.9.0.md | 29 |
2 files changed, 30 insertions, 1 deletions
diff --git a/coremain/version.go b/coremain/version.go index b029b4ab8..047b8ecae 100644 --- a/coremain/version.go +++ b/coremain/version.go @@ -2,7 +2,7 @@ package coremain // Various CoreDNS constants. const ( - CoreVersion = "1.8.7" + CoreVersion = "1.9.0" coreName = "CoreDNS" serverType = "dns" ) diff --git a/notes/coredns-1.9.0.md b/notes/coredns-1.9.0.md new file mode 100644 index 000000000..353d81780 --- /dev/null +++ b/notes/coredns-1.9.0.md @@ -0,0 +1,29 @@ ++++ +title = "CoreDNS-1.9.0 Release" +description = "CoreDNS-1.9.0 Release Notes." +tags = ["Release", "1.9.0", "Notes"] +release = "1.9.0" +date = "2022-02-01T00:00:00+00:00" +author = "coredns" ++++ + +This is a release with bug fixes and some new features added. Starting with 1.9.0 +the minimal required go version will be 1.17. +Wildcard queries are no longer supported by the _kubernetes_ plugin. + + +## Brought to You By + +Chris O'Haver, +Ondřej Benkovský, +Tomas Hulata, +Yong Tang, +xuweiwei + +## Noteworthy Changes + +* plugin/kubernetes: remove wildcard query functionality (https://github.com/coredns/coredns/pull/5019) +* Health-checks should respect force_tcp (https://github.com/coredns/coredns/pull/5109) +```suggestion +* plugin/prometheus: Write rcode properly to the metrics (https://github.com/coredns/coredns/pull/5126) +* plugin/template: Persist truncated state to client if CNAME lookup response is truncated (https://github.com/coredns/coredns/pull/4713) |