Skip to content

Commit 9b2d4aa

Browse files
authored
Upgrade helm packages (#323)
Signed-off-by: zhujian <[email protected]>
1 parent 314995d commit 9b2d4aa

File tree

44 files changed

+1488
-467
lines changed

Some content is hidden

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

44 files changed

+1488
-467
lines changed

go.mod

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@ module open-cluster-management.io/addon-framework
33
go 1.24.0
44

55
require (
6-
github.com/evanphx/json-patch v5.9.0+incompatible
6+
github.com/evanphx/json-patch v5.9.11+incompatible
77
github.com/fatih/structs v1.1.0
88
github.com/mochi-mqtt/server/v2 v2.6.5
99
github.com/onsi/ginkgo v1.16.5
1010
github.com/onsi/gomega v1.36.1
1111
github.com/openshift/build-machinery-go v0.0.0-20240419090851-af9c868bcf52
12-
github.com/spf13/cobra v1.8.1
13-
github.com/spf13/pflag v1.0.5
12+
github.com/spf13/cobra v1.9.1
13+
github.com/spf13/pflag v1.0.6
1414
github.com/stretchr/testify v1.10.0
1515
gopkg.in/yaml.v2 v2.4.0
16-
helm.sh/helm/v3 v3.17.3
16+
helm.sh/helm/v3 v3.18.4
1717
k8s.io/api v0.33.2
18-
k8s.io/apiextensions-apiserver v0.33.1
18+
k8s.io/apiextensions-apiserver v0.33.2
1919
k8s.io/apimachinery v0.33.2
20-
k8s.io/apiserver v0.33.1
21-
k8s.io/client-go v0.33.1
22-
k8s.io/component-base v0.33.1
20+
k8s.io/apiserver v0.33.2
21+
k8s.io/client-go v0.33.2
22+
k8s.io/component-base v0.33.2
2323
k8s.io/klog/v2 v2.130.1
2424
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
2525
open-cluster-management.io/api v1.0.0
@@ -31,7 +31,7 @@ require (
3131
cel.dev/expr v0.23.1 // indirect
3232
cloud.google.com/go/compute/metadata v0.5.0 // indirect
3333
dario.cat/mergo v1.0.1 // indirect
34-
github.com/BurntSushi/toml v1.4.0 // indirect
34+
github.com/BurntSushi/toml v1.5.0 // indirect
3535
github.com/Masterminds/goutils v1.1.1 // indirect
3636
github.com/Masterminds/semver/v3 v3.3.0 // indirect
3737
github.com/Masterminds/sprig/v3 v3.3.0 // indirect
@@ -48,7 +48,7 @@ require (
4848
github.com/confluentinc/confluent-kafka-go/v2 v2.3.0 // indirect
4949
github.com/coreos/go-semver v0.3.1 // indirect
5050
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
51-
github.com/cyphar/filepath-securejoin v0.3.6 // indirect
51+
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
5252
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
5353
github.com/eclipse/paho.golang v0.21.0 // indirect
5454
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
@@ -80,9 +80,7 @@ require (
8080
github.com/mailru/easyjson v0.7.7 // indirect
8181
github.com/mitchellh/copystructure v1.2.0 // indirect
8282
github.com/mitchellh/reflectwalk v1.0.2 // indirect
83-
github.com/moby/patternmatcher v0.6.0 // indirect
8483
github.com/moby/sys/sequential v0.5.0 // indirect
85-
github.com/moby/sys/user v0.4.0 // indirect
8684
github.com/moby/sys/userns v0.1.0 // indirect
8785
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
8886
github.com/modern-go/reflect2 v1.0.2 // indirect
@@ -117,14 +115,14 @@ require (
117115
go.opentelemetry.io/proto/otlp v1.4.0 // indirect
118116
go.uber.org/multierr v1.11.0 // indirect
119117
go.uber.org/zap v1.27.0 // indirect
120-
golang.org/x/crypto v0.37.0 // indirect
118+
golang.org/x/crypto v0.39.0 // indirect
121119
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
122-
golang.org/x/net v0.38.0 // indirect
123-
golang.org/x/oauth2 v0.27.0 // indirect
124-
golang.org/x/sync v0.13.0 // indirect
125-
golang.org/x/sys v0.32.0 // indirect
126-
golang.org/x/term v0.31.0 // indirect
127-
golang.org/x/text v0.24.0 // indirect
120+
golang.org/x/net v0.40.0 // indirect
121+
golang.org/x/oauth2 v0.28.0 // indirect
122+
golang.org/x/sync v0.15.0 // indirect
123+
golang.org/x/sys v0.33.0 // indirect
124+
golang.org/x/term v0.32.0 // indirect
125+
golang.org/x/text v0.26.0 // indirect
128126
golang.org/x/time v0.9.0 // indirect
129127
google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9 // indirect
130128
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 // indirect

go.sum

Lines changed: 57 additions & 55 deletions
Large diffs are not rendered by default.

vendor/github.com/BurntSushi/toml/README.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/BurntSushi/toml/decode.go

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

vendor/github.com/BurntSushi/toml/encode.go

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

vendor/github.com/BurntSushi/toml/error.go

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

0 commit comments

Comments
 (0)