aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Chris O'Haver <cohaver@infoblox.com> 2023-08-15 15:30:32 -0400
committerGravatar GitHub <noreply@github.com> 2023-08-15 15:30:32 -0400
commitae2bbc29be1aaae0b3ded5d188968a6c97bb3144 (patch)
tree290b02bc50727ff3c646788a68a0c97acea4041b
parent678d0333af3398d1177a95ee750f61521c2e1d87 (diff)
downloadcoredns-ae2bbc29be1aaae0b3ded5d188968a6c97bb3144.tar.gz
coredns-ae2bbc29be1aaae0b3ded5d188968a6c97bb3144.tar.zst
coredns-ae2bbc29be1aaae0b3ded5d188968a6c97bb3144.zip
1.11.1 release: bump version + add notes (#6273)v1.11.1
* bump version; add notes Signed-off-by: Chris O'Haver <cohaver@infoblox.com> --------- Signed-off-by: Chris O'Haver <cohaver@infoblox.com>
-rw-r--r--Makefile.release1
-rw-r--r--coremain/version.go2
-rw-r--r--notes/coredns-1.11.1.md26
3 files changed, 28 insertions, 1 deletions
diff --git a/Makefile.release b/Makefile.release
index e89d14974..f28a8ddcd 100644
--- a/Makefile.release
+++ b/Makefile.release
@@ -7,6 +7,7 @@
# These are published on coredns.io. For example see: notes/coredns-1.5.1.md
# Use make -f Makefile.release notes to create a skeleton notes document.
#
+# For this to work properly you must fetch the tag of the previous release.
# Be sure to prune the PR list a bit, not everything is worthy!
#
# As seen in notes/coredns-1.5.1.md we want to style the notes in the following manner:
diff --git a/coremain/version.go b/coremain/version.go
index bce327dc6..a1f993d11 100644
--- a/coremain/version.go
+++ b/coremain/version.go
@@ -2,7 +2,7 @@ package coremain
// Various CoreDNS constants.
const (
- CoreVersion = "1.11.0"
+ CoreVersion = "1.11.1"
coreName = "CoreDNS"
serverType = "dns"
)
diff --git a/notes/coredns-1.11.1.md b/notes/coredns-1.11.1.md
new file mode 100644
index 000000000..47fbb7260
--- /dev/null
+++ b/notes/coredns-1.11.1.md
@@ -0,0 +1,26 @@
++++
+title = "CoreDNS-1.11.1 Release"
+description = "CoreDNS-1.11.1 Release Notes."
+tags = ["Release", "1.11.1", "Notes"]
+release = "1.11.1"
+date = "2023-08-15T00:00:00+00:00"
+author = "coredns"
++++
+
+This release fixes a major performance regression introduced in 1.11.0 that affected DoT (TLS) forwarded connections.
+It also adds a new option to _dnstap_ to add metadata to the dnstap extra field, and fixes a config parsing bug in _cache_.
+
+## Brought to You By
+
+Chris O'Haver,
+P. Radha Krishna,
+Yong Tang,
+Yuheng,
+Zhizhen He
+
+## Noteworthy Changes
+
+* Revert "plugin/forward: Continue waiting after receiving malformed responses (https://github.com/coredns/coredns/pull/6014)" (#6270)
+* plugin/dnstap: add support for "extra" field in payload (https://github.com/coredns/coredns/pull/6226)
+* plugin/cache: fix keepttl parsing (https://github.com/coredns/coredns/pull/6250)
+