Skip to content

Commit 6c15165

Browse files
Bump the all group across 1 directory with 8 updates
Bumps the all group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [github.com/huaweicloud/huaweicloud-sdk-go-v3](https://github.com/huaweicloud/huaweicloud-sdk-go-v3) | `0.1.130` | `0.1.139` | | [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.22.0` | `2.23.0` | | [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.31.3` | `0.32.2` | | [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.31.3` | `0.32.2` | | [sigs.k8s.io/cluster-api](https://github.com/kubernetes-sigs/cluster-api) | `1.9.3` | `1.9.5` | Updates `github.com/huaweicloud/huaweicloud-sdk-go-v3` from 0.1.130 to 0.1.139 - [Release notes](https://github.com/huaweicloud/huaweicloud-sdk-go-v3/releases) - [Commits](huaweicloud/huaweicloud-sdk-go-v3@v0.1.130...v0.1.139) Updates `github.com/onsi/ginkgo/v2` from 2.22.0 to 2.23.0 - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](onsi/ginkgo@v2.22.0...v2.23.0) Updates `github.com/onsi/gomega` from 1.36.0 to 1.36.2 - [Release notes](https://github.com/onsi/gomega/releases) - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md) - [Commits](onsi/gomega@v1.36.0...v1.36.2) Updates `k8s.io/apimachinery` from 0.31.3 to 0.32.2 - [Commits](kubernetes/apimachinery@v0.31.3...v0.32.2) Updates `k8s.io/client-go` from 0.31.3 to 0.32.2 - [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md) - [Commits](kubernetes/client-go@v0.31.3...v0.32.2) Updates `k8s.io/utils` from 0.0.0-20240711033017-18e509b52bc8 to 0.0.0-20241104100929-3ea5e8cea738 - [Commits](https://github.com/kubernetes/utils/commits) Updates `sigs.k8s.io/cluster-api` from 1.9.3 to 1.9.5 - [Release notes](https://github.com/kubernetes-sigs/cluster-api/releases) - [Commits](kubernetes-sigs/cluster-api@v1.9.3...v1.9.5) Updates `sigs.k8s.io/controller-runtime` from 0.19.3 to 0.19.6 - [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases) - [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md) - [Commits](kubernetes-sigs/controller-runtime@v0.19.3...v0.19.6) --- updated-dependencies: - dependency-name: github.com/huaweicloud/huaweicloud-sdk-go-v3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: github.com/onsi/ginkgo/v2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: github.com/onsi/gomega dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: k8s.io/apimachinery dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: k8s.io/client-go dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: k8s.io/utils dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: sigs.k8s.io/cluster-api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: sigs.k8s.io/controller-runtime dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 81a566c commit 6c15165

File tree

2 files changed

+81
-105
lines changed

2 files changed

+81
-105
lines changed

go.mod

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
module github.com/HuaweiCloudDeveloper/cluster-api-provider-huawei
22

33
go 1.22.0
4+
toolchain go1.23.7
45

56
require (
67
github.com/go-logr/logr v1.4.2
7-
github.com/huaweicloud/huaweicloud-sdk-go-v3 v0.1.130
8-
github.com/onsi/ginkgo/v2 v2.22.0
9-
github.com/onsi/gomega v1.36.0
8+
github.com/huaweicloud/huaweicloud-sdk-go-v3 v0.1.139
9+
github.com/onsi/ginkgo/v2 v2.23.0
10+
github.com/onsi/gomega v1.36.2
1011
github.com/pkg/errors v0.9.1
11-
k8s.io/api v0.31.3
12-
k8s.io/apimachinery v0.31.3
13-
k8s.io/client-go v0.31.3
12+
gopkg.in/yaml.v2 v2.4.0
13+
k8s.io/api v0.32.2
14+
k8s.io/apimachinery v0.32.2
15+
k8s.io/client-go v0.32.2
1416
k8s.io/klog/v2 v2.130.1
15-
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8
16-
sigs.k8s.io/cluster-api v1.9.3
17-
sigs.k8s.io/controller-runtime v0.19.3
17+
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
18+
sigs.k8s.io/cluster-api v1.9.5
19+
sigs.k8s.io/controller-runtime v0.19.6
1820
)
1921

2022
require (
@@ -32,22 +34,20 @@ require (
3234
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
3335
github.com/go-logr/stdr v1.2.2 // indirect
3436
github.com/go-logr/zapr v1.3.0 // indirect
35-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
37+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
3638
github.com/go-openapi/jsonreference v0.20.2 // indirect
37-
github.com/go-openapi/swag v0.22.4 // indirect
39+
github.com/go-openapi/swag v0.23.0 // indirect
3840
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
3941
github.com/gobuffalo/flect v1.0.3 // indirect
4042
github.com/gogo/protobuf v1.3.2 // indirect
41-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
4243
github.com/golang/protobuf v1.5.4 // indirect
4344
github.com/google/cel-go v0.20.1 // indirect
4445
github.com/google/gnostic-models v0.6.8 // indirect
4546
github.com/google/go-cmp v0.6.0 // indirect
4647
github.com/google/gofuzz v1.2.0 // indirect
47-
github.com/google/pprof v0.0.0-20241029153458-d1b30febd7db // indirect
48+
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
4849
github.com/google/uuid v1.6.0 // indirect
4950
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
50-
github.com/imdario/mergo v0.3.13 // indirect
5151
github.com/inconshreveable/mousetrap v1.1.0 // indirect
5252
github.com/josharian/intern v1.0.0 // indirect
5353
github.com/json-iterator/go v1.1.12 // indirect
@@ -64,7 +64,7 @@ require (
6464
github.com/stoewer/go-strcase v1.2.0 // indirect
6565
github.com/tjfoc/gmsm v1.4.1 // indirect
6666
github.com/x448/float16 v0.8.4 // indirect
67-
go.mongodb.org/mongo-driver v1.12.0 // indirect
67+
go.mongodb.org/mongo-driver v1.13.1 // indirect
6868
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect
6969
go.opentelemetry.io/otel v1.28.0 // indirect
7070
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 // indirect
@@ -75,31 +75,31 @@ require (
7575
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
7676
go.uber.org/multierr v1.11.0 // indirect
7777
go.uber.org/zap v1.27.0 // indirect
78-
golang.org/x/crypto v0.31.0 // indirect
78+
golang.org/x/crypto v0.33.0 // indirect
7979
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
80-
golang.org/x/net v0.33.0 // indirect
80+
golang.org/x/net v0.35.0 // indirect
8181
golang.org/x/oauth2 v0.24.0 // indirect
82-
golang.org/x/sync v0.10.0 // indirect
83-
golang.org/x/sys v0.28.0 // indirect
84-
golang.org/x/term v0.27.0 // indirect
85-
golang.org/x/text v0.21.0 // indirect
86-
golang.org/x/time v0.5.0 // indirect
87-
golang.org/x/tools v0.26.0 // indirect
82+
golang.org/x/sync v0.11.0 // indirect
83+
golang.org/x/sys v0.30.0 // indirect
84+
golang.org/x/term v0.29.0 // indirect
85+
golang.org/x/text v0.22.0 // indirect
86+
golang.org/x/time v0.7.0 // indirect
87+
golang.org/x/tools v0.30.0 // indirect
8888
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
8989
google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157 // indirect
9090
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 // indirect
9191
google.golang.org/grpc v1.65.1 // indirect
92-
google.golang.org/protobuf v1.35.1 // indirect
92+
google.golang.org/protobuf v1.36.1 // indirect
93+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
9394
gopkg.in/inf.v0 v0.9.1 // indirect
9495
gopkg.in/ini.v1 v1.67.0 // indirect
95-
gopkg.in/yaml.v2 v2.4.0 // indirect
9696
gopkg.in/yaml.v3 v3.0.1 // indirect
9797
k8s.io/apiextensions-apiserver v0.31.3 // indirect
9898
k8s.io/apiserver v0.31.3 // indirect
9999
k8s.io/component-base v0.31.3 // indirect
100-
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
100+
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
101101
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3 // indirect
102-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
103-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
102+
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
103+
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
104104
sigs.k8s.io/yaml v1.4.0 // indirect
105105
)

0 commit comments

Comments
 (0)