diff options
author | 2022-05-27 08:39:59 -0700 | |
---|---|---|
committer | 2022-05-27 08:39:59 -0700 | |
commit | 45b0a11294c59bfd806a57807aaa2a185f761cd5 (patch) | |
tree | 3bc8df4df026d14b97d8d00edef1b9b192a4eea3 | |
parent | bd4675b983b6e3250a415ff5f0e6cce070ce8dfb (diff) | |
download | coredns-45b0a11294c59bfd806a57807aaa2a185f761cd5.tar.gz coredns-45b0a11294c59bfd806a57807aaa2a185f761cd5.tar.zst coredns-45b0a11294c59bfd806a57807aaa2a185f761cd5.zip |
Update version and release note to 1.9.3 (#5411)v1.9.3
* Update version and release note to 1.9.3
This PR update version and release note to prepare for 1.9.3.
Main reason is to address CVE-2022-27191 and CVE-2022-28948
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* Update notes/coredns-1.9.3.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.3.md
Co-authored-by: Chris O'Haver <cohaver@infoblox.com>
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.3.md | 31 |
2 files changed, 32 insertions, 1 deletions
diff --git a/coremain/version.go b/coremain/version.go index 3740ff1ef..89588ff5f 100644 --- a/coremain/version.go +++ b/coremain/version.go @@ -2,7 +2,7 @@ package coremain // Various CoreDNS constants. const ( - CoreVersion = "1.9.2" + CoreVersion = "1.9.3" coreName = "CoreDNS" serverType = "dns" ) diff --git a/notes/coredns-1.9.3.md b/notes/coredns-1.9.3.md new file mode 100644 index 000000000..260153276 --- /dev/null +++ b/notes/coredns-1.9.3.md @@ -0,0 +1,31 @@ ++++ +title = "CoreDNS-1.9.3 Release" +description = "CoreDNS-1.9.3 Release Notes." +tags = ["Release", "1.9.3", "Notes"] +release = "1.9.3" +date = "2022-05-27T00:00:00+00:00" +author = "coredns" ++++ + +This is a release with a focus on security (CVE-2022-27191 and CVE-2022-28948) fixes. Additionally, +several feature enhancements and bug fixes have been added. + +## Brought to You By + +Chris O'Haver, +lobshunter, +Naveen, +Radim Hatlapatka, +RetoHaslerMGB, +Tintin, +Yong Tang + + +## Noteworthy Changes + +* core: update gopkg.in/yaml.v3 to fix CVE-2022-28948 (https://github.com/coredns/coredns/pull/5408) +* core: update golang.org/x/crypto to fix CVE-2022-27191 (https://github.com/coredns/coredns/pull/5407) +* plugin/acl: adding a check to parse out zone info (https://github.com/coredns/coredns/pull/5387) +* plugin/dnstap: support FQDN TCP endpoint (https://github.com/coredns/coredns/pull/5377) +* plugin/errors: add `stacktrace` option to log a stacktrace during panic recovery (https://github.com/coredns/coredns/pull/5392) +* plugin/template: return SERVFAIL for zone-match regex-no-match case (https://github.com/coredns/coredns/pull/5180) |