1
1
module helm-template
2
2
3
3
go 1.22.3
4
- toolchain go1.22.5
4
+ toolchain go1.22.7
5
5
6
6
// Always use the local version of troubleshoot so as to build using
7
7
// the latest version of the library. This will ensure the example
@@ -10,18 +10,20 @@ replace github.com/replicatedhq/troubleshoot v0.0.0 => ../../../
10
10
11
11
require (
12
12
github.com/replicatedhq/troubleshoot v0.0.0
13
- helm.sh/helm/v3 v3.15.4
13
+ helm.sh/helm/v3 v3.16.1
14
14
sigs.k8s.io/yaml v1.4.0
15
15
)
16
16
17
17
require (
18
+ dario.cat/mergo v1.0.1 // indirect
18
19
github.com/BurntSushi/toml v1.4.0 // indirect
19
20
github.com/Masterminds/goutils v1.1.1 // indirect
20
- github.com/Masterminds/semver/v3 v3.2.1 // indirect
21
- github.com/Masterminds/sprig/v3 v3.2.3 // indirect
21
+ github.com/Masterminds/semver/v3 v3.3.0 // indirect
22
+ github.com/Masterminds/sprig/v3 v3.3.0 // indirect
22
23
github.com/cyphar/filepath-securejoin v0.3.1 // indirect
23
24
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
24
25
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
26
+ github.com/fxamacker/cbor/v2 v2.7.0 // indirect
25
27
github.com/go-logr/logr v1.4.2 // indirect
26
28
github.com/go-openapi/jsonpointer v0.21.0 // indirect
27
29
github.com/go-openapi/jsonreference v0.21.0 // indirect
@@ -30,10 +32,10 @@ require (
30
32
github.com/gogo/protobuf v1.3.2 // indirect
31
33
github.com/golang/protobuf v1.5.4 // indirect
32
34
github.com/google/gnostic-models v0.6.8 // indirect
35
+ github.com/google/go-cmp v0.6.0 // indirect
33
36
github.com/google/gofuzz v1.2.0 // indirect
34
37
github.com/google/uuid v1.6.0 // indirect
35
- github.com/huandu/xstrings v1.4.0 // indirect
36
- github.com/imdario/mergo v0.3.15 // indirect
38
+ github.com/huandu/xstrings v1.5.0 // indirect
37
39
github.com/josharian/intern v1.0.0 // indirect
38
40
github.com/json-iterator/go v1.1.12 // indirect
39
41
github.com/mailru/easyjson v0.7.7 // indirect
@@ -43,30 +45,31 @@ require (
43
45
github.com/modern-go/reflect2 v1.0.2 // indirect
44
46
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
45
47
github.com/pkg/errors v0.9.1 // indirect
46
- github.com/shopspring/decimal v1.3.1 // indirect
47
- github.com/spf13/cast v1.6.0 // indirect
48
+ github.com/shopspring/decimal v1.4.0 // indirect
49
+ github.com/spf13/cast v1.7.0 // indirect
50
+ github.com/x448/float16 v0.8.4 // indirect
48
51
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
49
52
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
50
53
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
51
- golang.org/x/crypto v0.26 .0 // indirect
52
- golang.org/x/net v0.28 .0 // indirect
54
+ golang.org/x/crypto v0.27 .0 // indirect
55
+ golang.org/x/net v0.29 .0 // indirect
53
56
golang.org/x/oauth2 v0.22.0 // indirect
54
- golang.org/x/sys v0.24 .0 // indirect
55
- golang.org/x/term v0.23 .0 // indirect
56
- golang.org/x/text v0.17 .0 // indirect
57
+ golang.org/x/sys v0.25 .0 // indirect
58
+ golang.org/x/term v0.24 .0 // indirect
59
+ golang.org/x/text v0.18 .0 // indirect
57
60
golang.org/x/time v0.5.0 // indirect
58
- google.golang.org/protobuf v1.33.0 // indirect
61
+ google.golang.org/protobuf v1.34.2 // indirect
59
62
gopkg.in/inf.v0 v0.9.1 // indirect
60
63
gopkg.in/yaml.v2 v2.4.0 // indirect
61
64
gopkg.in/yaml.v3 v3.0.1 // indirect
62
- k8s.io/api v0.30.3 // indirect
63
- k8s.io/apiextensions-apiserver v0.30.3 // indirect
64
- k8s.io/apimachinery v0.30.3 // indirect
65
- k8s.io/client-go v0.30.3 // indirect
65
+ k8s.io/api v0.31.0 // indirect
66
+ k8s.io/apiextensions-apiserver v0.31.0 // indirect
67
+ k8s.io/apimachinery v0.31.0 // indirect
68
+ k8s.io/client-go v0.31.0 // indirect
66
69
k8s.io/klog/v2 v2.130.1 // indirect
67
70
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
68
- k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
69
- sigs.k8s.io/controller-runtime v0.18.5 // indirect
71
+ k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
72
+ sigs.k8s.io/controller-runtime v0.19.0 // indirect
70
73
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
71
74
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
72
75
)
0 commit comments