Skip to content

Commit dd617e1

Browse files
committed
deps: bump go to 1.21.5. bump go pkgs to latest
Signed-off-by: Dmitry Kharitonov <[email protected]>
1 parent bd38b66 commit dd617e1

File tree

262 files changed

+10943
-13412
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

262 files changed

+10943
-13412
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# BUILDPLATFORM is an automatic platform ARG enabled by Docker BuildKit.
77
# Represents the plataform where the build is happening, do not mix with
88
# TARGETARCH
9-
FROM --platform=${BUILDPLATFORM} docker.io/library/node:18-alpine3.18@sha256:435dcad253bb5b7f347ebc69c8cc52de7c912eb7241098b920f2fc2d7843183d as stage1
9+
FROM --platform=${BUILDPLATFORM} docker.io/library/node:18-alpine3.18@sha256:4bdb3f3105718f0742bc8d64bb4e36e8f955ebbee295325e40ae80bc8ef78833 as stage1
1010
RUN apk add bash
1111
WORKDIR /app
1212

@@ -26,5 +26,5 @@ COPY . .
2626
ARG NODE_ENV=production
2727
RUN npm run build
2828

29-
FROM docker.io/nginxinc/nginx-unprivileged:1.25-alpine3.18@sha256:428e086ab26adf52ac6486ac525d5ad06122c1cb5e0a8e0e5e781c47dcf62996
29+
FROM docker.io/nginxinc/nginx-unprivileged:1.25-alpine3.18@sha256:c0c740ab4838b69211d219d6f4b091ca7684d017659096c7015a4cd44009dda2
3030
COPY --from=stage1 /app/server/public /app

backend/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright 2021 Authors of Cilium
44
# SPDX-License-Identifier: Apache-2.0
55

6-
ARG GOLANG_IMAGE=docker.io/library/golang:1.21-bullseye@sha256:31848c4f02b08469e159ea1ee664a3f29602418b13e7d67dfd4560d169e14d55
6+
ARG GOLANG_IMAGE=docker.io/library/golang:1.21-bullseye@sha256:cfb0768fb3e3845e95f46f7150630d6eb0930ec10aa9b8ceb16e6f8f581d2d57
77

88
# BUILDPLATFORM is an automatic platform ARG enabled by Docker BuildKit.
99
# Represents the plataform where the build is happening, do not mix with
@@ -27,7 +27,7 @@ COPY ./build-gops.sh .
2727
RUN --mount=target=/root/.cache,type=cache --mount=target=/go/pkg/mod,type=cache \
2828
./build-gops.sh
2929

30-
FROM docker.io/library/node:18-alpine3.18@sha256:435dcad253bb5b7f347ebc69c8cc52de7c912eb7241098b920f2fc2d7843183d
30+
FROM docker.io/library/node:18-alpine3.18@sha256:4bdb3f3105718f0742bc8d64bb4e36e8f955ebbee295325e40ae80bc8ef78833
3131
# TARGETOS is an automatic platform ARG enabled by Docker BuildKit.
3232
ARG TARGETOS
3333
# TARGETARCH is an automatic platform ARG enabled by Docker BuildKit.

backend/go.mod

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
module github.com/cilium/hubble-ui/backend
22

3-
go 1.21.4
3+
go 1.21.5
44

55
require (
6-
github.com/cilium/cilium v1.15.0-pre.2
7-
github.com/cilium/hubble v0.12.2
6+
github.com/cilium/cilium v1.15.0-rc.0
7+
github.com/cilium/hubble v0.12.3
88
github.com/google/gops v0.3.28
99
github.com/improbable-eng/grpc-web v0.15.0
1010
github.com/pkg/errors v0.9.1
1111
github.com/sirupsen/logrus v1.9.3
12-
golang.org/x/net v0.18.0
13-
golang.org/x/sys v0.14.0
14-
google.golang.org/grpc v1.59.0
12+
golang.org/x/net v0.19.0
13+
golang.org/x/sys v0.15.0
14+
google.golang.org/grpc v1.60.1
1515
google.golang.org/protobuf v1.31.0
16-
k8s.io/api v0.28.4
17-
k8s.io/apimachinery v0.28.4
18-
k8s.io/client-go v0.28.4
16+
k8s.io/api v0.29.0
17+
k8s.io/apimachinery v0.29.0
18+
k8s.io/client-go v0.29.0
1919
)
2020

2121
require (
@@ -25,39 +25,39 @@ require (
2525
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
2626
github.com/fsnotify/fsnotify v1.7.0 // indirect
2727
github.com/go-logr/logr v1.3.0 // indirect
28-
github.com/go-openapi/jsonpointer v0.20.0 // indirect
29-
github.com/go-openapi/jsonreference v0.20.2 // indirect
30-
github.com/go-openapi/swag v0.22.4 // indirect
28+
github.com/go-openapi/jsonpointer v0.20.1 // indirect
29+
github.com/go-openapi/jsonreference v0.20.3 // indirect
30+
github.com/go-openapi/swag v0.22.5 // indirect
3131
github.com/gogo/protobuf v1.3.2 // indirect
3232
github.com/golang/protobuf v1.5.3 // indirect
3333
github.com/google/gnostic-models v0.6.8 // indirect
3434
github.com/google/go-cmp v0.6.0 // indirect
3535
github.com/google/gofuzz v1.2.0 // indirect
36-
github.com/google/uuid v1.4.0 // indirect
36+
github.com/google/uuid v1.5.0 // indirect
3737
github.com/imdario/mergo v0.3.16 // indirect
3838
github.com/josharian/intern v1.0.0 // indirect
3939
github.com/json-iterator/go v1.1.12 // indirect
4040
github.com/mailru/easyjson v0.7.7 // indirect
4141
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4242
github.com/modern-go/reflect2 v1.0.2 // indirect
4343
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
44-
github.com/petermattis/goid v0.0.0-20230904192822-1876fd5063bc // indirect
44+
github.com/petermattis/goid v0.0.0-20231207134359-e60b3f734c67 // indirect
4545
github.com/rs/cors v1.10.1 // indirect
4646
github.com/sasha-s/go-deadlock v0.3.1 // indirect
4747
github.com/spf13/pflag v1.0.6-0.20210604193023-d5e0c0615ace // indirect
48-
golang.org/x/oauth2 v0.14.0 // indirect
48+
golang.org/x/oauth2 v0.15.0 // indirect
4949
golang.org/x/sync v0.5.0 // indirect
50-
golang.org/x/term v0.14.0 // indirect
50+
golang.org/x/term v0.15.0 // indirect
5151
golang.org/x/text v0.14.0 // indirect
52-
golang.org/x/time v0.4.0 // indirect
52+
golang.org/x/time v0.5.0 // indirect
5353
google.golang.org/appengine v1.6.8 // indirect
54-
google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 // indirect
54+
google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0 // indirect
5555
gopkg.in/inf.v0 v0.9.1 // indirect
5656
gopkg.in/yaml.v2 v2.4.0 // indirect
5757
gopkg.in/yaml.v3 v3.0.1 // indirect
5858
k8s.io/klog/v2 v2.110.1 // indirect
59-
k8s.io/kube-openapi v0.0.0-20231113174909-778a5567bc1e // indirect
60-
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
59+
k8s.io/kube-openapi v0.0.0-20231214164306-ab13479f8bf8 // indirect
60+
k8s.io/utils v0.0.0-20231127182322-b307cd553661 // indirect
6161
nhooyr.io/websocket v1.8.10 // indirect
6262
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
6363
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect

0 commit comments

Comments
 (0)