Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 80b8c7b

Browse files
authored
Merge pull request #133823 from dims/update-to-spf13/pflag-to-prevent-CI-break
Update to spf13/pflag to prevent CI break
2 parents f424767 + a41de87 commit 80b8c7b

File tree

73 files changed

+930
-205
lines changed

Some content is hidden

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

73 files changed

+930
-205
lines changed

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ require (
5353
github.com/prometheus/client_model v0.6.2
5454
github.com/prometheus/common v0.64.0
5555
github.com/robfig/cron/v3 v3.0.1
56-
github.com/spf13/cobra v1.9.1
57-
github.com/spf13/pflag v1.0.6
56+
github.com/spf13/cobra v1.10.0
57+
github.com/spf13/pflag v1.0.9
5858
github.com/stretchr/testify v1.10.0
5959
github.com/vishvananda/netlink v1.3.1
6060
github.com/vishvananda/netns v0.0.5

go.sum

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -299,10 +299,11 @@ github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ
299299
github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
300300
github.com/soheilhy/cmux v0.1.5 h1:jjzc5WVemNEDTLwv9tlmemhC73tI08BNOIGwBOo10Js=
301301
github.com/soheilhy/cmux v0.1.5/go.mod h1:T7TcVDs9LWfQgPlPsdngu6I6QIoyIFZDDC6sNE1GqG0=
302-
github.com/spf13/cobra v1.9.1 h1:CXSaggrXdbHK9CF+8ywj8Amf7PBRmPCOJugH954Nnlo=
303-
github.com/spf13/cobra v1.9.1/go.mod h1:nDyEzZ8ogv936Cinf6g1RU9MRY64Ir93oCnqb9wxYW0=
304-
github.com/spf13/pflag v1.0.6 h1:jFzHGLGAlb3ruxLB8MhbI6A8+AQX/2eW4qeyNZXNp2o=
305-
github.com/spf13/pflag v1.0.6/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
302+
github.com/spf13/cobra v1.10.0 h1:a5/WeUlSDCvV5a45ljW2ZFtV0bTDpkfSAj3uqB6Sc+0=
303+
github.com/spf13/cobra v1.10.0/go.mod h1:9dhySC7dnTtEiqzmqfkLj47BslqLCUPMXjG2lj/NgoE=
304+
github.com/spf13/pflag v1.0.8/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
305+
github.com/spf13/pflag v1.0.9 h1:9exaQaMOCwffKiiiYk6/BndUBv+iRViNW+4lEMi0PvY=
306+
github.com/spf13/pflag v1.0.9/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
306307
github.com/spiffe/go-spiffe/v2 v2.5.0/go.mod h1:P+NxobPc6wXhVtINNtFjNWGBTreew1GBUCwT2wPmb7g=
307308
github.com/stoewer/go-strcase v1.3.0 h1:g0eASXYtp+yvN9fK8sH94oCIk0fau9uV1/ZdJ0AVEzs=
308309
github.com/stoewer/go-strcase v1.3.0/go.mod h1:fAH5hQ5pehh+j3nZfvwdk2RgEgQjAoM8wodgtPmh1xo=

staging/src/k8s.io/api/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ require (
2020
github.com/kr/pretty v0.3.1 // indirect
2121
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
2222
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
23-
github.com/spf13/pflag v1.0.6 // indirect
23+
github.com/spf13/pflag v1.0.9 // indirect
2424
github.com/x448/float16 v0.8.4 // indirect
2525
go.yaml.in/yaml/v2 v2.4.2 // indirect
2626
golang.org/x/net v0.40.0 // indirect

staging/src/k8s.io/api/go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

staging/src/k8s.io/apiextensions-apiserver/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ require (
1414
github.com/google/gnostic-models v0.7.0
1515
github.com/google/go-cmp v0.7.0
1616
github.com/google/uuid v1.6.0
17-
github.com/spf13/cobra v1.9.1
18-
github.com/spf13/pflag v1.0.6
17+
github.com/spf13/cobra v1.10.0
18+
github.com/spf13/pflag v1.0.9
1919
github.com/stretchr/testify v1.10.0
2020
go.etcd.io/etcd/client/pkg/v3 v3.6.4
2121
go.etcd.io/etcd/client/v3 v3.6.4

staging/src/k8s.io/apiextensions-apiserver/go.sum

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

staging/src/k8s.io/apimachinery/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ require (
1717
github.com/moby/spdystream v0.5.0
1818
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f
1919
github.com/pmezard/go-difflib v1.0.0
20-
github.com/spf13/pflag v1.0.6
20+
github.com/spf13/pflag v1.0.9
2121
github.com/stretchr/testify v1.10.0
2222
golang.org/x/net v0.40.0
2323
golang.org/x/time v0.9.0

staging/src/k8s.io/apimachinery/go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

staging/src/k8s.io/apiserver/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ require (
2323
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
2424
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
2525
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f
26-
github.com/spf13/pflag v1.0.6
26+
github.com/spf13/pflag v1.0.9
2727
github.com/stretchr/testify v1.10.0
2828
go.etcd.io/etcd/api/v3 v3.6.4
2929
go.etcd.io/etcd/client/pkg/v3 v3.6.4
@@ -101,7 +101,7 @@ require (
101101
github.com/prometheus/procfs v0.16.1 // indirect
102102
github.com/sirupsen/logrus v1.9.3 // indirect
103103
github.com/soheilhy/cmux v0.1.5 // indirect
104-
github.com/spf13/cobra v1.9.1 // indirect
104+
github.com/spf13/cobra v1.10.0 // indirect
105105
github.com/stoewer/go-strcase v1.3.0 // indirect
106106
github.com/tmc/grpc-websocket-proxy v0.0.0-20220101234140-673ab2c3ae75 // indirect
107107
github.com/x448/float16 v0.8.4 // indirect

staging/src/k8s.io/apiserver/go.sum

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)