Skip to content

Commit 74cf170

Browse files
authored
support v1.9.4/v1.10.0 (#72)
Signed-off-by: Paco Xu <[email protected]> Signed-off-by: Paco Xu <[email protected]>
1 parent add2480 commit 74cf170

File tree

2 files changed

+33
-19
lines changed

2 files changed

+33
-19
lines changed

corefile-tool/cmd/validversions_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ func TestNewValidVersionsCmd(t *testing.T) {
1515
{
1616
name: "Works without error",
1717
expectedOutput: `The following are valid CoreDNS versions:
18-
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
18+
1.1.3, 1.1.4, 1.10.0, 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
1919
`,
2020
expectedError: false,
2121
},

migration/versions.go

+32-18
Original file line numberDiff line numberDiff line change
@@ -30,27 +30,22 @@ type release struct {
3030

3131
// Versions holds a map of plugin/option migrations per CoreDNS release (since 1.1.4)
3232
var Versions = map[string]release{
33+
"1.10.0": {
34+
priorVersion: "1.9.4",
35+
dockerImageSHA: "017727efcfeb7d053af68e51436ce8e65edbc6ca573720afb4f79c8594036955",
36+
plugins: plugins_1_9_3,
37+
},
38+
"1.9.4": {
39+
nextVersion: "1.10.0",
40+
priorVersion: "1.9.3",
41+
dockerImageSHA: "b82e294de6be763f73ae71266c8f5466e7e03c69f3a1de96efd570284d35bb18",
42+
plugins: plugins_1_9_3,
43+
},
3344
"1.9.3": {
45+
nextVersion: "1.9.4",
3446
priorVersion: "1.9.2",
3547
dockerImageSHA: "8e352a029d304ca7431c6507b56800636c321cb52289686a581ab70aaa8a2e2a",
36-
plugins: map[string]plugin{
37-
"errors": plugins["errors"]["v3"], // stacktrace option added
38-
"log": plugins["log"]["v1"],
39-
"health": plugins["health"]["v1"],
40-
"ready": {},
41-
"autopath": {},
42-
"kubernetes": plugins["kubernetes"]["v8"],
43-
"k8s_external": plugins["k8s_external"]["v1"],
44-
"prometheus": {},
45-
"forward": plugins["forward"]["v3"],
46-
"cache": plugins["cache"]["v1"],
47-
"loop": {},
48-
"reload": {},
49-
"loadbalance": {},
50-
"hosts": plugins["hosts"]["v1"],
51-
"rewrite": plugins["rewrite"]["v2"],
52-
"transfer": plugins["transfer"]["v1"],
53-
},
48+
plugins: plugins_1_9_3,
5449
},
5550
"1.9.2": {
5651
nextVersion: "1.9.3",
@@ -744,6 +739,25 @@ var Versions = map[string]release{
744739
}`},
745740
}
746741

742+
var plugins_1_9_3 = map[string]plugin{
743+
"errors": plugins["errors"]["v3"], // stacktrace option added
744+
"log": plugins["log"]["v1"],
745+
"health": plugins["health"]["v1"],
746+
"ready": {},
747+
"autopath": {},
748+
"kubernetes": plugins["kubernetes"]["v8"],
749+
"k8s_external": plugins["k8s_external"]["v1"],
750+
"prometheus": {},
751+
"forward": plugins["forward"]["v3"],
752+
"cache": plugins["cache"]["v1"],
753+
"loop": {},
754+
"reload": {},
755+
"loadbalance": {},
756+
"hosts": plugins["hosts"]["v1"],
757+
"rewrite": plugins["rewrite"]["v2"],
758+
"transfer": plugins["transfer"]["v1"],
759+
}
760+
747761
var plugins_1_8_3 = map[string]plugin{
748762
"errors": plugins["errors"]["v2"],
749763
"log": plugins["log"]["v1"],

0 commit comments

Comments
 (0)