Skip to content

Commit c999d8a

Browse files
author
Eric Van Norman
authored
Run update_deps.sh (istio#35988)
1 parent 22d6e55 commit c999d8a

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ require (
9292
helm.sh/helm/v3 v3.7.1
9393
istio.io/api v0.0.0-20211109180353-f95d1b5eefe7
9494
istio.io/client-go v1.12.0-beta.1.0.20211109181255-c2b1da6e5c85
95-
istio.io/gogo-genproto v0.0.0-20211029153105-ea58b596b74f
96-
istio.io/pkg v0.0.0-20211029152315-2022c99775d0
95+
istio.io/gogo-genproto v0.0.0-20211108225733-10509e34857e
96+
istio.io/pkg v0.0.0-20211108225623-3579c5facd7b
9797
k8s.io/api v0.22.2
9898
k8s.io/apiextensions-apiserver v0.22.2
9999
k8s.io/apimachinery v0.22.2

go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -1911,10 +1911,10 @@ istio.io/api v0.0.0-20211109180353-f95d1b5eefe7/go.mod h1:lavaUNsnT7RGyMFNOGgV5X
19111911
istio.io/client-go v1.12.0-beta.1.0.20211109181255-c2b1da6e5c85 h1:4YChMbiRT5YI2mA3tvbpGc7AuGSfLi3FCfS+bJzzmlA=
19121912
istio.io/client-go v1.12.0-beta.1.0.20211109181255-c2b1da6e5c85/go.mod h1:xR7jCyuNhVu7Lduz3eAaJAAEk49n0aX/o3zq/opTAc8=
19131913
istio.io/gogo-genproto v0.0.0-20210113155706-4daf5697332f/go.mod h1:6BwTZRNbWS570wHX/uR1Wqk5e0157TofTAUMzT7N4+s=
1914-
istio.io/gogo-genproto v0.0.0-20211029153105-ea58b596b74f h1:JUYPuFya6TdnBgBsqXZC1OCss0PqThNz9S+1BdprJMc=
1915-
istio.io/gogo-genproto v0.0.0-20211029153105-ea58b596b74f/go.mod h1:6BwTZRNbWS570wHX/uR1Wqk5e0157TofTAUMzT7N4+s=
1916-
istio.io/pkg v0.0.0-20211029152315-2022c99775d0 h1:CGgm/KLmUSfyy21zswklLMwo8QilN+DjgICG3Okf9zk=
1917-
istio.io/pkg v0.0.0-20211029152315-2022c99775d0/go.mod h1:rJLxqU2GEnFR3cIiun1uoiG87ghuQSD8jFkcjyT3Qes=
1914+
istio.io/gogo-genproto v0.0.0-20211108225733-10509e34857e h1:Q+iOjejPqh61O6lb40HBZ1tnKIL1RpeMvakwOu8GjPA=
1915+
istio.io/gogo-genproto v0.0.0-20211108225733-10509e34857e/go.mod h1:6BwTZRNbWS570wHX/uR1Wqk5e0157TofTAUMzT7N4+s=
1916+
istio.io/pkg v0.0.0-20211108225623-3579c5facd7b h1:BWInhfuv+ieictsdEktODaMOlC3QRerqxY/XI8XGDpg=
1917+
istio.io/pkg v0.0.0-20211108225623-3579c5facd7b/go.mod h1:rJLxqU2GEnFR3cIiun1uoiG87ghuQSD8jFkcjyT3Qes=
19181918
k8s.io/api v0.18.2/go.mod h1:SJCWI7OLzhZSvbY7U8zwNl9UA4o1fizoug34OV/2r78=
19191919
k8s.io/api v0.18.3/go.mod h1:UOaMwERbqJMfeeeHc8XJKawj4P9TgDRnViIqqBeH2QA=
19201920
k8s.io/api v0.18.4/go.mod h1:lOIQAKYgai1+vz9J7YcDZwC26Z0zQewYOGWdyIPUUQ4=

istio.deps

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"name": "PROXY_REPO_SHA",
55
"repoName": "proxy",
66
"file": "",
7-
"lastStableSHA": "fa2d3dca2040c49d1adb1017e275e3588335f1e2"
7+
"lastStableSHA": "765481d0d5b34baa503eceeceffd6e7cfddd08f3"
88
}
99
]

pilot/docker/Dockerfile.proxyv2

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ FROM gcr.io/istio-release/base:${BASE_VERSION} as debug
1212
# It is built on the base distroless image, with iptables binary and libraries added
1313
# The source can be found at https://github.com/istio/distroless/tree/iptables
1414
# This version is from commit 20b20ec36f4621830ff0bfdec519577074df47ca.
15-
FROM gcr.io/istio-release/iptables@sha256:875a2ec94a816dcb3da35fb559ac63cfe0345018a82b396491eb0e0dbbc15f18 as distroless
15+
FROM gcr.io/istio-release/iptables@sha256:bae9287d64be13179b7bc794ec3db26bd5c5fe3fb591c484992366314c9a7d3d as distroless
1616

1717
# This will build the final image based on either debug or distroless from above
1818
# hadolint ignore=DL3006

prow/release-commit.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ DOCKER_HUB=${DOCKER_HUB:-gcr.io/istio-testing}
3232
GCS_BUCKET=${GCS_BUCKET:-istio-build/dev}
3333

3434
# Use a pinned version in case breaking changes are needed
35-
BUILDER_SHA=dcd284c373b2ff937c77eabd9e0a2fc5f0d323dd
35+
BUILDER_SHA=73ad84424cfa17a0fad33840ae5e154b5d1c036e
3636

3737
# Reference to the next minor version of Istio
3838
# This will create a version like 1.4-alpha.sha

0 commit comments

Comments
 (0)