Skip to content

Commit 0da0531

Browse files
committed
Update set of available CUE toolchain versions
Introduce version 0.12.0, establishing it as the new default.
1 parent ff49362 commit 0da0531

File tree

7 files changed

+24
-16
lines changed

7 files changed

+24
-16
lines changed

MODULE.bazel.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cue/private/tools/cue/toolchain.bzl

+9-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
visibility("public")
44

55
_TOOLS_BY_RELEASE = {
6+
"v0.12.0": {
7+
struct(os = "darwin", arch = "amd64"): "8474e522a978ecadef49b06d706ff276cd07629b1aa107b88adfc1284d3f93cc",
8+
struct(os = "darwin", arch = "arm64"): "7055a6423f753c8ea763699d48d78d341e8543397399daee281c66ecdc9ec5a5",
9+
struct(os = "linux", arch = "amd64"): "e55cd5abd98a592c110f87a7da9ef15bc72515200aecfe1bed04bf86311f5ba1",
10+
struct(os = "linux", arch = "arm64"): "488012bb0e5c080e2a9694ef8765403dd1075a4ec373dda618efa2d37b47f14f",
11+
struct(os = "windows", arch = "amd64"): "268bf95f4767b37d5db01450d55ca9d10e9a8bd8a1417c31dff456b5f9775abf",
12+
struct(os = "windows", arch = "arm64"): "91ad090eb86b0d21186d8de0a7b985d235b27e67cd464f7738663e457b042505",
13+
},
614
"v0.11.2": {
715
struct(os = "darwin", arch = "amd64"): "75023d1b98ce8a4398b9b652c093cd44aa5255976f162d099aca3dd68abf1d58",
816
struct(os = "darwin", arch = "arm64"): "7fde93169c13b830b3a9a9009cea8c564488b464f39f543f066498e4b844e84a",
@@ -45,7 +53,7 @@ _TOOLS_BY_RELEASE = {
4553
},
4654
}
4755

48-
_DEFAULT_TOOL_VERSION = "v0.11.2"
56+
_DEFAULT_TOOL_VERSION = "v0.12.0"
4957

5058
def known_release_versions():
5159
return _TOOLS_BY_RELEASE.keys()
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"mixed": true,
3-
"message": "Hallo, Welt!"
2+
"message": "Hallo, Welt!",
3+
"mixed": true
44
}
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"mixed": true,
3-
"message": "Hello, world!"
2+
"message": "Hello, world!",
3+
"mixed": true
44
}

test/testdata/myservice/environments/dev-golden.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2+
"apiVersion": "extensions/v1beta1",
3+
"kind": "Deployment",
24
"metadata": {
35
"name": "myservice",
46
"namespace": "myservice",
@@ -68,7 +70,5 @@
6870
"strategy": {
6971
"type": "Recreate"
7072
}
71-
},
72-
"kind": "Deployment",
73-
"apiVersion": "extensions/v1beta1"
73+
}
7474
}

test/testdata/myservice/environments/prod-golden.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2+
"apiVersion": "extensions/v1beta1",
3+
"kind": "Deployment",
24
"metadata": {
35
"name": "myservice",
46
"namespace": "myservice",
@@ -68,7 +70,5 @@
6870
"strategy": {
6971
"type": "Recreate"
7072
}
71-
},
72-
"kind": "Deployment",
73-
"apiVersion": "extensions/v1beta1"
73+
}
7474
}
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"raw.txt": "Hello!",
32
"a": 1,
4-
"b": 2
3+
"b": 2,
4+
"raw.txt": "Hello!"
55
}

0 commit comments

Comments
 (0)