Skip to content
This repository was archived by the owner on Dec 12, 2025. It is now read-only.

Commit a4a12cf

Browse files
authored
Upgrade lib versions so that we can get eventually get rid of the replace directive in go.mod (#35)
1 parent c8a8af3 commit a4a12cf

File tree

2 files changed

+101
-33
lines changed

2 files changed

+101
-33
lines changed

go.mod

Lines changed: 25 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,38 @@ module github.com/mongodb/mongodb-kubernetes-operator
33
go 1.13
44

55
require (
6+
github.com/Azure/go-autorest/autorest v0.9.7 // indirect
7+
github.com/Azure/go-autorest/autorest/adal v0.8.3 // indirect
8+
github.com/cespare/xxhash/v2 v2.1.1 // indirect
9+
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32
10+
github.com/gobuffalo/envy v1.7.1 // indirect
11+
github.com/golang/protobuf v1.3.5 // indirect
612
github.com/hashicorp/go-multierror v1.0.0
7-
github.com/operator-framework/operator-sdk v0.15.1
8-
github.com/spf13/cast v1.3.1 // indirect
13+
github.com/hashicorp/golang-lru v0.5.4 // indirect
14+
github.com/imdario/mergo v0.3.9
15+
github.com/json-iterator/go v1.1.9 // indirect
16+
github.com/klauspost/compress v1.9.8 // indirect
17+
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
18+
github.com/operator-framework/operator-sdk v0.16.0
19+
github.com/prometheus/procfs v0.0.11 // indirect
20+
github.com/rogpeppe/go-internal v1.5.2 // indirect
21+
github.com/spf13/cobra v0.0.7 // indirect
922
github.com/stretchr/testify v1.4.0
10-
go.mongodb.org/mongo-driver v1.3.1
11-
go.uber.org/zap v1.13.0
12-
golang.org/x/net v0.0.0-20191028085509-fe3aa8a45271
13-
k8s.io/api v0.16.0
14-
k8s.io/apiextensions-apiserver v1.18.0-beta.1
15-
k8s.io/apimachinery v0.16.0
23+
go.mongodb.org/mongo-driver v1.3.2
24+
go.uber.org/zap v1.14.1
25+
google.golang.org/appengine v1.6.6 // indirect
26+
k8s.io/api v0.0.0
27+
k8s.io/apiextensions-apiserver v0.0.0
28+
k8s.io/apimachinery v0.0.0
1629
k8s.io/client-go v12.0.0+incompatible
30+
k8s.io/kube-openapi v0.0.0-20200316234421-82d701f24f9d // indirect
1731
sigs.k8s.io/controller-runtime v0.4.0
18-
sigs.k8s.io/yaml v1.1.0
19-
github.com/imdario/mergo v0.3.8
32+
sigs.k8s.io/yaml v1.2.0
2033
)
2134

22-
// TODO: These replace statements need to be completely removed. These exist as the operator-sdk currently requires
23-
// them. Once they are fully removed, we should only include "require" statements in go.mod
35+
replace github.com/docker/docker => github.com/moby/moby v17.12.0-ce-rc1.0.20200309214505-aa6a9891b09c+incompatible // Required by Helm
2436

37+
// Required by operator-sdk 0.16.0
2538
// Pinned to kubernetes-1.16.2
2639
replace (
2740
k8s.io/api => k8s.io/api v0.0.0-20191016110408-35e52d86657a
@@ -46,7 +59,3 @@ replace (
4659
k8s.io/metrics => k8s.io/metrics v0.0.0-20191016113814-3b1a734dba6e
4760
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.0.0-20191016112829-06bb3c9d77c9
4861
)
49-
50-
replace github.com/docker/docker => github.com/moby/moby v0.7.3-0.20190826074503-38ab9da00309 // Required by Helm
51-
52-
replace github.com/openshift/api => github.com/openshift/api v0.0.0-20190924102528-32369d4db2ad // Required until https://github.com/operator-framework/operator-lifecycle-manager/pull/1241 is resolved

0 commit comments

Comments
 (0)