mirror of
https://github.com/kubernetes/sample-controller.git
synced 2026-05-01 00:00:03 +08:00
Update golang.org/x dependencies to latest versions
updates the golang.org/x package family to newer releases: - golang.org/x/crypto: v0.45.0 -> v0.46.0 - golang.org/x/net: v0.47.0 -> v0.48.0 - golang.org/x/sys: v0.38.0 -> v0.40.0 - golang.org/x/time: v0.9.0 -> v0.14.0 - golang.org/x/oauth2: v0.30.0 -> v0.34.0 - golang.org/x/text: v0.31.0 -> v0.33.0 - golang.org/x/term: v0.37.0 -> v0.39.0 - golang.org/x/sync: v0.18.0 -> v0.19.0 - golang.org/x/mod: v0.29.0 -> v0.32.0 - golang.org/x/tools: v0.38.0 -> v0.40.0 - golang.org/x/exp: 8a7402abbf56 -> 944ab1f22d93 Security & Stability: - x/crypto: Updated X509 root certificate bundle - x/net: HTTP/2 PING optimization to reduce DoS detection triggers, data race fix in trace RenderEvents - x/sys: Fixed out-of-bounds memory access in sockaddrIUCVToAny - x/time: Fixed rate limiter overflow when using very low rates that could cause the limiter to jam open Performance: - x/time: ~19% improvement in Sometimes.Do when no interval configured Maintenance: - Various vet diagnostic fixes for Go 1.26 compatibility - Dependency updates across the golang.org/x ecosystem Signed-off-by: Davanum Srinivas <davanum@gmail.com> Kubernetes-commit: 0e67c56a8f26ace2889fd24e098b78e13f9bbffe
This commit is contained in:
committed by
Kubernetes Publisher
parent
c5a510e1f3
commit
17baec1178
@@ -7,11 +7,11 @@ go 1.25.0
|
||||
godebug default=go1.25
|
||||
|
||||
require (
|
||||
golang.org/x/time v0.9.0
|
||||
k8s.io/api v0.0.0-20260108223421-5c36d525c6b0
|
||||
k8s.io/apimachinery v0.0.0-20260108222734-dd7de37ecc3e
|
||||
k8s.io/client-go v0.0.0-20260108224317-811a272277cc
|
||||
k8s.io/code-generator v0.0.0-20260108225901-a22223de82e9
|
||||
golang.org/x/time v0.14.0
|
||||
k8s.io/api v0.0.0
|
||||
k8s.io/apimachinery v0.0.0
|
||||
k8s.io/client-go v0.0.0
|
||||
k8s.io/code-generator v0.0.0
|
||||
k8s.io/klog/v2 v2.130.1
|
||||
k8s.io/utils v0.0.0-20251219084037-98d557b7f1e7
|
||||
)
|
||||
@@ -37,14 +37,14 @@ require (
|
||||
github.com/x448/float16 v0.8.4 // indirect
|
||||
go.yaml.in/yaml/v2 v2.4.3 // indirect
|
||||
go.yaml.in/yaml/v3 v3.0.4 // indirect
|
||||
golang.org/x/mod v0.29.0 // indirect
|
||||
golang.org/x/net v0.47.0 // indirect
|
||||
golang.org/x/oauth2 v0.30.0 // indirect
|
||||
golang.org/x/sync v0.18.0 // indirect
|
||||
golang.org/x/sys v0.38.0 // indirect
|
||||
golang.org/x/term v0.37.0 // indirect
|
||||
golang.org/x/text v0.31.0 // indirect
|
||||
golang.org/x/tools v0.38.0 // indirect
|
||||
golang.org/x/mod v0.32.0 // indirect
|
||||
golang.org/x/net v0.48.0 // indirect
|
||||
golang.org/x/oauth2 v0.34.0 // indirect
|
||||
golang.org/x/sync v0.19.0 // indirect
|
||||
golang.org/x/sys v0.40.0 // indirect
|
||||
golang.org/x/term v0.39.0 // indirect
|
||||
golang.org/x/text v0.33.0 // indirect
|
||||
golang.org/x/tools v0.40.0 // indirect
|
||||
google.golang.org/protobuf v1.36.8 // indirect
|
||||
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
|
||||
gopkg.in/inf.v0 v0.9.1 // indirect
|
||||
@@ -56,3 +56,10 @@ require (
|
||||
sigs.k8s.io/structured-merge-diff/v6 v6.3.1 // indirect
|
||||
sigs.k8s.io/yaml v1.6.0 // indirect
|
||||
)
|
||||
|
||||
replace (
|
||||
k8s.io/api => ../api
|
||||
k8s.io/apimachinery => ../apimachinery
|
||||
k8s.io/client-go => ../client-go
|
||||
k8s.io/code-generator => ../code-generator
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user