Skip to content

Commit 976572f

Browse files
committed
Update dependencies for Kubernetes 1.34
1 parent b0fbe3d commit 976572f

File tree

6 files changed

+174
-146
lines changed

6 files changed

+174
-146
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased]
77

8+
### Changed
9+
10+
- Update dependencies for Kubernetes 1.34 in [#25](https://github.com/cybozu-go/zombie-detector/pull/25)
11+
- Update modules in go.mod
12+
- Support Kubernetes 1.34
13+
814
## [1.1.1] 2025-12-24
915

1016
### Changed

Makefile.versions

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Update manually
2-
ENVTEST_K8S_VERSION=1.33.0
2+
ENVTEST_K8S_VERSION=1.34.0
33

44
# Automatically updated with `make maintenance`.
5-
GH_VERSION := 2.83.2
6-
YQ_VERSION := 4.50.1
5+
GH_VERSION := 2.86.0
6+
YQ_VERSION := 4.52.4
77
ACTIONS_CACHE_VERSION := 5
88
ACTIONS_CHECKOUT_VERSION := 6
99
ACTIONS_SETUP_GO_VERSION := 6

e2e/Makefile.versions

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Update manually
2-
E2ETEST_K8S_VERSION := 1.33.7
2+
E2ETEST_K8S_VERSION := 1.34.3
33

44
# Automatically updated with `make maintenance`.
55
KIND_VERSION := 0.31.0
6-
KUSTOMIZE_VERSION := 5.7.1
6+
KUSTOMIZE_VERSION := 5.8.1

e2e/manifests/metrics-server/components.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ spec:
138138
- --kubelet-preferred-address-types=InternalIP,ExternalIP,Hostname
139139
- --kubelet-use-node-status-port
140140
- --metric-resolution=15s
141-
image: registry.k8s.io/metrics-server/metrics-server:v0.8.0
141+
image: registry.k8s.io/metrics-server/metrics-server:v0.8.1
142142
imagePullPolicy: IfNotPresent
143143
livenessProbe:
144144
failureThreshold: 3

go.mod

Lines changed: 52 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,87 +1,93 @@
11
module github.com/cybozu-go/zombie-detector
22

3-
go 1.25.0
3+
go 1.25.7
44

55
require (
6-
github.com/olekukonko/tablewriter v1.1.2
6+
github.com/olekukonko/tablewriter v1.1.3
77
github.com/onsi/ginkgo/v2 v2.27.3
88
github.com/onsi/gomega v1.38.3
99
github.com/prometheus/client_golang v1.23.2
1010
github.com/spf13/cobra v1.10.2
1111
github.com/stretchr/testify v1.11.1
1212
go.uber.org/zap v1.27.1
13-
k8s.io/api v0.33.7
14-
k8s.io/apimachinery v0.33.7
15-
k8s.io/client-go v0.33.7
16-
sigs.k8s.io/controller-runtime v0.21.0
13+
k8s.io/api v0.34.4
14+
k8s.io/apimachinery v0.34.4
15+
k8s.io/client-go v0.34.4
16+
sigs.k8s.io/controller-runtime v0.22.5
1717
)
1818

1919
require (
2020
github.com/Masterminds/semver/v3 v3.4.0 // indirect
2121
github.com/beorn7/perks v1.0.1 // indirect
22-
github.com/blang/semver/v4 v4.0.0 // indirect
2322
github.com/cespare/xxhash/v2 v2.3.0 // indirect
24-
github.com/clipperhouse/displaywidth v0.6.0 // indirect
25-
github.com/clipperhouse/stringish v0.1.1 // indirect
26-
github.com/clipperhouse/uax29/v2 v2.3.0 // indirect
23+
github.com/clipperhouse/displaywidth v0.10.0 // indirect
24+
github.com/clipperhouse/uax29/v2 v2.6.0 // indirect
2725
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
28-
github.com/emicklei/go-restful/v3 v3.12.0 // indirect
26+
github.com/emicklei/go-restful/v3 v3.13.0 // indirect
2927
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
30-
github.com/fatih/color v1.15.0 // indirect
31-
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
28+
github.com/fatih/color v1.18.0 // indirect
29+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
3230
github.com/go-logr/logr v1.4.3 // indirect
3331
github.com/go-logr/zapr v1.3.0 // indirect
34-
github.com/go-openapi/jsonpointer v0.21.0 // indirect
35-
github.com/go-openapi/jsonreference v0.21.0 // indirect
36-
github.com/go-openapi/swag v0.23.0 // indirect
32+
github.com/go-openapi/jsonpointer v0.22.4 // indirect
33+
github.com/go-openapi/jsonreference v0.21.4 // indirect
34+
github.com/go-openapi/swag v0.25.4 // indirect
35+
github.com/go-openapi/swag/cmdutils v0.25.4 // indirect
36+
github.com/go-openapi/swag/conv v0.25.4 // indirect
37+
github.com/go-openapi/swag/fileutils v0.25.4 // indirect
38+
github.com/go-openapi/swag/jsonname v0.25.4 // indirect
39+
github.com/go-openapi/swag/jsonutils v0.25.4 // indirect
40+
github.com/go-openapi/swag/loading v0.25.4 // indirect
41+
github.com/go-openapi/swag/mangling v0.25.4 // indirect
42+
github.com/go-openapi/swag/netutils v0.25.4 // indirect
43+
github.com/go-openapi/swag/stringutils v0.25.4 // indirect
44+
github.com/go-openapi/swag/typeutils v0.25.4 // indirect
45+
github.com/go-openapi/swag/yamlutils v0.25.4 // indirect
3746
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
3847
github.com/gogo/protobuf v1.3.2 // indirect
39-
github.com/google/gnostic-models v0.6.9 // indirect
48+
github.com/google/gnostic-models v0.7.1 // indirect
4049
github.com/google/go-cmp v0.7.0 // indirect
4150
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
4251
github.com/google/uuid v1.6.0 // indirect
4352
github.com/inconshreveable/mousetrap v1.1.0 // indirect
44-
github.com/josharian/intern v1.0.0 // indirect
4553
github.com/json-iterator/go v1.1.12 // indirect
46-
github.com/mailru/easyjson v0.7.7 // indirect
47-
github.com/mattn/go-colorable v0.1.13 // indirect
48-
github.com/mattn/go-isatty v0.0.19 // indirect
54+
github.com/mattn/go-colorable v0.1.14 // indirect
55+
github.com/mattn/go-isatty v0.0.20 // indirect
4956
github.com/mattn/go-runewidth v0.0.19 // indirect
5057
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
51-
github.com/modern-go/reflect2 v1.0.2 // indirect
58+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
5259
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5360
github.com/olekukonko/cat v0.0.0-20250911104152-50322a0618f6 // indirect
54-
github.com/olekukonko/errors v1.1.0 // indirect
55-
github.com/olekukonko/ll v0.1.3 // indirect
56-
github.com/pkg/errors v0.9.1 // indirect
61+
github.com/olekukonko/errors v1.2.0 // indirect
62+
github.com/olekukonko/ll v0.1.6 // indirect
5763
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
5864
github.com/prometheus/client_model v0.6.2 // indirect
59-
github.com/prometheus/common v0.66.1 // indirect
60-
github.com/prometheus/procfs v0.16.1 // indirect
61-
github.com/spf13/pflag v1.0.9 // indirect
65+
github.com/prometheus/common v0.67.5 // indirect
66+
github.com/prometheus/procfs v0.19.2 // indirect
67+
github.com/spf13/pflag v1.0.10 // indirect
6268
github.com/x448/float16 v0.8.4 // indirect
6369
go.uber.org/multierr v1.11.0 // indirect
64-
go.yaml.in/yaml/v2 v2.4.2 // indirect
70+
go.yaml.in/yaml/v2 v2.4.3 // indirect
6571
go.yaml.in/yaml/v3 v3.0.4 // indirect
66-
golang.org/x/mod v0.27.0 // indirect
67-
golang.org/x/net v0.43.0 // indirect
68-
golang.org/x/oauth2 v0.30.0 // indirect
69-
golang.org/x/sync v0.16.0 // indirect
70-
golang.org/x/sys v0.35.0 // indirect
71-
golang.org/x/term v0.34.0 // indirect
72-
golang.org/x/text v0.28.0 // indirect
73-
golang.org/x/time v0.9.0 // indirect
74-
golang.org/x/tools v0.36.0 // indirect
75-
google.golang.org/protobuf v1.36.8 // indirect
76-
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
72+
golang.org/x/mod v0.32.0 // indirect
73+
golang.org/x/net v0.50.0 // indirect
74+
golang.org/x/oauth2 v0.35.0 // indirect
75+
golang.org/x/sync v0.19.0 // indirect
76+
golang.org/x/sys v0.41.0 // indirect
77+
golang.org/x/term v0.40.0 // indirect
78+
golang.org/x/text v0.34.0 // indirect
79+
golang.org/x/time v0.14.0 // indirect
80+
golang.org/x/tools v0.41.0 // indirect
81+
google.golang.org/protobuf v1.36.11 // indirect
82+
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
7783
gopkg.in/inf.v0 v0.9.1 // indirect
7884
gopkg.in/yaml.v3 v3.0.1 // indirect
79-
k8s.io/apiextensions-apiserver v0.33.7 // indirect
85+
k8s.io/apiextensions-apiserver v0.34.4 // indirect
8086
k8s.io/klog/v2 v2.130.1 // indirect
81-
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
82-
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
83-
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
87+
k8s.io/kube-openapi v0.0.0-20260127142750-a19766b6e2d4 // indirect
88+
k8s.io/utils v0.0.0-20260210185600-b8788abfbbc2 // indirect
89+
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
8490
sigs.k8s.io/randfill v1.0.0 // indirect
85-
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
86-
sigs.k8s.io/yaml v1.4.0 // indirect
91+
sigs.k8s.io/structured-merge-diff/v6 v6.3.2 // indirect
92+
sigs.k8s.io/yaml v1.6.0 // indirect
8793
)

0 commit comments

Comments
 (0)