|
1 | 1 | module github.com/frelon/k8s-radio |
2 | 2 |
|
3 | | -go 1.25 |
| 3 | +go 1.25.0 |
4 | 4 |
|
5 | 5 | require ( |
6 | 6 | github.com/kubevirt/device-plugin-manager v1.19.5 |
7 | 7 | github.com/onsi/ginkgo/v2 v2.27.3 |
8 | 8 | github.com/onsi/gomega v1.38.3 |
9 | | - k8s.io/api v0.34.3 |
10 | | - k8s.io/apimachinery v0.34.3 |
11 | | - k8s.io/client-go v0.34.3 |
12 | | - k8s.io/kubelet v0.34.2 |
| 9 | + k8s.io/api v0.35.0 |
| 10 | + k8s.io/apimachinery v0.35.0 |
| 11 | + k8s.io/client-go v0.35.0 |
| 12 | + k8s.io/kubelet v0.35.0 |
13 | 13 | sigs.k8s.io/controller-runtime v0.22.4 |
14 | 14 | ) |
15 | 15 |
|
@@ -41,39 +41,38 @@ require ( |
41 | 41 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
42 | 42 | github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect |
43 | 43 | github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect |
44 | | - github.com/pkg/errors v0.9.1 // indirect |
45 | 44 | github.com/pmezard/go-difflib v1.0.0 // indirect |
46 | | - github.com/prometheus/client_golang v1.22.0 // indirect |
47 | | - github.com/prometheus/client_model v0.6.1 // indirect |
48 | | - github.com/prometheus/common v0.62.0 // indirect |
49 | | - github.com/prometheus/procfs v0.15.1 // indirect |
50 | | - github.com/spf13/pflag v1.0.6 // indirect |
| 45 | + github.com/prometheus/client_golang v1.23.2 // indirect |
| 46 | + github.com/prometheus/client_model v0.6.2 // indirect |
| 47 | + github.com/prometheus/common v0.66.1 // indirect |
| 48 | + github.com/prometheus/procfs v0.16.1 // indirect |
| 49 | + github.com/spf13/pflag v1.0.9 // indirect |
51 | 50 | github.com/x448/float16 v0.8.4 // indirect |
52 | 51 | go.uber.org/multierr v1.11.0 // indirect |
53 | 52 | go.uber.org/zap v1.27.0 // indirect |
54 | | - go.yaml.in/yaml/v2 v2.4.2 // indirect |
| 53 | + go.yaml.in/yaml/v2 v2.4.3 // indirect |
55 | 54 | go.yaml.in/yaml/v3 v3.0.4 // indirect |
56 | | - golang.org/x/mod v0.27.0 // indirect |
57 | | - golang.org/x/net v0.44.0 // indirect |
| 55 | + golang.org/x/mod v0.29.0 // indirect |
| 56 | + golang.org/x/net v0.47.0 // indirect |
58 | 57 | golang.org/x/oauth2 v0.31.0 // indirect |
59 | | - golang.org/x/sync v0.17.0 // indirect |
60 | | - golang.org/x/sys v0.36.0 // indirect |
61 | | - golang.org/x/term v0.35.0 // indirect |
62 | | - golang.org/x/text v0.29.0 // indirect |
| 58 | + golang.org/x/sync v0.18.0 // indirect |
| 59 | + golang.org/x/sys v0.38.0 // indirect |
| 60 | + golang.org/x/term v0.37.0 // indirect |
| 61 | + golang.org/x/text v0.31.0 // indirect |
63 | 62 | golang.org/x/time v0.9.0 // indirect |
64 | | - golang.org/x/tools v0.36.0 // indirect |
| 63 | + golang.org/x/tools v0.38.0 // indirect |
65 | 64 | gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect |
66 | | - google.golang.org/genproto/googleapis/rpc v0.0.0-20250303144028-a0af3efb3deb // indirect |
67 | | - google.golang.org/grpc v1.72.1 // indirect |
| 65 | + google.golang.org/genproto/googleapis/rpc v0.0.0-20250528174236-200df99c418a // indirect |
| 66 | + google.golang.org/grpc v1.72.2 // indirect |
68 | 67 | google.golang.org/protobuf v1.36.10 // indirect |
69 | | - gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect |
| 68 | + gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect |
70 | 69 | gopkg.in/inf.v0 v0.9.1 // indirect |
71 | 70 | gopkg.in/yaml.v3 v3.0.1 // indirect |
72 | 71 | k8s.io/apiextensions-apiserver v0.34.1 // indirect |
73 | 72 | k8s.io/klog/v2 v2.130.1 // indirect |
74 | | - k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b // indirect |
75 | | - k8s.io/utils v0.0.0-20250604170112-4c0f3b243397 // indirect |
76 | | - sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect |
| 73 | + k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect |
| 74 | + k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect |
| 75 | + sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect |
77 | 76 | sigs.k8s.io/randfill v1.0.0 // indirect |
78 | 77 | sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect |
79 | 78 | sigs.k8s.io/yaml v1.6.0 // indirect |
|
0 commit comments