Skip to content

Commit e7f85a5

Browse files
committed
update go references
Signed-off-by: Mark Sagi-Kazar <[email protected]>
1 parent a7fe438 commit e7f85a5

File tree

5 files changed

+68
-381
lines changed

5 files changed

+68
-381
lines changed

go.mod

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,33 @@
1-
module github.com/banzaicloud/k8s-objectmatcher
1+
module github.com/cisco-open/k8s-objectmatcher
22

3-
go 1.15
3+
go 1.17
44

55
require (
66
emperror.dev/errors v0.8.0
77
github.com/evanphx/json-patch v4.9.0+incompatible
88
github.com/json-iterator/go v1.1.12
99
k8s.io/apimachinery v0.19.2
1010
)
11+
12+
require (
13+
github.com/davecgh/go-spew v1.1.1 // indirect
14+
github.com/go-logr/logr v0.2.0 // indirect
15+
github.com/gogo/protobuf v1.3.1 // indirect
16+
github.com/golang/protobuf v1.4.2 // indirect
17+
github.com/google/gofuzz v1.1.0 // indirect
18+
github.com/googleapis/gnostic v0.4.1 // indirect
19+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
20+
github.com/modern-go/reflect2 v1.0.2 // indirect
21+
github.com/pkg/errors v0.9.1 // indirect
22+
go.uber.org/atomic v1.7.0 // indirect
23+
go.uber.org/multierr v1.6.0 // indirect
24+
golang.org/x/net v0.0.0-20200707034311-ab3426394381 // indirect
25+
golang.org/x/text v0.3.3 // indirect
26+
google.golang.org/protobuf v1.24.0 // indirect
27+
gopkg.in/inf.v0 v0.9.1 // indirect
28+
gopkg.in/yaml.v2 v2.2.8 // indirect
29+
k8s.io/klog/v2 v2.2.0 // indirect
30+
k8s.io/kube-openapi v0.0.0-20200805222855-6aeccd4b50c6 // indirect
31+
sigs.k8s.io/structured-merge-diff/v4 v4.0.1 // indirect
32+
sigs.k8s.io/yaml v1.2.0 // indirect
33+
)

go.sum

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7
1919
github.com/evanphx/json-patch v4.9.0+incompatible h1:kLcOMZeuLAJvL2BPWLMIj5oaZQobrkAqrL+WFZwQses=
2020
github.com/evanphx/json-patch v4.9.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk=
2121
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
22-
github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=
2322
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=
2423
github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
2524
github.com/go-logr/logr v0.1.0/go.mod h1:ixOQHD9gLJUVQQ2ZOR7zLEifBX6tGkNJF4QyIY7sIas=

tests/go.mod

Lines changed: 37 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,48 @@
1-
module github.com/banzaicloud/k8s-objectmatcher/tests
1+
module github.com/cisco-open/k8s-objectmatcher/tests
22

3-
go 1.15
3+
go 1.17
44

55
require (
66
emperror.dev/errors v0.8.0
7-
github.com/banzaicloud/k8s-objectmatcher v0.0.0
7+
github.com/cisco-open/k8s-objectmatcher v0.0.0-00010101000000-000000000000
88
k8s.io/api v0.21.3
99
k8s.io/apiextensions-apiserver v0.21.3
1010
k8s.io/apimachinery v0.21.3
1111
k8s.io/client-go v0.21.3
1212
k8s.io/klog/v2 v2.8.0
1313
)
1414

15-
replace github.com/banzaicloud/k8s-objectmatcher => ../
15+
require (
16+
github.com/davecgh/go-spew v1.1.1 // indirect
17+
github.com/evanphx/json-patch v4.9.0+incompatible // indirect
18+
github.com/go-logr/logr v0.4.0 // indirect
19+
github.com/gogo/protobuf v1.3.2 // indirect
20+
github.com/golang/protobuf v1.4.3 // indirect
21+
github.com/google/go-cmp v0.5.4 // indirect
22+
github.com/google/gofuzz v1.1.0 // indirect
23+
github.com/googleapis/gnostic v0.4.1 // indirect
24+
github.com/imdario/mergo v0.3.5 // indirect
25+
github.com/json-iterator/go v1.1.12 // indirect
26+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
27+
github.com/modern-go/reflect2 v1.0.2 // indirect
28+
github.com/pkg/errors v0.9.1 // indirect
29+
github.com/spf13/pflag v1.0.5 // indirect
30+
go.uber.org/atomic v1.7.0 // indirect
31+
go.uber.org/multierr v1.6.0 // indirect
32+
golang.org/x/net v0.0.0-20210224082022-3d97a244fca7 // indirect
33+
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect
34+
golang.org/x/sys v0.0.0-20210426230700-d19ff857e887 // indirect
35+
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
36+
golang.org/x/text v0.3.4 // indirect
37+
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
38+
google.golang.org/appengine v1.6.5 // indirect
39+
google.golang.org/protobuf v1.25.0 // indirect
40+
gopkg.in/inf.v0 v0.9.1 // indirect
41+
gopkg.in/yaml.v2 v2.4.0 // indirect
42+
k8s.io/kube-openapi v0.0.0-20210305001622-591a79e4bda7 // indirect
43+
k8s.io/utils v0.0.0-20201110183641-67b214c5f920 // indirect
44+
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect
45+
sigs.k8s.io/yaml v1.2.0 // indirect
46+
)
47+
48+
replace github.com/cisco-open/k8s-objectmatcher => ../

0 commit comments

Comments
 (0)