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: ad5cf74325652795717d80940e0e04ed5b7c047d
  • Loading branch information
MadhavJivrajani authored and k8s-publishing-bot committed Dec 21, 2023
1 parent b8aa229 commit 20cd469
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 47 deletions.
43 changes: 22 additions & 21 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.7.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.8.2
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-20231101132117-a4f9a1a7752b
k8s.io/apimachinery v0.0.0-20231101131600-46a872ec555c
k8s.io/cli-runtime v0.0.0-20231101143348-8fce7bfe1c63
k8s.io/client-go v0.0.0-20231101134012-6ecf5b9145fb
k8s.io/component-base v0.0.0-20231101134853-0b8e595eb8b4
k8s.io/component-helpers v0.0.0-20231101135125-a510ccaf06ea
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.100.1
k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9
k8s.io/metrics v0.0.0-20231101143045-6dfbfa038e75
k8s.io/metrics v0.0.0
k8s.io/utils v0.0.0-20230406110748-d93618cff8a2
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd
sigs.k8s.io/kustomize/kustomize/v5 v5.0.4-0.20230601165947-6ce0bf390ce3
Expand Down Expand Up @@ -80,13 +80,13 @@ require (
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/xlab/treeprint v1.2.0 // indirect
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/oauth2 v0.8.0 // indirect
golang.org/x/sync v0.2.0 // indirect
golang.org/x/term v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.org/x/sync v0.5.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.8.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 @@ -95,12 +95,13 @@ require (
)

replace (
k8s.io/api => k8s.io/api v0.0.0-20231101132117-a4f9a1a7752b
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20231101131600-46a872ec555c
k8s.io/cli-runtime => k8s.io/cli-runtime v0.0.0-20231101143348-8fce7bfe1c63
k8s.io/client-go => k8s.io/client-go v0.0.0-20231101134012-6ecf5b9145fb
k8s.io/code-generator => k8s.io/code-generator v0.0.0-20231101131105-0a2d87a1f2cc
k8s.io/component-base => k8s.io/component-base v0.0.0-20231101134853-0b8e595eb8b4
k8s.io/component-helpers => k8s.io/component-helpers v0.0.0-20231101135125-a510ccaf06ea
k8s.io/metrics => k8s.io/metrics v0.0.0-20231101143045-6dfbfa038e75
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 20cd469

Please sign in to comment.