Skip to content

Commit e3c23cb

Browse files
committed
bump k8s deps for 1.30
1 parent 41d59af commit e3c23cb

File tree

4 files changed

+116
-72
lines changed

4 files changed

+116
-72
lines changed

.github/workflows/pull_request.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
pull_request:
99

1010
env:
11-
KUBE_VERSION: v1.29.2
11+
KUBE_VERSION: v1.30.2
1212

1313
jobs:
1414
test:
@@ -42,4 +42,4 @@ jobs:
4242
- name: Run tests
4343
env:
4444
TEST_PKG: ./... # Run all tests
45-
run: make test
45+
run: make test

changelog/v0.7.3/bump-k8s-130.yaml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
changelog:
2+
- type: UPGRADE
3+
description: >
4+
Bump dependencies to support Kubernetes 1.30
5+
issueLink: https://github.com/solo-io/gloo/issues/9683
6+
- type: DEPENDENCY_BUMP
7+
dependencyOwner: golang
8+
dependencyRepo: protobuf
9+
dependencyTag: v1.5.4
10+
- type: DEPENDENCY_BUMP
11+
dependencyOwner: onsi
12+
dependencyRepo: gomega
13+
dependencyTag: v1.32.0
14+
- type: DEPENDENCY_BUMP
15+
dependencyOwner: onsi
16+
dependencyRepo: ginkgo/v2
17+
dependencyTag: v2.17.1
18+
- type: DEPENDENCY_BUMP
19+
dependencyOwner: golang.org
20+
dependencyRepo: x/sync
21+
dependencyTag: v0.6.0
22+
- type: DEPENDENCY_BUMP
23+
dependencyOwner: google.golang.org
24+
dependencyRepo: protobuf
25+
dependencyTag: v1.33.0
26+
- type: DEPENDENCY_BUMP
27+
dependencyOwner: k8s.io
28+
dependencyRepo: api
29+
dependencyTag: v0.30.1
30+
- type: DEPENDENCY_BUMP
31+
dependencyOwner: k8s.io
32+
dependencyRepo: apiextensions-apiserver
33+
dependencyTag: v0.30.1
34+
- type: DEPENDENCY_BUMP
35+
dependencyOwner: k8s.io
36+
dependencyRepo: apimachinery
37+
dependencyTag: v0.30.1
38+
- type: DEPENDENCY_BUMP
39+
dependencyOwner: k8s.io
40+
dependencyRepo: cli-runtime
41+
dependencyTag: v0.30.1
42+
- type: DEPENDENCY_BUMP
43+
dependencyOwner: k8s.io
44+
dependencyRepo: client-go
45+
dependencyTag: v0.30.1
46+
- type: DEPENDENCY_BUMP
47+
dependencyOwner: sigs.k8s.io
48+
dependencyRepo: controller-runtime
49+
dependencyTag: v0.18.3

go.mod

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,26 @@ require (
88
github.com/ghodss/yaml v1.0.0
99
github.com/gogo/protobuf v1.3.2
1010
github.com/golang/mock v1.6.0
11-
github.com/golang/protobuf v1.5.3
11+
github.com/golang/protobuf v1.5.4
1212
github.com/google/go-github/v32 v32.0.0
1313
github.com/google/uuid v1.3.0
1414
github.com/goph/emperror v0.17.1
1515
github.com/hashicorp/consul/api v1.1.0
16-
github.com/onsi/gomega v1.30.0
16+
github.com/onsi/gomega v1.32.0
1717
github.com/pkg/errors v0.9.1
1818
github.com/rotisserie/eris v0.1.1
1919
github.com/solo-io/go-utils v0.24.8
2020
github.com/spf13/afero v1.6.0
2121
go.uber.org/zap v1.26.0
22-
golang.org/x/sync v0.5.0
23-
google.golang.org/protobuf v1.31.0
22+
golang.org/x/sync v0.6.0
23+
google.golang.org/protobuf v1.33.0
2424
helm.sh/helm/v3 v3.13.2
25-
k8s.io/api v0.29.2
26-
k8s.io/apiextensions-apiserver v0.29.2
27-
k8s.io/apimachinery v0.29.2
28-
k8s.io/cli-runtime v0.29.2
29-
k8s.io/client-go v0.29.2
30-
sigs.k8s.io/controller-runtime v0.17.3
25+
k8s.io/api v0.30.1
26+
k8s.io/apiextensions-apiserver v0.30.1
27+
k8s.io/apimachinery v0.30.1
28+
k8s.io/cli-runtime v0.30.1
29+
k8s.io/client-go v0.30.1
30+
sigs.k8s.io/controller-runtime v0.18.3
3131
sigs.k8s.io/yaml v1.4.0
3232
)
3333

@@ -56,7 +56,7 @@ require (
5656
github.com/docker/go-metrics v0.0.1 // indirect
5757
github.com/docker/go-units v0.5.0 // indirect
5858
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
59-
github.com/evanphx/json-patch/v5 v5.8.0 // indirect
59+
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
6060
github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect
6161
github.com/fatih/color v1.13.0 // indirect
6262
github.com/fgrosse/zaptest v1.1.0 // indirect
@@ -144,24 +144,24 @@ require (
144144
go.opentelemetry.io/otel/trace v1.19.0 // indirect
145145
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
146146
go.uber.org/multierr v1.11.0 // indirect
147-
golang.org/x/crypto v0.16.0 // indirect
148-
golang.org/x/net v0.19.0 // indirect
147+
golang.org/x/crypto v0.21.0 // indirect
148+
golang.org/x/net v0.23.0 // indirect
149149
golang.org/x/oauth2 v0.12.0 // indirect
150-
golang.org/x/sys v0.16.0 // indirect
151-
golang.org/x/term v0.15.0 // indirect
150+
golang.org/x/sys v0.18.0 // indirect
151+
golang.org/x/term v0.18.0 // indirect
152152
golang.org/x/text v0.14.0 // indirect
153153
golang.org/x/time v0.3.0 // indirect
154-
golang.org/x/tools v0.16.1 // indirect
154+
golang.org/x/tools v0.18.0 // indirect
155155
google.golang.org/appengine v1.6.7 // indirect
156156
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
157157
google.golang.org/grpc v1.58.3 // indirect
158158
gopkg.in/inf.v0 v0.9.1 // indirect
159159
gopkg.in/yaml.v2 v2.4.0 // indirect
160160
gopkg.in/yaml.v3 v3.0.1 // indirect
161-
k8s.io/apiserver v0.29.2 // indirect
162-
k8s.io/component-base v0.29.2 // indirect
163-
k8s.io/klog/v2 v2.110.1 // indirect
164-
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
161+
k8s.io/apiserver v0.30.1 // indirect
162+
k8s.io/component-base v0.30.1 // indirect
163+
k8s.io/klog/v2 v2.120.1 // indirect
164+
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
165165
k8s.io/kubectl v0.28.2 // indirect
166166
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
167167
oras.land/oras-go v1.2.4 // indirect
@@ -175,7 +175,7 @@ require (
175175
github.com/MakeNowJust/heredoc v1.0.0 // indirect
176176
github.com/bugsnag/bugsnag-go v1.5.0 // indirect
177177
github.com/docker/libtrust v0.0.0-20160708172513-aabc10ec26b7 // indirect
178-
github.com/onsi/ginkgo/v2 v2.14.0
178+
github.com/onsi/ginkgo/v2 v2.17.1
179179
github.com/yvasiyarov/go-metrics v0.0.0-20150112132944-c25f46c4b940 // indirect
180180
github.com/yvasiyarov/gorelic v0.0.6 // indirect
181181
)

0 commit comments

Comments
 (0)