mirror of
https://github.com/vmware-tanzu/pinniped.git
synced 2026-07-30 12:02:56 +00:00
Bump libs, especially k8s to v0.33.5
This commit is contained in:
@@ -12,9 +12,9 @@
|
||||
# Whenever a new version is added to this file, or when a version number
|
||||
# is edited in this file, please run hack/update.sh.
|
||||
#
|
||||
1.33.4
|
||||
1.32.8
|
||||
1.31.12
|
||||
1.33.5
|
||||
1.32.9
|
||||
1.31.13
|
||||
1.30.14
|
||||
1.29.14
|
||||
1.28.15
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
module go.pinniped.dev/update-go-mod
|
||||
|
||||
go 1.23.0
|
||||
go 1.25.0
|
||||
|
||||
toolchain go1.25.0
|
||||
|
||||
require golang.org/x/mod v0.26.0
|
||||
require golang.org/x/mod v0.29.0
|
||||
|
||||
@@ -1,4 +1,2 @@
|
||||
golang.org/x/mod v0.25.0 h1:n7a+ZbQKQA/Ysbyb0/6IbB1H/X41mKgbhfv7AfG/44w=
|
||||
golang.org/x/mod v0.25.0/go.mod h1:IXM97Txy2VM4PJ3gI61r1YEk/gAj6zAHN3AdZt6S9Ww=
|
||||
golang.org/x/mod v0.26.0 h1:EGMPT//Ezu+ylkCijjPc+f4Aih7sZvaAr+O3EHBxvZg=
|
||||
golang.org/x/mod v0.26.0/go.mod h1:/j6NAhSk8iQ723BGAUyoAcn7SlD7s15Dp9Nd/SfeaFQ=
|
||||
golang.org/x/mod v0.29.0 h1:HV8lRxZC4l2cr3Zq1LvtOsi/ThTgWnUk/y64QSs8GwA=
|
||||
golang.org/x/mod v0.29.0/go.mod h1:NyhrlYXJ2H4eJiRy/WDBO6HMqZQ6q9nk4JzS3NuCK+w=
|
||||
|
||||
@@ -88,6 +88,18 @@ func parseOverrides(overridesText string) (map[string]string, error) {
|
||||
)
|
||||
}
|
||||
|
||||
if splitLine[0] == "" || splitLine[1] == "" {
|
||||
panic(fmt.Sprintf("unable to parse overrides for line %q", line))
|
||||
}
|
||||
|
||||
if splitLine[1] != "NEVER_UPGRADE_DIRECTLY" {
|
||||
override := strings.Split(splitLine[1], "@")
|
||||
|
||||
if len(override) != 2 || override[0] == "" || override[1] == "" {
|
||||
panic(fmt.Sprintf("unable to parse overrides for line %q ", line))
|
||||
}
|
||||
}
|
||||
|
||||
overridesMap[splitLine[0]] = splitLine[1]
|
||||
}
|
||||
|
||||
|
||||
@@ -15,3 +15,11 @@ github.com/chromedp/cdproto NEVER_UPGRADE_DIRECTLY
|
||||
# Newer versions of k8s.io/kube-openapi bring in sigs.k8s.io/structured-merge-diff/v6 which causes a compile error.
|
||||
# https://github.com/kubernetes/client-go/blob/v0.33.0/go.mod#L31
|
||||
k8s.io/kube-openapi k8s.io/kube-openapi@v0.0.0-20250318190949-c8a335a9a2ff
|
||||
|
||||
k8s.io/api k8s.io/api@v0.33.5
|
||||
k8s.io/apiextensions-apiserver k8s.io/apiextensions-apiserver@v0.33.5
|
||||
k8s.io/apimachinery k8s.io/apimachinery@v0.33.5
|
||||
k8s.io/apiserver k8s.io/apiserver@v0.33.5
|
||||
k8s.io/client-go k8s.io/client-go@v0.33.5
|
||||
k8s.io/component-base k8s.io/component-base@v0.33.5
|
||||
k8s.io/kube-aggregator k8s.io/kube-aggregator@v0.33.5
|
||||
|
||||
Reference in New Issue
Block a user