Skip to content
This repository was archived by the owner on Feb 14, 2022. It is now read-only.

Commit

Permalink
Bump vendoring
Browse files Browse the repository at this point in the history
Primary action was bumping the Kubernetes vendoring, other operations
were to make it work.

* Kubernetes to 1.16.2
* Removed `bitbucket.org/ww/goautoneg` as it is now included in Prometheus
* Changed `serializer.DirectCodecFactory` to `serializer.WithoutConversionCodecFactory` in `api/client/clientset/typed/compose/*/compose_client.go`
* Moved grpc to v1.23.1
* Ran `dep ensure -update sigs.k8s.io/structured-merge-diff`
* Ran `dep ensure -update k8s.io/utils`

Signed-off-by: Christopher Crone <[email protected]>
  • Loading branch information
chris-crone authored and silvin-lubecki committed Nov 7, 2019
1 parent 0e9cd2f commit bbd07b4
Show file tree
Hide file tree
Showing 670 changed files with 137,617 additions and 48,121 deletions.
141 changes: 97 additions & 44 deletions Gopkg.lock

Large diffs are not rendered by default.

26 changes: 10 additions & 16 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,23 @@

[[constraint]]
name = "k8s.io/apiextensions-apiserver"
version = "kubernetes-1.14.7"
version = "kubernetes-1.16.2"

[[constraint]]
name = "k8s.io/apimachinery"
version = "kubernetes-1.14.7"
version = "kubernetes-1.16.2"

[[constraint]]
name = "k8s.io/client-go"
version = "kubernetes-1.14.7"
version = "kubernetes-1.16.2"

[[constraint]]
name = "k8s.io/apiserver"
version = "kubernetes-1.14.7"
version = "kubernetes-1.16.2"

[[constraint]]
name = "k8s.io/component-base"
version = "kubernetes-1.14.7"
version = "kubernetes-1.16.2"

[[constraint]]
name = "github.com/mitchellh/go-homedir"
Expand All @@ -62,12 +62,6 @@
name = "github.com/Masterminds/semver"
version = "v1.3.1"

# Use GitHub mirror to not require Mercurial
[[override]]
name = "bitbucket.org/ww/goautoneg"
source = "https://github.com/adjust/goautoneg"
revision = "d788f35a0315672bc90f50a6145d1252a230ee0d"

# Transitive dependencies that cannot use tip version.
[[override]]
name = "github.com/xeipuuv/gojsonschema"
Expand All @@ -88,7 +82,7 @@

[[override]]
name = "google.golang.org/grpc"
version = "~v1.24.0"
version = "v1.23.1"

[[override]]
name = "github.com/ugorji/go"
Expand All @@ -100,19 +94,19 @@

[[override]]
name = "k8s.io/api"
version = "kubernetes-1.14.7"
version = "kubernetes-1.16.2"

[[override]]
name = "k8s.io/kubernetes"
version = "v1.14.7"
version = "v1.16.2"

[[override]]
name = "k8s.io/kube-aggregator"
version = "kubernetes-1.14.7"
version = "kubernetes-1.16.2"

[[override]]
name = "k8s.io/kube-openapi"
revision = "c59034cc13d587f5ef4e85ca0ade0c1866ae8e1d"
revision = "0270cf2f1c1d995d34b36019a6f65d58e6e33ad4"

[[override]]
name = "github.com/evanphx/json-patch"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func setConfigDefaults(config *rest.Config) error {
gv := v1alpha3.SchemeGroupVersion
config.GroupVersion = &gv
config.APIPath = "/apis"
config.NegotiatedSerializer = serializer.DirectCodecFactory{CodecFactory: scheme.Codecs}
config.NegotiatedSerializer = serializer.WithoutConversionCodecFactory{CodecFactory: scheme.Codecs}

if config.UserAgent == "" {
config.UserAgent = rest.DefaultKubernetesUserAgent()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func setConfigDefaults(config *rest.Config) error {
gv := v1beta1.SchemeGroupVersion
config.GroupVersion = &gv
config.APIPath = "/apis"
config.NegotiatedSerializer = serializer.DirectCodecFactory{CodecFactory: scheme.Codecs}
config.NegotiatedSerializer = serializer.WithoutConversionCodecFactory{CodecFactory: scheme.Codecs}

if config.UserAgent == "" {
config.UserAgent = rest.DefaultKubernetesUserAgent()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func setConfigDefaults(config *rest.Config) error {
gv := v1beta2.SchemeGroupVersion
config.GroupVersion = &gv
config.APIPath = "/apis"
config.NegotiatedSerializer = serializer.DirectCodecFactory{CodecFactory: scheme.Codecs}
config.NegotiatedSerializer = serializer.WithoutConversionCodecFactory{CodecFactory: scheme.Codecs}

if config.UserAgent == "" {
config.UserAgent = rest.DefaultKubernetesUserAgent()
Expand Down
2 changes: 1 addition & 1 deletion internal/registry/tableconvert_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func TestConvertTable(t *testing.T) {
{
name: "not a stack",
object: &metav1beta1.Table{},
expectedError: "unexpected object type *v1beta1.Table",
expectedError: "unexpected object type *v1.Table",
},
{
name: "single-nospec-nostatus",
Expand Down
162 changes: 0 additions & 162 deletions vendor/bitbucket.org/ww/goautoneg/autoneg.go

This file was deleted.

22 changes: 22 additions & 0 deletions vendor/github.com/blang/semver/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions vendor/github.com/blang/semver/json.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit bbd07b4

Please sign in to comment.