Skip to content

Commit f0c1ce0

Browse files
committed
Update deps
Signed-off-by: Tamal Saha <tamal@appscode.com>
1 parent c71863a commit f0c1ce0

File tree

332 files changed

+19659
-14788
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

332 files changed

+19659
-14788
lines changed

charts/kubevault-operator/values.openapiv3_schema.yaml

Lines changed: 108 additions & 26 deletions
Large diffs are not rendered by default.

charts/kubevault-webhook-server/values.openapiv3_schema.yaml

Lines changed: 101 additions & 24 deletions
Large diffs are not rendered by default.

charts/kubevault/values.openapiv3_schema.yaml

Lines changed: 222 additions & 56 deletions
Large diffs are not rendered by default.

charts/secrets-store-reader/values.openapiv3_schema.yaml

Lines changed: 101 additions & 24 deletions
Large diffs are not rendered by default.

go.mod

Lines changed: 28 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
module kubevault.dev/installer
22

3-
go 1.21.5
3+
go 1.22.0
4+
5+
toolchain go1.23.2
46

57
require (
68
github.com/Masterminds/semver/v3 v3.2.1
79
github.com/Masterminds/sprig/v3 v3.2.2
810
github.com/gogo/protobuf v1.3.2
9-
github.com/google/go-containerregistry v0.17.0
11+
github.com/google/go-containerregistry v0.19.1
1012
github.com/google/gofuzz v1.2.0
1113
github.com/spf13/pflag v1.0.5
1214
github.com/yudai/gojsondiff v1.0.0
1315
gomodules.xyz/go-sh v0.1.0
1416
gomodules.xyz/semvers v0.0.0-20220316103017-cfbe8c37b63d
15-
k8s.io/api v0.29.0
16-
k8s.io/apimachinery v0.29.0
17-
k8s.io/klog/v2 v2.110.1
18-
kmodules.xyz/client-go v0.29.6
17+
k8s.io/api v0.30.1
18+
k8s.io/apimachinery v0.30.1
19+
k8s.io/klog/v2 v2.120.1
20+
kmodules.xyz/client-go v0.30.31
1921
kmodules.xyz/go-containerregistry v0.0.12
20-
kmodules.xyz/schema-checker v0.4.1
22+
kmodules.xyz/schema-checker v0.4.2
2123
sigs.k8s.io/yaml v1.4.0
2224
)
2325

@@ -26,55 +28,49 @@ require (
2628
github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0 // indirect
2729
github.com/containerd/stargz-snapshotter/estargz v0.14.3 // indirect
2830
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
29-
github.com/docker/cli v24.0.7+incompatible // indirect
31+
github.com/docker/cli v24.0.0+incompatible // indirect
3032
github.com/docker/distribution v2.8.2+incompatible // indirect
31-
github.com/docker/docker v24.0.7+incompatible // indirect
33+
github.com/docker/docker v25.0.6+incompatible // indirect
3234
github.com/docker/docker-credential-helpers v0.7.0 // indirect
33-
github.com/dustin/go-humanize v1.0.1 // indirect
34-
github.com/fatih/structs v1.1.0 // indirect
3535
github.com/go-logr/logr v1.4.1 // indirect
3636
github.com/gobeam/stringy v0.0.5 // indirect
37-
github.com/golang/protobuf v1.5.3 // indirect
37+
github.com/golang/protobuf v1.5.4 // indirect
3838
github.com/google/go-cmp v0.6.0 // indirect
39-
github.com/google/uuid v1.4.0 // indirect
40-
github.com/huandu/xstrings v1.3.2 // indirect
39+
github.com/google/uuid v1.6.0 // indirect
40+
github.com/huandu/xstrings v1.3.1 // indirect
41+
github.com/imdario/mergo v0.3.13 // indirect
4142
github.com/json-iterator/go v1.1.12 // indirect
42-
github.com/klauspost/compress v1.17.0 // indirect
43-
github.com/mattn/go-colorable v0.1.13 // indirect
44-
github.com/mitchellh/copystructure v1.2.0 // indirect
43+
github.com/klauspost/compress v1.16.5 // indirect
44+
github.com/mattn/go-isatty v0.0.16 // indirect
45+
github.com/mitchellh/copystructure v1.0.0 // indirect
4546
github.com/mitchellh/go-homedir v1.1.0 // indirect
46-
github.com/mitchellh/reflectwalk v1.0.2 // indirect
47+
github.com/mitchellh/reflectwalk v1.0.0 // indirect
4748
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4849
github.com/modern-go/reflect2 v1.0.2 // indirect
4950
github.com/opencontainers/go-digest v1.0.0 // indirect
5051
github.com/opencontainers/image-spec v1.1.0-rc3 // indirect
5152
github.com/pkg/errors v0.9.1 // indirect
5253
github.com/sergi/go-diff v1.2.0 // indirect
5354
github.com/shopspring/decimal v1.2.0 // indirect
54-
github.com/sirupsen/logrus v1.9.1 // indirect
55-
github.com/spf13/cast v1.5.0 // indirect
55+
github.com/sirupsen/logrus v1.9.3 // indirect
56+
github.com/spf13/cast v1.3.1 // indirect
5657
github.com/vbatts/tar-split v0.11.3 // indirect
5758
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
58-
golang.org/x/crypto v0.17.0 // indirect
59-
golang.org/x/net v0.19.0 // indirect
60-
golang.org/x/sync v0.5.0 // indirect
61-
golang.org/x/sys v0.16.0 // indirect
62-
golang.org/x/text v0.14.0 // indirect
63-
gomodules.xyz/encoding v0.0.7 // indirect
64-
gomodules.xyz/jsonpath v0.0.2 // indirect
65-
gomodules.xyz/mergo v0.3.13 // indirect
66-
google.golang.org/protobuf v1.31.0 // indirect
59+
golang.org/x/crypto v0.27.0 // indirect
60+
golang.org/x/net v0.29.0 // indirect
61+
golang.org/x/sync v0.8.0 // indirect
62+
golang.org/x/sys v0.25.0 // indirect
63+
golang.org/x/text v0.18.0 // indirect
64+
google.golang.org/protobuf v1.33.0 // indirect
6765
gopkg.in/inf.v0 v0.9.1 // indirect
6866
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
6967
gopkg.in/yaml.v2 v2.4.0 // indirect
70-
gotest.tools/v3 v3.1.0 // indirect
71-
k8s.io/utils v0.0.0-20231127182322-b307cd553661 // indirect
68+
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
7269
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
7370
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
7471
)
7572

7673
replace (
77-
github.com/Masterminds/sprig/v3 => github.com/gomodules/sprig/v3 v3.2.3-0.20220405051441-0a8a99bac1b8
7874
github.com/imdario/mergo => github.com/imdario/mergo v0.3.6
7975
sigs.k8s.io/yaml => github.com/kmodules/yaml v1.4.1-0.20231224133800-a4e3f1abb174
8076
)

0 commit comments

Comments
 (0)