Skip to content

Commit 4113622

Browse files
authored
release 1.0.3 (#21)
1 parent 7d820a9 commit 4113622

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

Diff for: download.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# originally copied from https://wasmtime.dev/install.sh with some modifications
44

5-
GETISTIO_LATEST_VERSION="1.0.2"
5+
GETISTIO_LATEST_VERSION="1.0.3"
66

77
if [[ -z "${GETISTIO_VERSION}" ]]; then
88
VERSION="${GETISTIO_LATEST_VERSION}"

Diff for: e2e/e2e_test.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ func update(t *testing.T) {
147147
cmd.Env = env
148148
require.NoError(t, cmd.Run(), buf.String())
149149
actual := buf.String()
150-
assert.Contains(t, actual, "getistio successfully updated from dev to 1.0.2!")
150+
assert.Contains(t, actual, "getistio successfully updated from dev to 1.0.3!")
151151
t.Log(actual)
152152
}
153153

@@ -203,8 +203,10 @@ func list(t *testing.T) {
203203

204204
exp := `ISTIO VERSION FLAVOR FLAVOR VERSION K8S VERSIONS
205205
*1.9.0 tetrate 0 1.17,1.18,1.19
206+
1.9.0 tetratefips 0 1.17,1.18,1.19
206207
1.9.0 istio 0 1.17,1.18,1.19
207208
1.8.3 tetrate 0 1.16,1.17,1.18
209+
1.8.3 tetratefips 0 1.16,1.17,1.18
208210
1.8.3 istio 0 1.16,1.17,1.18
209211
1.8.2 tetrate 0 1.16,1.17,1.18
210212
1.8.2 tetratefips 0 1.16,1.17,1.18

Diff for: manifest.json

+29
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"istio_minor_versions_eol_dates": {
3+
"1.9": "2022-04-08",
34
"1.8": "2022-01-18",
45
"1.7": "2021-10-20",
56
"1.6": "2020-11-21"
@@ -18,6 +19,20 @@
1819
"https://istio.io/latest/news/releases/1.9.x/announcing-1.9/"
1920
],
2021
"is_security_patch": false
22+
},
23+
{
24+
"version": "1.9.0",
25+
"flavor": "tetratefips",
26+
"flavor_version": 0,
27+
"k8s_versions": [
28+
"1.17",
29+
"1.18",
30+
"1.19"
31+
],
32+
"release_notes": [
33+
"https://istio.io/latest/news/releases/1.9.x/announcing-1.9/"
34+
],
35+
"is_security_patch": false
2136
},
2237
{
2338
"version": "1.9.0",
@@ -46,6 +61,20 @@
4661
"https://istio.io/latest/news/releases/1.8.x/announcing-1.8.3/"
4762
],
4863
"is_security_patch": false
64+
},
65+
{
66+
"version": "1.8.3",
67+
"flavor": "tetratefips",
68+
"flavor_version": 0,
69+
"k8s_versions": [
70+
"1.16",
71+
"1.17",
72+
"1.18"
73+
],
74+
"release_notes": [
75+
"https://istio.io/latest/news/releases/1.8.x/announcing-1.8.3/"
76+
],
77+
"is_security_patch": false
4978
},
5079
{
5180
"version": "1.8.3",

0 commit comments

Comments
 (0)