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 <madhav.jiv@gmail.com>

Kubernetes-commit: b055126537b1e2b59890469dcfbf795596cc8556
  • Loading branch information
MadhavJivrajani authored and k8s-publishing-bot committed Dec 21, 2023
1 parent cb56b77 commit 1c06080
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 49 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.4
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-20231206041426-0d77c3467e29
k8s.io/apimachinery v0.0.0-20231128183834-3c8c1f22dc33
k8s.io/cli-runtime v0.0.0-20231128203254-907531b39be5
k8s.io/client-go v0.0.0-20231128190455-288368e416e4
k8s.io/component-base v0.0.0-20231128191614-d0ec94f2e2e3
k8s.io/component-helpers v0.0.0-20231128192101-4f38c3931fbe
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.110.1
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00
k8s.io/metrics v0.0.0-20231128202703-27579b8b092f
k8s.io/metrics v0.0.0
k8s.io/utils v0.0.0-20230726121419-3b25d923346b
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 @@ -81,13 +81,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.10.0 // indirect
golang.org/x/sync v0.3.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.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 @@ -96,12 +96,13 @@ require (
)

replace (
k8s.io/api => k8s.io/api v0.0.0-20231206041426-0d77c3467e29
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20231128183834-3c8c1f22dc33
k8s.io/cli-runtime => k8s.io/cli-runtime v0.0.0-20231128203254-907531b39be5
k8s.io/client-go => k8s.io/client-go v0.0.0-20231128190455-288368e416e4
k8s.io/code-generator => k8s.io/code-generator v0.0.0-20231120145104-599d00c53adf
k8s.io/component-base => k8s.io/component-base v0.0.0-20231128191614-d0ec94f2e2e3
k8s.io/component-helpers => k8s.io/component-helpers v0.0.0-20231128192101-4f38c3931fbe
k8s.io/metrics => k8s.io/metrics v0.0.0-20231128202703-27579b8b092f
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 1c06080

Please sign in to comment.