Skip to content

Commit

Permalink
.*: bump golang.org/x/tools to v0.16.1
Browse files Browse the repository at this point in the history
Bumping tools to include the fix for a nil pointer
deref error in go/types. See golang/go#64812
for more details.

This fix is needed for when we bump to go1.22.

Signed-off-by: Madhav Jivrajani <[email protected]>

Kubernetes-commit: 18f057f9b74256d45138538a6168802fe96f5e65
  • Loading branch information
MadhavJivrajani authored and k8s-publishing-bot committed Dec 21, 2023
1 parent c918c26 commit c12c8d7
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 45 deletions.
41 changes: 21 additions & 20 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ require (
github.com/spf13/cobra v1.6.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.8.1
golang.org/x/sys v0.13.0
golang.org/x/sys v0.15.0
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.0.0-20231218172644-61e3b8f66f95
k8s.io/apimachinery v0.0.0-20231101131425-467db0e39959
k8s.io/cli-runtime v0.0.0-20231218183611-a159b95879b5
k8s.io/client-go v0.0.0-20231218173536-6e852562a5e3
k8s.io/component-base v0.0.0-20231218174708-68214f1bef46
k8s.io/component-helpers v0.0.0-20231218175034-6d6b55658b5f
k8s.io/api v0.0.0
k8s.io/apimachinery v0.0.0
k8s.io/cli-runtime v0.0.0
k8s.io/client-go v0.0.0
k8s.io/component-base v0.0.0
k8s.io/component-helpers v0.0.0
k8s.io/klog/v2 v2.90.1
k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f
k8s.io/metrics v0.0.0-20231218183224-79b09977e7b6
k8s.io/metrics v0.0.0
k8s.io/utils v0.0.0-20230209194617-a36077c30491
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd
sigs.k8s.io/kustomize/kustomize/v5 v5.0.1
Expand Down Expand Up @@ -80,12 +80,12 @@ require (
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/xlab/treeprint v1.1.0 // indirect
go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/oauth2 v0.7.0 // indirect
golang.org/x/term v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.org/x/term v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/tools v0.12.0 // indirect
golang.org/x/tools v0.16.1 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
Expand All @@ -94,12 +94,13 @@ require (
)

replace (
k8s.io/api => k8s.io/api v0.0.0-20231218172644-61e3b8f66f95
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20231101131425-467db0e39959
k8s.io/cli-runtime => k8s.io/cli-runtime v0.0.0-20231218183611-a159b95879b5
k8s.io/client-go => k8s.io/client-go v0.0.0-20231218173536-6e852562a5e3
k8s.io/code-generator => k8s.io/code-generator v0.0.0-20231218141912-f5987873bc34
k8s.io/component-base => k8s.io/component-base v0.0.0-20231218174708-68214f1bef46
k8s.io/component-helpers => k8s.io/component-helpers v0.0.0-20231218175034-6d6b55658b5f
k8s.io/metrics => k8s.io/metrics v0.0.0-20231218183224-79b09977e7b6
k8s.io/api => ../api
k8s.io/apimachinery => ../apimachinery
k8s.io/cli-runtime => ../cli-runtime
k8s.io/client-go => ../client-go
k8s.io/code-generator => ../code-generator
k8s.io/component-base => ../component-base
k8s.io/component-helpers => ../component-helpers
k8s.io/kubectl => ../kubectl
k8s.io/metrics => ../metrics
)
Loading

0 comments on commit c12c8d7

Please sign in to comment.