@@ -3,36 +3,43 @@ module github.com/harvester/vm-dhcp-controller
3
3
go 1.24.4
4
4
5
5
replace (
6
- github.com/openshift/api => github.com/openshift/api v0.0.0-20191219222812-2987a591a72c
7
- github.com/openshift/client-go => github.com/openshift/client-go v0.0.0-20200521150516-05eb9880269c
8
- github.com/rancher/rancher/pkg/apis => github.com/rancher/rancher/pkg/apis v0.0.0-20230124173128-2207cfed1803
6
+ github.com/openshift/api => github.com/openshift/api v0.0.0-20250910195410-e515d9c65abd
7
+ github.com/openshift/client-go => github.com/openshift/client-go v0.0.0-20250811163556-6193816ae379
8
+ github.com/rancher/rancher/pkg/apis => github.com/rancher/rancher/pkg/apis v0.0.0-20250910194406-58abf492671b
9
9
k8s.io/api => k8s.io/api v0.31.5
10
10
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.31.5
11
11
k8s.io/apimachinery => k8s.io/apimachinery v0.31.5
12
12
k8s.io/apiserver => k8s.io/apiserver v0.31.5
13
13
k8s.io/client-go => k8s.io/client-go v0.31.5
14
14
k8s.io/code-generator => k8s.io/code-generator v0.31.5
15
- k8s.io/gengo/v2 => k8s.io/gengo/v2 v2.0.0-20240228010128-51d4e06bde70
16
- k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340
15
+ k8s.io/gengo/v2 => k8s.io/gengo/v2 v2.0.0-20250903151518-081d64401ab4
16
+ k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912
17
17
)
18
18
19
19
require (
20
20
github.com/harvester/harvester v1.5.0
21
21
github.com/harvester/webhook v0.1.5
22
- github.com/insomniacslk/dhcp v0.0.0-20240710054256-ddd8a41251c9
23
- github.com/k8snetworkplumbingwg/network-attachment-definition-client v1.7.0
22
+ github.com/insomniacslk/dhcp v0.0.0-20250828142853-d3abe7ccb0ad
23
+ github.com/k8snetworkplumbingwg/network-attachment-definition-client v1.7.7
24
24
github.com/rancher/lasso v0.0.0-20241202185148-04649f379358
25
25
github.com/rancher/wrangler/v3 v3.1.0
26
26
github.com/sirupsen/logrus v1.9.3
27
27
github.com/spf13/cobra v1.8.1
28
28
github.com/stretchr/testify v1.10.0
29
- golang.org/x/sync v0.12 .0
29
+ golang.org/x/sync v0.16 .0
30
30
k8s.io/api v0.32.2
31
31
k8s.io/apimachinery v0.32.2
32
32
k8s.io/client-go v12.0.0+incompatible
33
33
kubevirt.io/api v1.4.0
34
34
)
35
35
36
+ require (
37
+ go.yaml.in/yaml/v2 v2.4.2 // indirect
38
+ go.yaml.in/yaml/v3 v3.0.3 // indirect
39
+ sigs.k8s.io/randfill v1.0.0 // indirect
40
+ sigs.k8s.io/structured-merge-diff/v6 v6.2.0 // indirect
41
+ )
42
+
36
43
require (
37
44
github.com/beorn7/perks v1.0.1 // indirect
38
45
github.com/cespare/xxhash/v2 v2.3.0 // indirect
@@ -49,7 +56,7 @@ require (
49
56
github.com/gogo/protobuf v1.3.2 // indirect
50
57
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
51
58
github.com/golang/protobuf v1.5.4 // indirect
52
- github.com/google/gnostic-models v0.6.9 // indirect
59
+ github.com/google/gnostic-models v0.7.0 // indirect
53
60
github.com/google/go-cmp v0.6.0 // indirect
54
61
github.com/google/gofuzz v1.2.0 // indirect
55
62
github.com/google/uuid v1.6.0 // indirect
@@ -78,16 +85,16 @@ require (
78
85
github.com/spf13/pflag v1.0.5 // indirect
79
86
github.com/u-root/uio v0.0.0-20230220225925-ffce2a382923 // indirect
80
87
github.com/x448/float16 v0.8.4 // indirect
81
- golang.org/x/crypto v0.36 .0 // indirect
88
+ golang.org/x/crypto v0.41 .0 // indirect
82
89
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
83
- golang.org/x/mod v0.23 .0 // indirect
84
- golang.org/x/net v0.38 .0 // indirect
90
+ golang.org/x/mod v0.27 .0 // indirect
91
+ golang.org/x/net v0.43 .0 // indirect
85
92
golang.org/x/oauth2 v0.24.0 // indirect
86
- golang.org/x/sys v0.31 .0 // indirect
87
- golang.org/x/term v0.30 .0 // indirect
88
- golang.org/x/text v0.23 .0 // indirect
93
+ golang.org/x/sys v0.35 .0 // indirect
94
+ golang.org/x/term v0.34 .0 // indirect
95
+ golang.org/x/text v0.28 .0 // indirect
89
96
golang.org/x/time v0.8.0 // indirect
90
- golang.org/x/tools v0.30 .0 // indirect
97
+ golang.org/x/tools v0.36 .0 // indirect
91
98
google.golang.org/protobuf v1.36.5 // indirect
92
99
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
93
100
gopkg.in/inf.v0 v0.9.1 // indirect
@@ -96,7 +103,7 @@ require (
96
103
k8s.io/apiextensions-apiserver v0.32.2 // indirect
97
104
k8s.io/code-generator v0.32.2 // indirect
98
105
k8s.io/gengo v0.0.0-20240826214909-a7b603a56eb7 // indirect
99
- k8s.io/gengo/v2 v2.0.0-20240911193312-2b36238f13e9 // indirect
106
+ k8s.io/gengo/v2 v2.0.0-20250604051438-85fd79dbfd9f // indirect
100
107
k8s.io/klog v1.0.0 // indirect
101
108
k8s.io/klog/v2 v2.130.1 // indirect
102
109
k8s.io/kube-aggregator v0.31.1 // indirect
0 commit comments