Skip to content

Commit

Permalink
Update indirect dependencies with ./hack/update-vendor.sh.
Browse files Browse the repository at this point in the history
Implementing custom marshaling on several API types for CBOR makes the upstream CBOR library an
indirect dependency of several staging modules.

Kubernetes-commit: d7cccf3e792ad08d9ab2e7aac394f8e6ddcf3466
  • Loading branch information
benluddy authored and k8s-publishing-bot committed May 17, 2024
1 parent 3f73ad3 commit 263e7e6
Show file tree
Hide file tree
Showing 2 changed files with 105 additions and 18 deletions.
25 changes: 19 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ require (
github.com/gogo/protobuf v1.3.2
github.com/stretchr/testify v1.8.4
google.golang.org/grpc v1.59.0
k8s.io/api v0.0.0-20240529203521-42619825cf01
k8s.io/apimachinery v0.0.0-20240529203233-63ab494c70e6
k8s.io/apiserver v0.0.0-20240529205642-259cd1817cb1
k8s.io/client-go v0.0.0-20240529203923-e8b54718d08b
k8s.io/component-base v0.0.0-20240529204824-47eccf3754e9
k8s.io/cri-api v0.0.0-20240529211729-363354bd9a0c
k8s.io/api v0.0.0
k8s.io/apimachinery v0.0.0
k8s.io/apiserver v0.0.0
k8s.io/client-go v0.0.0
k8s.io/component-base v0.0.0
k8s.io/cri-api v0.0.0
k8s.io/klog/v2 v2.120.1
k8s.io/utils v0.0.0-20230726121419-3b25d923346b
)
Expand All @@ -24,6 +24,7 @@ require (
github.com/blang/semver/v4 v4.0.0 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/fxamacker/cbor/v2 v2.6.0 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/go-cmp v0.6.0 // indirect
Expand All @@ -42,6 +43,7 @@ require (
github.com/prometheus/procfs v0.12.0 // indirect
github.com/spf13/cobra v1.8.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/x448/float16 v0.8.4 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/oauth2 v0.20.0 // indirect
golang.org/x/sys v0.20.0 // indirect
Expand All @@ -57,3 +59,14 @@ require (
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
sigs.k8s.io/yaml v1.4.0 // indirect
)

replace (
k8s.io/api => ../api
k8s.io/apimachinery => ../apimachinery
k8s.io/apiserver => ../apiserver
k8s.io/client-go => ../client-go
k8s.io/component-base => ../component-base
k8s.io/cri-api => ../cri-api
k8s.io/kms => ../kms
k8s.io/kubelet => ../kubelet
)
Loading

0 comments on commit 263e7e6

Please sign in to comment.