-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathgo.mod
More file actions
67 lines (56 loc) · 2.54 KB
/
Copy pathgo.mod
File metadata and controls
67 lines (56 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
module github.com/giantswarm/crd-docs-generator
go 1.26.0
toolchain go1.27.1
require (
github.com/Masterminds/sprig/v3 v3.3.0
github.com/ghodss/yaml v1.0.0
github.com/giantswarm/microerror v0.4.1
github.com/goccy/go-yaml v1.19.2
github.com/google/go-cmp v0.7.0
github.com/russross/blackfriday/v2 v2.1.0
github.com/spf13/cobra v1.10.2
k8s.io/apiextensions-apiserver v0.37.0
k8s.io/apimachinery v0.37.0
)
require (
dario.cat/mergo v1.0.1 // indirect
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver/v3 v3.3.1 // indirect
github.com/fxamacker/cbor/v2 v2.9.1 // indirect
github.com/go-logr/logr v1.4.3 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/huandu/xstrings v1.5.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
github.com/shopspring/decimal v1.4.0 // indirect
github.com/spf13/cast v1.7.1 // indirect
github.com/spf13/pflag v1.0.10 // indirect
github.com/x448/float16 v0.8.4 // indirect
go.yaml.in/yaml/v2 v2.4.4 // indirect
golang.org/x/crypto v0.54.0 // indirect
golang.org/x/net v0.57.0 // indirect
golang.org/x/text v0.41.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
k8s.io/klog/v2 v2.140.0 // indirect
k8s.io/kube-openapi v0.0.0-20260721132016-d427ff9ee9ad // indirect
k8s.io/utils v0.0.0-20260626114624-be93311217bd // indirect
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
sigs.k8s.io/randfill v1.0.0 // indirect
sigs.k8s.io/structured-merge-diff/v6 v6.4.2 // indirect
)
// Required until the other dependencies are updated to use the latest version (CVE-2025-22872)
replace golang.org/x/net v0.37.0 => golang.org/x/net v0.39.0
replace go.opentelemetry.io/otel/sdk v1.40.0 => go.opentelemetry.io/otel/sdk v1.44.0
replace golang.org/x/sys v0.40.0 => golang.org/x/sys v0.46.0
replace golang.org/x/text v0.38.0 => golang.org/x/text v0.40.0
// Pin transitive modules flagged by the OSS Index scan (nancy) in CI.
// go mod tidy would otherwise resolve them below the fixed versions,
// because nothing imports them directly.
replace golang.org/x/mod => golang.org/x/mod v0.40.0
replace golang.org/x/crypto => golang.org/x/crypto v0.56.0
replace google.golang.org/grpc v1.82.1 => google.golang.org/grpc v1.83.2