From 04f4560c4bd7fa8e8508dcc5556e7912ddbb07f8 Mon Sep 17 00:00:00 2001 From: yashsingh74 Date: Mon, 13 Jul 2026 20:23:24 +0530 Subject: [PATCH] support coredns v1.14.6 Signed-off-by: yashsingh74 --- corefile-tool/cmd/validversions_test.go | 2 +- migration/versions.go | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/corefile-tool/cmd/validversions_test.go b/corefile-tool/cmd/validversions_test.go index d1592f5..05826ad 100644 --- a/corefile-tool/cmd/validversions_test.go +++ b/corefile-tool/cmd/validversions_test.go @@ -15,7 +15,7 @@ func TestNewValidVersionsCmd(t *testing.T) { { name: "Works without error", expectedOutput: `The following are valid CoreDNS versions: -1.1.3, 1.1.4, 1.2.0, 1.2.1, 1.2.2, 1.2.3, 1.2.4, 1.2.5, 1.2.6, 1.3.0, 1.3.1, 1.4.0, 1.5.0, 1.5.1, 1.5.2, 1.6.0, 1.6.1, 1.6.2, 1.6.3, 1.6.4, 1.6.5, 1.6.6, 1.6.7, 1.6.9, 1.7.0, 1.7.1, 1.8.0, 1.8.3, 1.8.4, 1.8.5, 1.8.6, 1.8.7, 1.9.0, 1.9.1, 1.9.2, 1.9.3, 1.9.4, 1.10.0, 1.10.1, 1.11.0, 1.11.1, 1.11.3, 1.11.4, 1.12.0, 1.12.1, 1.12.2, 1.12.3, 1.12.4. 1.13.0, 1.13.1, 1.13.2, 1.14.0, 1.14.1, 1.14.2, 1.14.3, 1.14.4 +1.1.3, 1.1.4, 1.2.0, 1.2.1, 1.2.2, 1.2.3, 1.2.4, 1.2.5, 1.2.6, 1.3.0, 1.3.1, 1.4.0, 1.5.0, 1.5.1, 1.5.2, 1.6.0, 1.6.1, 1.6.2, 1.6.3, 1.6.4, 1.6.5, 1.6.6, 1.6.7, 1.6.9, 1.7.0, 1.7.1, 1.8.0, 1.8.3, 1.8.4, 1.8.5, 1.8.6, 1.8.7, 1.9.0, 1.9.1, 1.9.2, 1.9.3, 1.9.4, 1.10.0, 1.10.1, 1.11.0, 1.11.1, 1.11.3, 1.11.4, 1.12.0, 1.12.1, 1.12.2, 1.12.3, 1.12.4. 1.13.0, 1.13.1, 1.13.2, 1.14.0, 1.14.1, 1.14.2, 1.14.3, 1.14.4, 1.14.6 `, expectedError: false, }, diff --git a/migration/versions.go b/migration/versions.go index 5e18f5a..f59ea65 100644 --- a/migration/versions.go +++ b/migration/versions.go @@ -30,7 +30,13 @@ type release struct { // Versions holds a map of plugin/option migrations per CoreDNS release (since 1.1.4) var Versions = map[string]release{ + "1.14.6": { + priorVersion: "1.14.4", + dockerImageSHA: "900f9c109f7a33545d3c811516e8376df9019147b750f5ce3e254468769176ea", + plugins: plugins_1_14_0, + }, "1.14.4": { + nextVersion: "1.14.6", priorVersion: "1.14.3", dockerImageSHA: "3e98f280fd601b37411c5fb7075fd9f337833c480f1644970b727ae0af067782", plugins: plugins_1_14_0,