|
1 | 1 | module github.com/harvester/vm-dhcp-controller |
2 | 2 |
|
3 | | -go 1.23.4 |
| 3 | +go 1.24.4 |
4 | 4 |
|
5 | 5 | replace ( |
6 | 6 | github.com/openshift/api => github.com/openshift/api v0.0.0-20191219222812-2987a591a72c |
7 | 7 | github.com/openshift/client-go => github.com/openshift/client-go v0.0.0-20200521150516-05eb9880269c |
8 | 8 | github.com/rancher/rancher/pkg/apis => github.com/rancher/rancher/pkg/apis v0.0.0-20230124173128-2207cfed1803 |
9 | | - k8s.io/api => k8s.io/api v0.27.9 |
10 | | - k8s.io/apimachinery => k8s.io/apimachinery v0.27.9 |
11 | | - k8s.io/client-go => k8s.io/client-go v0.27.9 |
| 9 | + k8s.io/api => k8s.io/api v0.31.5 |
| 10 | + k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.31.5 |
| 11 | + k8s.io/apimachinery => k8s.io/apimachinery v0.31.5 |
| 12 | + k8s.io/apiserver => k8s.io/apiserver v0.31.5 |
| 13 | + k8s.io/client-go => k8s.io/client-go v0.31.5 |
| 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 |
12 | 17 | ) |
13 | 18 |
|
14 | 19 | require ( |
15 | | - github.com/harvester/harvester v1.2.1 |
16 | | - github.com/harvester/webhook v0.1.4 |
17 | | - github.com/insomniacslk/dhcp v0.0.0-20231206064809-8c70d406f6d2 |
18 | | - github.com/k8snetworkplumbingwg/network-attachment-definition-client v1.4.0 |
19 | | - github.com/rancher/lasso v0.0.0-20230830164424-d684fdeb6f29 |
20 | | - github.com/rancher/wrangler v1.1.1 |
| 20 | + github.com/harvester/harvester v1.5.0 |
| 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 |
| 24 | + github.com/rancher/lasso v0.0.0-20241202185148-04649f379358 |
| 25 | + github.com/rancher/wrangler/v3 v3.1.0 |
21 | 26 | github.com/sirupsen/logrus v1.9.3 |
22 | | - github.com/spf13/cobra v1.7.0 |
23 | | - github.com/stretchr/testify v1.8.4 |
24 | | - golang.org/x/sync v0.5.0 |
25 | | - k8s.io/api v0.29.0 |
26 | | - k8s.io/apimachinery v0.29.0 |
| 27 | + github.com/spf13/cobra v1.8.1 |
| 28 | + github.com/stretchr/testify v1.10.0 |
| 29 | + golang.org/x/sync v0.12.0 |
| 30 | + k8s.io/api v0.32.2 |
| 31 | + k8s.io/apimachinery v0.32.2 |
27 | 32 | k8s.io/client-go v12.0.0+incompatible |
28 | | - kubevirt.io/api v1.1.0 |
| 33 | + kubevirt.io/api v1.4.0 |
29 | 34 | ) |
30 | 35 |
|
31 | 36 | require ( |
32 | 37 | github.com/beorn7/perks v1.0.1 // indirect |
33 | | - github.com/cespare/xxhash/v2 v2.2.0 // indirect |
34 | | - github.com/davecgh/go-spew v1.1.1 // indirect |
35 | | - github.com/emicklei/go-restful/v3 v3.11.0 // indirect |
36 | | - github.com/evanphx/json-patch v5.6.0+incompatible // indirect |
| 38 | + github.com/cespare/xxhash/v2 v2.3.0 // indirect |
| 39 | + github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect |
| 40 | + github.com/emicklei/go-restful/v3 v3.12.1 // indirect |
| 41 | + github.com/evanphx/json-patch v5.9.0+incompatible // indirect |
| 42 | + github.com/fxamacker/cbor/v2 v2.7.0 // indirect |
37 | 43 | github.com/ghodss/yaml v1.0.0 // indirect |
38 | 44 | github.com/go-bindata/go-bindata/v3 v3.1.3 |
39 | | - github.com/go-logr/logr v1.4.1 // indirect |
40 | | - github.com/go-openapi/jsonpointer v0.19.6 // indirect |
41 | | - github.com/go-openapi/jsonreference v0.20.2 // indirect |
42 | | - github.com/go-openapi/swag v0.22.3 // indirect |
| 45 | + github.com/go-logr/logr v1.4.2 // indirect |
| 46 | + github.com/go-openapi/jsonpointer v0.21.0 // indirect |
| 47 | + github.com/go-openapi/jsonreference v0.21.0 // indirect |
| 48 | + github.com/go-openapi/swag v0.23.0 // indirect |
43 | 49 | github.com/gogo/protobuf v1.3.2 // indirect |
44 | 50 | github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect |
45 | | - github.com/golang/protobuf v1.5.3 // indirect |
46 | | - github.com/google/gnostic v0.5.7-v3refs // indirect |
| 51 | + github.com/golang/protobuf v1.5.4 // indirect |
| 52 | + github.com/google/gnostic-models v0.6.9 // indirect |
47 | 53 | github.com/google/go-cmp v0.6.0 // indirect |
48 | 54 | github.com/google/gofuzz v1.2.0 // indirect |
49 | | - github.com/google/uuid v1.3.0 // indirect |
50 | | - github.com/gorilla/mux v1.8.0 |
51 | | - github.com/imdario/mergo v0.3.13 // indirect |
| 55 | + github.com/google/uuid v1.6.0 // indirect |
| 56 | + github.com/gorilla/mux v1.8.1 |
| 57 | + github.com/imdario/mergo v0.3.16 // indirect |
52 | 58 | github.com/inconshreveable/mousetrap v1.1.0 // indirect |
53 | 59 | github.com/josharian/intern v1.0.0 // indirect |
54 | 60 | github.com/josharian/native v1.1.0 // indirect |
55 | 61 | github.com/json-iterator/go v1.1.12 // indirect |
56 | 62 | github.com/kisielk/errcheck v1.5.0 // indirect |
57 | | - github.com/mailru/easyjson v0.7.7 // indirect |
58 | | - github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect |
| 63 | + github.com/klauspost/compress v1.17.11 // indirect |
| 64 | + github.com/mailru/easyjson v0.9.0 // indirect |
59 | 65 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
60 | 66 | github.com/modern-go/reflect2 v1.0.2 // indirect |
61 | 67 | github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect |
62 | | - github.com/onsi/ginkgo/v2 v2.14.0 // indirect |
63 | | - github.com/onsi/gomega v1.30.0 // indirect |
64 | | - github.com/openshift/api v0.0.0 // indirect |
65 | 68 | github.com/openshift/custom-resource-status v1.1.2 // indirect |
66 | | - github.com/pborman/uuid v1.2.1 // indirect |
67 | | - github.com/pierrec/lz4/v4 v4.1.17 // indirect |
| 69 | + github.com/pierrec/lz4/v4 v4.1.22 // indirect |
68 | 70 | github.com/pkg/errors v0.9.1 // indirect |
69 | | - github.com/pmezard/go-difflib v1.0.0 // indirect |
70 | | - github.com/prometheus/client_golang v1.18.0 |
71 | | - github.com/prometheus/client_model v0.5.0 // indirect |
72 | | - github.com/prometheus/common v0.45.0 // indirect |
73 | | - github.com/prometheus/procfs v0.12.0 // indirect |
74 | | - github.com/rancher/dynamiclistener v0.3.5 // indirect |
| 71 | + github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect |
| 72 | + github.com/prometheus/client_golang v1.20.5 |
| 73 | + github.com/prometheus/client_model v0.6.1 // indirect |
| 74 | + github.com/prometheus/common v0.61.0 // indirect |
| 75 | + github.com/prometheus/procfs v0.15.1 // indirect |
| 76 | + github.com/rancher/dynamiclistener v0.6.1 // indirect |
| 77 | + github.com/rancher/wrangler v1.1.2 // indirect |
75 | 78 | github.com/spf13/pflag v1.0.5 // indirect |
76 | 79 | github.com/u-root/uio v0.0.0-20230220225925-ffce2a382923 // indirect |
77 | | - golang.org/x/crypto v0.21.0 // indirect |
| 80 | + github.com/x448/float16 v0.8.4 // indirect |
| 81 | + golang.org/x/crypto v0.36.0 // indirect |
78 | 82 | golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect |
79 | | - golang.org/x/mod v0.14.0 // indirect |
80 | | - golang.org/x/net v0.23.0 // indirect |
81 | | - golang.org/x/oauth2 v0.12.0 // indirect |
82 | | - golang.org/x/sys v0.18.0 // indirect |
83 | | - golang.org/x/term v0.18.0 // indirect |
84 | | - golang.org/x/text v0.14.0 // indirect |
85 | | - golang.org/x/time v0.3.0 // indirect |
86 | | - golang.org/x/tools v0.16.1 // indirect |
87 | | - google.golang.org/appengine v1.6.7 // indirect |
88 | | - google.golang.org/protobuf v1.33.0 // indirect |
| 83 | + golang.org/x/mod v0.23.0 // indirect |
| 84 | + golang.org/x/net v0.38.0 // indirect |
| 85 | + 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 |
| 89 | + golang.org/x/time v0.8.0 // indirect |
| 90 | + golang.org/x/tools v0.30.0 // indirect |
| 91 | + google.golang.org/protobuf v1.36.5 // indirect |
| 92 | + gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect |
89 | 93 | gopkg.in/inf.v0 v0.9.1 // indirect |
90 | 94 | gopkg.in/yaml.v2 v2.4.0 // indirect |
91 | 95 | gopkg.in/yaml.v3 v3.0.1 // indirect |
92 | | - k8s.io/apiextensions-apiserver v0.28.0-alpha.1 // indirect |
93 | | - k8s.io/code-generator v0.28.0-alpha.1 // indirect |
94 | | - k8s.io/gengo v0.0.0-20230829151522-9cce18d56c01 // indirect |
| 96 | + k8s.io/apiextensions-apiserver v0.32.2 // indirect |
| 97 | + k8s.io/code-generator v0.32.2 // indirect |
| 98 | + k8s.io/gengo v0.0.0-20240826214909-a7b603a56eb7 // indirect |
| 99 | + k8s.io/gengo/v2 v2.0.0-20240911193312-2b36238f13e9 // indirect |
95 | 100 | k8s.io/klog v1.0.0 // indirect |
96 | | - k8s.io/klog/v2 v2.110.1 // indirect |
97 | | - k8s.io/kube-aggregator v0.25.4 // indirect |
98 | | - k8s.io/kube-openapi v0.0.0-20230525220651-2546d827e515 // indirect |
99 | | - k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect |
100 | | - kubevirt.io/containerized-data-importer-api v1.58.0 // indirect |
| 101 | + k8s.io/klog/v2 v2.130.1 // indirect |
| 102 | + k8s.io/kube-aggregator v0.31.1 // indirect |
| 103 | + k8s.io/kube-openapi v0.31.5 // indirect |
| 104 | + k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect |
| 105 | + kubevirt.io/containerized-data-importer-api v1.61.0 // indirect |
101 | 106 | kubevirt.io/controller-lifecycle-operator-sdk/api v0.0.0-20220329064328-f3cc58c6ed90 // indirect |
102 | | - sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect |
103 | | - sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect |
| 107 | + sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect |
| 108 | + sigs.k8s.io/structured-merge-diff/v4 v4.5.0 // indirect |
104 | 109 | sigs.k8s.io/yaml v1.4.0 // indirect |
105 | 110 | ) |
0 commit comments