Skip to content

Commit ef236c3

Browse files
committed
vendor: Bump client-go and library-go to current 4.6 tips (2020-07-24)
Pulling in [1,2]. Generated with: $ go get -u github.com/openshift/client-go@83993cebb5aee533bf2f2dded2d87b9e32835f4a go: github.com/openshift/client-go 94e1065ab1f8a34cd8a0e1edb9ba8be0326e77b5 => v0.0.0-20200723130357-94e1065ab1f8 $ go get -u github.com/openshift/library-go@cc498c355c99983057e9e01f3abcceb40ca5c298 go: github.com/openshift/library-go 1ed21c4fa86c2bf6034823231b8e52df4f068d58 => v0.0.0-20200724192307-1ed21c4fa86c $ go mod tidy $ go mod vendor $ git add -A go.* vendor using: $ go version go version go1.14.4 linux/amd64 This gets us up to 1.19 for the Kubernetes-based dependencies, and should hopefully allow me to bump openshift/api to pick up [3] without hitting: go: github.com/openshift/cluster-version-operator/lib imports k8s.io/client-go/kubernetes/scheme imports k8s.io/api/auditregistration/v1alpha1: package provided by k8s.io/api at latest version v0.18.6 but not at required version v0.19.0-rc.2 And the API bump in turn will allow us to start using the new Release type. [1]: openshift/client-go@94e1065 [2]: openshift/library-go@1ed21c4 [3]: openshift/api@3ae6754
1 parent 7141c36 commit ef236c3

File tree

825 files changed

+68825
-22266
lines changed

Some content is hidden

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

825 files changed

+68825
-22266
lines changed

go.mod

Lines changed: 14 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -8,28 +8,23 @@ require (
88
github.com/davecgh/go-spew v1.1.1
99
github.com/evanphx/json-patch v4.5.0+incompatible // indirect
1010
github.com/ghodss/yaml v1.0.0
11-
github.com/golang/groupcache v0.0.0-20191002201903-404acd9df4cc // indirect
1211
github.com/google/uuid v1.1.1
13-
github.com/googleapis/gnostic v0.3.1 // indirect
1412
github.com/hashicorp/golang-lru v0.5.3 // indirect
1513
github.com/imdario/mergo v0.3.8 // indirect
16-
github.com/openshift/api v0.0.0-20200623075207-eb651a5bb0ad
17-
github.com/openshift/client-go v0.0.0-20200623090625-83993cebb5ae
18-
github.com/openshift/library-go v0.0.0-20200709151624-cc498c355c99
19-
github.com/pkg/errors v0.8.1
20-
github.com/prometheus/client_golang v1.1.0
14+
github.com/openshift/api v0.0.0-20200723134351-89de68875e7c
15+
github.com/openshift/client-go v0.0.0-20200723130357-94e1065ab1f8
16+
github.com/openshift/library-go v0.0.0-20200724192307-1ed21c4fa86c
17+
github.com/pkg/errors v0.9.1
18+
github.com/prometheus/client_golang v1.7.1
2119
github.com/prometheus/client_model v0.2.0
22-
github.com/prometheus/common v0.7.0 // indirect
23-
github.com/prometheus/procfs v0.0.5 // indirect
24-
github.com/spf13/cobra v0.0.5
25-
golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975
26-
golang.org/x/time v0.0.0-20190921001708-c4c64cad1fd0
27-
google.golang.org/appengine v1.6.4 // indirect
28-
k8s.io/api v0.18.4
29-
k8s.io/apiextensions-apiserver v0.18.3
30-
k8s.io/apimachinery v0.18.4
31-
k8s.io/client-go v0.18.3
20+
github.com/spf13/cobra v1.0.0
21+
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
22+
golang.org/x/time v0.0.0-20191024005414-555d28b269f0
23+
k8s.io/api v0.19.0-rc.2
24+
k8s.io/apiextensions-apiserver v0.19.0-rc.2
25+
k8s.io/apimachinery v0.19.0-rc.2
26+
k8s.io/client-go v0.19.0-rc.2
3227
k8s.io/klog v1.0.0
33-
k8s.io/kube-aggregator v0.18.3
34-
k8s.io/utils v0.0.0-20200324210504-a9aa75ae1b89
28+
k8s.io/kube-aggregator v0.19.0-rc.2
29+
k8s.io/utils v0.0.0-20200720150651-0bdb4ca86cbc
3530
)

go.sum

Lines changed: 224 additions & 86 deletions
Large diffs are not rendered by default.

vendor/github.com/cespare/xxhash/v2/.travis.yml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cespare/xxhash/v2/LICENSE.txt

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cespare/xxhash/v2/README.md

Lines changed: 67 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cespare/xxhash/v2/go.mod

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cespare/xxhash/v2/go.sum

Whitespace-only changes.

vendor/github.com/cespare/xxhash/v2/xxhash.go

Lines changed: 236 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cespare/xxhash/v2/xxhash_amd64.go

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)