Skip to content

Commit 7ab46bb

Browse files
1gtmtamalsaha
andauthored
[cherry-pick] Update deps (#1476) (#1479)
/cherry-pick Signed-off-by: Tamal Saha <tamal@appscode.com> Co-authored-by: Tamal Saha <tamal@appscode.com>
1 parent e6837aa commit 7ab46bb

File tree

424 files changed

+73131
-437
lines changed

Some content is hidden

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

424 files changed

+73131
-437
lines changed

go.mod

Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module stash.appscode.dev/elasticsearch
22

3-
go 1.21.5
3+
go 1.21.7
44

55
require (
66
github.com/spf13/cobra v1.7.0
@@ -13,46 +13,55 @@ require (
1313
k8s.io/apimachinery v0.29.0
1414
k8s.io/client-go v0.29.0
1515
k8s.io/klog/v2 v2.110.1
16-
kmodules.xyz/client-go v0.29.4
17-
kmodules.xyz/custom-resources v0.29.0
16+
kmodules.xyz/client-go v0.29.6
17+
kmodules.xyz/custom-resources v0.29.1
1818
kmodules.xyz/offshoot-api v0.29.0
19-
stash.appscode.dev/apimachinery v0.32.1-0.20240206075719-41610d0ce38f
19+
stash.appscode.dev/apimachinery v0.32.1-0.20240209175028-1fb8e3376f2c
2020
)
2121

2222
require (
2323
github.com/Masterminds/semver/v3 v3.2.1 // indirect
2424
github.com/PuerkitoBio/purell v1.2.0 // indirect
2525
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 // indirect
26+
github.com/beorn7/perks v1.0.1 // indirect
27+
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2628
github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0 // indirect
2729
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2830
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
2931
github.com/evanphx/json-patch v5.7.0+incompatible // indirect
30-
github.com/evanphx/json-patch/v5 v5.7.0 // indirect
32+
github.com/evanphx/json-patch/v5 v5.8.0 // indirect
3133
github.com/fatih/structs v1.1.0 // indirect
32-
github.com/go-logr/logr v1.3.0 // indirect
34+
github.com/fsnotify/fsnotify v1.7.0 // indirect
35+
github.com/go-logr/logr v1.4.1 // indirect
3336
github.com/go-openapi/jsonpointer v0.20.0 // indirect
3437
github.com/go-openapi/jsonreference v0.20.2 // indirect
3538
github.com/go-openapi/swag v0.22.4 // indirect
39+
github.com/go-sql-driver/mysql v1.7.1 // indirect
3640
github.com/gogo/protobuf v1.3.2 // indirect
41+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
3742
github.com/golang/protobuf v1.5.3 // indirect
3843
github.com/google/gnostic-models v0.6.8 // indirect
3944
github.com/google/go-cmp v0.6.0 // indirect
4045
github.com/google/gofuzz v1.2.0 // indirect
46+
github.com/google/pprof v0.0.0-20221118152302-e6195bd50e26 // indirect
4147
github.com/google/uuid v1.4.0 // indirect
4248
github.com/imdario/mergo v0.3.13 // indirect
4349
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4450
github.com/josharian/intern v1.0.0 // indirect
4551
github.com/json-iterator/go v1.1.12 // indirect
4652
github.com/mailru/easyjson v0.7.7 // indirect
4753
github.com/mattn/go-isatty v0.0.18 // indirect
54+
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
4855
github.com/mitchellh/mapstructure v1.5.0 // indirect
4956
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5057
github.com/modern-go/reflect2 v1.0.2 // indirect
5158
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5259
github.com/onsi/gomega v1.30.0 // indirect
5360
github.com/pkg/errors v0.9.1 // indirect
54-
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
55-
github.com/rogpeppe/go-internal v1.11.0 // indirect
61+
github.com/prometheus/client_golang v1.18.0 // indirect
62+
github.com/prometheus/client_model v0.5.0 // indirect
63+
github.com/prometheus/common v0.45.0 // indirect
64+
github.com/prometheus/procfs v0.12.0 // indirect
5665
github.com/sergi/go-diff v1.2.0 // indirect
5766
github.com/spf13/pflag v1.0.5 // indirect
5867
github.com/yudai/gojsondiff v1.0.0 // indirect
@@ -62,7 +71,7 @@ require (
6271
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
6372
golang.org/x/net v0.19.0 // indirect
6473
golang.org/x/oauth2 v0.15.0 // indirect
65-
golang.org/x/sys v0.15.0 // indirect
74+
golang.org/x/sys v0.16.0 // indirect
6675
golang.org/x/term v0.15.0 // indirect
6776
golang.org/x/text v0.14.0 // indirect
6877
golang.org/x/time v0.5.0 // indirect
@@ -75,28 +84,30 @@ require (
7584
google.golang.org/appengine v1.6.8 // indirect
7685
google.golang.org/protobuf v1.31.0 // indirect
7786
gopkg.in/inf.v0 v0.9.1 // indirect
87+
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
7888
gopkg.in/yaml.v2 v2.4.0 // indirect
7989
gopkg.in/yaml.v3 v3.0.1 // indirect
8090
k8s.io/apiextensions-apiserver v0.29.0 // indirect
8191
k8s.io/apiserver v0.29.0 // indirect
92+
k8s.io/component-base v0.29.0 // indirect
8293
k8s.io/kube-aggregator v0.29.0 // indirect
8394
k8s.io/kube-openapi v0.0.0-20231129212854-f0671cc7e66a // indirect
8495
k8s.io/utils v0.0.0-20231127182322-b307cd553661 // indirect
8596
kmodules.xyz/apiversion v0.2.0 // indirect
86-
kmodules.xyz/objectstore-api v0.29.1-0.20240205052451-a5cf0aa669f1 // indirect
97+
kmodules.xyz/objectstore-api v0.29.1 // indirect
8798
kmodules.xyz/prober v0.29.0 // indirect
88-
sigs.k8s.io/controller-runtime v0.16.3 // indirect
99+
sigs.k8s.io/controller-runtime v0.17.0 // indirect
89100
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
90101
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
91102
sigs.k8s.io/yaml v1.4.0 // indirect
92103
)
93104

94105
replace github.com/Masterminds/sprig/v3 => github.com/gomodules/sprig/v3 v3.2.3-0.20220405051441-0a8a99bac1b8
95106

96-
replace sigs.k8s.io/controller-runtime => github.com/kmodules/controller-runtime v0.16.1-0.20231224083233-bead154270db
107+
replace sigs.k8s.io/controller-runtime => github.com/kmodules/controller-runtime v0.16.1-0.20240128092212-43c4e15c56b1
97108

98109
replace github.com/imdario/mergo => github.com/imdario/mergo v0.3.6
99110

100-
replace k8s.io/apiserver => github.com/kmodules/apiserver v0.29.1-0.20231224075222-50d5bb4aeb26
111+
replace k8s.io/apiserver => github.com/kmodules/apiserver v0.29.1-0.20240104121741-1fb217d4a573
101112

102113
replace k8s.io/kubernetes => github.com/kmodules/kubernetes v1.30.0-alpha.0.0.20231224075822-3bd9a13c86db

0 commit comments

Comments
 (0)