|
1 | 1 | module github.com/deckhouse/virtualization-controller/dvcr-importers |
2 | 2 |
|
3 | | -go 1.22.7 |
| 3 | +go 1.23.0 |
| 4 | + |
| 5 | +toolchain go1.23.9 |
4 | 6 |
|
5 | 7 | require ( |
6 | 8 | github.com/containers/image/v5 v5.32.0 |
| 9 | + github.com/deckhouse/virtualization/api v0.0.0-20241220154636-ce1f73499998 |
7 | 10 | github.com/distribution/reference v0.6.0 |
8 | 11 | github.com/docker/cli v27.1.1+incompatible |
9 | 12 | github.com/golang/snappy v0.0.4 |
10 | 13 | github.com/google/go-containerregistry v0.20.0 |
11 | 14 | github.com/google/uuid v1.6.0 |
12 | 15 | github.com/hashicorp/go-multierror v1.1.1 |
| 16 | + github.com/manifoldco/promptui v0.9.0 |
13 | 17 | github.com/openshift/library-go v0.0.0-20240621150525-4bb4238aef81 |
14 | 18 | github.com/pkg/errors v0.9.1 |
15 | 19 | github.com/prometheus/client_golang v1.19.0 |
16 | 20 | github.com/prometheus/client_model v0.6.0 |
17 | | - golang.org/x/net v0.26.0 // indirect |
18 | | - golang.org/x/sync v0.10.0 |
| 21 | + github.com/spf13/cobra v1.8.1 |
| 22 | + golang.org/x/sync v0.14.0 |
19 | 23 | k8s.io/klog/v2 v2.120.1 |
20 | 24 | kubevirt.io/containerized-data-importer v0.0.0-00010101000000-000000000000 |
21 | 25 | kubevirt.io/containerized-data-importer-api v1.60.3 |
22 | 26 | ) |
23 | 27 |
|
24 | | -require ( |
25 | | - github.com/deckhouse/virtualization/api v0.0.0-20241220154636-ce1f73499998 |
26 | | - github.com/manifoldco/promptui v0.9.0 |
27 | | - github.com/spf13/cobra v1.8.1 |
28 | | -) |
29 | | - |
30 | 28 | require ( |
31 | 29 | cloud.google.com/go v0.112.0 // indirect |
32 | 30 | cloud.google.com/go/compute/metadata v0.3.0 // indirect |
@@ -108,12 +106,13 @@ require ( |
108 | 106 | go.opentelemetry.io/otel v1.24.0 // indirect |
109 | 107 | go.opentelemetry.io/otel/metric v1.24.0 // indirect |
110 | 108 | go.opentelemetry.io/otel/trace v1.24.0 // indirect |
111 | | - golang.org/x/crypto v0.31.0 // indirect |
| 109 | + golang.org/x/crypto v0.38.0 // indirect |
112 | 110 | golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect |
| 111 | + golang.org/x/net v0.26.0 // indirect |
113 | 112 | golang.org/x/oauth2 v0.21.0 // indirect |
114 | | - golang.org/x/sys v0.28.0 // indirect |
115 | | - golang.org/x/term v0.27.0 // indirect |
116 | | - golang.org/x/text v0.21.0 // indirect |
| 113 | + golang.org/x/sys v0.33.0 // indirect |
| 114 | + golang.org/x/term v0.32.0 // indirect |
| 115 | + golang.org/x/text v0.25.0 // indirect |
117 | 116 | golang.org/x/time v0.5.0 // indirect |
118 | 117 | google.golang.org/api v0.155.0 // indirect |
119 | 118 | google.golang.org/genproto v0.0.0-20240123012728-ef4313101c80 // indirect |
@@ -143,11 +142,15 @@ require ( |
143 | 142 | replace ( |
144 | 143 | github.com/aws/aws-sdk-go => github.com/aws/aws-sdk-go v1.34.0 |
145 | 144 | github.com/chzyer/logex => github.com/chzyer/logex v1.2.1 |
| 145 | + github.com/go-jose/go-jose/v3 => github.com/go-jose/go-jose/v3 v3.0.4 |
146 | 146 | github.com/openshift/api => github.com/openshift/api v0.0.0-20230406152840-ce21e3fe5da2 |
147 | 147 | github.com/openshift/client-go => github.com/openshift/client-go v0.0.0-20230324103026-3f1513df25e0 |
148 | 148 | github.com/openshift/library-go => github.com/mhenriks/library-go v0.0.0-20230310153733-63d38b55bd5a |
149 | 149 | github.com/operator-framework/operator-lifecycle-manager => github.com/operator-framework/operator-lifecycle-manager v0.0.0-20190128024246-5eb7ae5bdb7a |
150 | 150 |
|
| 151 | + golang.org/x/crypto => golang.org/x/crypto v0.38.0 // CVE-2024-45337,CVE-2025-22869 |
| 152 | + golang.org/x/net => golang.org/x/net v0.40.0 // CVE-2025-22870, CVE-2025-22872 |
| 153 | + |
151 | 154 | k8s.io/api => k8s.io/api v0.30.2 |
152 | 155 | k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.30.2 |
153 | 156 | k8s.io/apimachinery => k8s.io/apimachinery v0.30.2 |
|
0 commit comments