Skip to content

Commit f881638

Browse files
build(deps): bump k8s.io/client-go from 0.29.3 to 0.32.1
Bumps [k8s.io/client-go](https://github.com/kubernetes/client-go) from 0.29.3 to 0.32.1. - [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md) - [Commits](kubernetes/client-go@v0.29.3...v0.32.1) --- updated-dependencies: - dependency-name: k8s.io/client-go dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 954a859 commit f881638

File tree

1,714 files changed

+120460
-61920
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,714 files changed

+120460
-61920
lines changed

go.mod

+27-25
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ require (
2121
github.com/spf13/cobra v1.8.1
2222
github.com/stretchr/testify v1.9.0
2323
gopkg.in/yaml.v3 v3.0.1
24-
k8s.io/api v0.29.3
25-
k8s.io/apimachinery v0.29.3
26-
k8s.io/client-go v0.29.3
24+
k8s.io/api v0.32.1
25+
k8s.io/apimachinery v0.32.1
26+
k8s.io/client-go v0.32.1
2727
)
2828

2929
require (
@@ -42,18 +42,19 @@ require (
4242
github.com/alibabacloud-go/endpoint-util v1.1.0 // indirect
4343
github.com/alibabacloud-go/tea-xml v1.1.3 // indirect
4444
github.com/clbanning/mxj/v2 v2.5.6 // indirect
45-
github.com/davecgh/go-spew v1.1.1 // indirect
45+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
4646
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
47-
github.com/go-logr/logr v1.4.1 // indirect
48-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
47+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
48+
github.com/go-logr/logr v1.4.2 // indirect
49+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
4950
github.com/go-openapi/jsonreference v0.20.2 // indirect
50-
github.com/go-openapi/swag v0.22.3 // indirect
51+
github.com/go-openapi/swag v0.23.0 // indirect
5152
github.com/gogo/protobuf v1.3.2 // indirect
5253
github.com/golang/protobuf v1.5.4 // indirect
5354
github.com/google/gnostic-models v0.6.8 // indirect
55+
github.com/google/go-cmp v0.6.0 // indirect
5456
github.com/google/gofuzz v1.2.0 // indirect
55-
github.com/google/uuid v1.3.0 // indirect
56-
github.com/imdario/mergo v0.3.6 // indirect
57+
github.com/google/uuid v1.6.0 // indirect
5758
github.com/inconshreveable/mousetrap v1.1.0 // indirect
5859
github.com/jmespath/go-jmespath v0.4.0 // indirect
5960
github.com/josharian/intern v1.0.0 // indirect
@@ -66,28 +67,29 @@ require (
6667
github.com/modern-go/reflect2 v1.0.2 // indirect
6768
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
6869
github.com/opentracing/opentracing-go v1.2.1-0.20220228012449-10b1cf09e00b // indirect
69-
github.com/pmezard/go-difflib v1.0.0 // indirect
70+
github.com/pkg/errors v0.9.1 // indirect
71+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
7072
github.com/rivo/uniseg v0.1.0 // indirect
7173
github.com/spf13/pflag v1.0.5 // indirect
7274
github.com/tjfoc/gmsm v1.3.2 // indirect
75+
github.com/x448/float16 v0.8.4 // indirect
7376
go.uber.org/multierr v1.10.0 // indirect
74-
golang.org/x/net v0.23.0 // indirect
75-
golang.org/x/oauth2 v0.10.0 // indirect
76-
golang.org/x/sync v0.7.0 // indirect
77-
golang.org/x/sys v0.25.0 // indirect
78-
golang.org/x/term v0.18.0 // indirect
79-
golang.org/x/text v0.14.0 // indirect
80-
golang.org/x/time v0.3.0 // indirect
81-
google.golang.org/appengine v1.6.7 // indirect
82-
google.golang.org/protobuf v1.33.0 // indirect
77+
golang.org/x/net v0.30.0 // indirect
78+
golang.org/x/oauth2 v0.23.0 // indirect
79+
golang.org/x/sync v0.8.0 // indirect
80+
golang.org/x/sys v0.26.0 // indirect
81+
golang.org/x/term v0.25.0 // indirect
82+
golang.org/x/text v0.19.0 // indirect
83+
golang.org/x/time v0.7.0 // indirect
84+
google.golang.org/protobuf v1.35.1 // indirect
85+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
8386
gopkg.in/inf.v0 v0.9.1 // indirect
8487
gopkg.in/ini.v1 v1.67.0 // indirect
85-
gopkg.in/yaml.v2 v2.4.0 // indirect
86-
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
87-
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
88-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
89-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
90-
sigs.k8s.io/yaml v1.3.0 // indirect
88+
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
89+
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
90+
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
91+
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
92+
sigs.k8s.io/yaml v1.4.0 // indirect
9193
)
9294

9395
replace github.com/AliyunContainerService/ack-ram-tool/pkg/credentials/provider => ./pkg/credentials/provider

go.sum

+58-50
Large diffs are not rendered by default.

vendor/github.com/fxamacker/cbor/v2/.gitignore

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/fxamacker/cbor/v2/.golangci.yml

+104
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/fxamacker/cbor/v2/CODE_OF_CONDUCT.md

+133
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/fxamacker/cbor/v2/CONTRIBUTING.md

+41
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)