Skip to content

Commit f04592b

Browse files
committed
Update cluster-api to v1.11.0-beta.0
1 parent 22cdc54 commit f04592b

File tree

8 files changed

+79
-74
lines changed

8 files changed

+79
-74
lines changed

controllers/ibmpowervsmachine_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ func (r *IBMPowerVSMachineReconciler) handleLoadBalancerPoolMemberConfiguration(
265265
func (r *IBMPowerVSMachineReconciler) reconcileNormal(ctx context.Context, machineScope *scope.PowerVSMachineScope) (ctrl.Result, error) { //nolint:gocyclo
266266
log := ctrl.LoggerFrom(ctx)
267267

268-
if machineScope.Cluster.Status.Initialization == nil || !machineScope.Cluster.Status.Initialization.InfrastructureProvisioned {
268+
if machineScope.Cluster.Status.Initialization.InfrastructureProvisioned == nil || !*machineScope.Cluster.Status.Initialization.InfrastructureProvisioned {
269269
log.Info("Cluster infrastructure is not ready yet, skipping reconciliation")
270270
v1beta1conditions.MarkFalse(machineScope.IBMPowerVSMachine, infrav1.InstanceReadyCondition, infrav1.WaitingForClusterInfrastructureReason, clusterv1beta1.ConditionSeverityInfo, "")
271271
v1beta2conditions.Set(machineScope.IBMPowerVSMachine, metav1.Condition{

controllers/ibmpowervsmachine_controller_test.go

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ func TestIBMPowerVSMachineReconciler_ReconcileOperations(t *testing.T) {
381381
machineScope = &scope.PowerVSMachineScope{
382382
Cluster: &clusterv1.Cluster{
383383
Status: clusterv1.ClusterStatus{
384-
Initialization: &clusterv1.ClusterInitializationStatus{},
384+
Initialization: clusterv1.ClusterInitializationStatus{},
385385
},
386386
},
387387
IBMPowerVSMachine: &infrav1.IBMPowerVSMachine{},
@@ -399,8 +399,8 @@ func TestIBMPowerVSMachineReconciler_ReconcileOperations(t *testing.T) {
399399
machineScope = &scope.PowerVSMachineScope{
400400
Cluster: &clusterv1.Cluster{
401401
Status: clusterv1.ClusterStatus{
402-
Initialization: &clusterv1.ClusterInitializationStatus{
403-
InfrastructureProvisioned: true,
402+
Initialization: clusterv1.ClusterInitializationStatus{
403+
InfrastructureProvisioned: ptr.To(true),
404404
},
405405
},
406406
},
@@ -424,8 +424,8 @@ func TestIBMPowerVSMachineReconciler_ReconcileOperations(t *testing.T) {
424424
machineScope = &scope.PowerVSMachineScope{
425425
Cluster: &clusterv1.Cluster{
426426
Status: clusterv1.ClusterStatus{
427-
Initialization: &clusterv1.ClusterInitializationStatus{
428-
InfrastructureProvisioned: true,
427+
Initialization: clusterv1.ClusterInitializationStatus{
428+
InfrastructureProvisioned: ptr.To(true),
429429
},
430430
},
431431
},
@@ -455,8 +455,8 @@ func TestIBMPowerVSMachineReconciler_ReconcileOperations(t *testing.T) {
455455
Client: mockClient,
456456
Cluster: &clusterv1.Cluster{
457457
Status: clusterv1.ClusterStatus{
458-
Initialization: &clusterv1.ClusterInitializationStatus{
459-
InfrastructureProvisioned: true,
458+
Initialization: clusterv1.ClusterInitializationStatus{
459+
InfrastructureProvisioned: ptr.To(true),
460460
},
461461
},
462462
},
@@ -496,8 +496,8 @@ func TestIBMPowerVSMachineReconciler_ReconcileOperations(t *testing.T) {
496496

497497
Cluster: &clusterv1.Cluster{
498498
Status: clusterv1.ClusterStatus{
499-
Initialization: &clusterv1.ClusterInitializationStatus{
500-
InfrastructureProvisioned: true,
499+
Initialization: clusterv1.ClusterInitializationStatus{
500+
InfrastructureProvisioned: ptr.To(true),
501501
},
502502
},
503503
},
@@ -594,8 +594,8 @@ func TestIBMPowerVSMachineReconciler_ReconcileOperations(t *testing.T) {
594594
Client: mockclient,
595595
Cluster: &clusterv1.Cluster{
596596
Status: clusterv1.ClusterStatus{
597-
Initialization: &clusterv1.ClusterInitializationStatus{
598-
InfrastructureProvisioned: true,
597+
Initialization: clusterv1.ClusterInitializationStatus{
598+
InfrastructureProvisioned: ptr.To(true),
599599
},
600600
},
601601
},
@@ -710,8 +710,8 @@ func TestIBMPowerVSMachineReconciler_ReconcileOperations(t *testing.T) {
710710
Client: mockclient,
711711
Cluster: &clusterv1.Cluster{
712712
Status: clusterv1.ClusterStatus{
713-
Initialization: &clusterv1.ClusterInitializationStatus{
714-
InfrastructureProvisioned: true,
713+
Initialization: clusterv1.ClusterInitializationStatus{
714+
InfrastructureProvisioned: ptr.To(true),
715715
},
716716
},
717717
},
@@ -822,8 +822,8 @@ func TestIBMPowerVSMachineReconciler_ReconcileOperations(t *testing.T) {
822822

823823
Cluster: &clusterv1.Cluster{
824824
Status: clusterv1.ClusterStatus{
825-
Initialization: &clusterv1.ClusterInitializationStatus{
826-
InfrastructureProvisioned: true,
825+
Initialization: clusterv1.ClusterInitializationStatus{
826+
InfrastructureProvisioned: ptr.To(true),
827827
},
828828
},
829829
},

go.mod

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ go 1.24.0
44

55
// Keep these modules sync with sigs.k8s.io/cluster-api repository
66
replace (
7-
github.com/onsi/ginkgo/v2 => github.com/onsi/ginkgo/v2 v2.23.3
8-
github.com/onsi/gomega => github.com/onsi/gomega v1.36.3
9-
sigs.k8s.io/cluster-api => sigs.k8s.io/cluster-api v1.11.0-alpha.2
7+
github.com/onsi/ginkgo/v2 => github.com/onsi/ginkgo/v2 v2.23.4
8+
github.com/onsi/gomega => github.com/onsi/gomega v1.37.0
9+
sigs.k8s.io/cluster-api => sigs.k8s.io/cluster-api v1.11.0-beta.0
1010
)
1111

1212
require (
@@ -30,7 +30,7 @@ require (
3030
github.com/stretchr/testify v1.10.0
3131
go.uber.org/mock v0.5.2
3232
golang.org/x/crypto v0.40.0
33-
golang.org/x/net v0.41.0
33+
golang.org/x/net v0.42.0
3434
golang.org/x/text v0.27.0
3535
k8s.io/api v0.33.2
3636
k8s.io/apiextensions-apiserver v0.33.2
@@ -40,8 +40,8 @@ require (
4040
k8s.io/component-base v0.33.2
4141
k8s.io/klog/v2 v2.130.1
4242
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
43-
sigs.k8s.io/cluster-api v1.11.0-alpha.2
44-
sigs.k8s.io/cluster-api/test v1.11.0-alpha.2
43+
sigs.k8s.io/cluster-api v1.11.0-beta.0
44+
sigs.k8s.io/cluster-api/test v1.11.0-beta.0
4545
sigs.k8s.io/controller-runtime v0.21.0
4646
sigs.k8s.io/yaml v1.5.0
4747
)
@@ -70,7 +70,7 @@ require (
7070
github.com/coreos/vcontext v0.0.0-20230201181013-d72178a18687 // indirect
7171
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
7272
github.com/distribution/reference v0.6.0 // indirect
73-
github.com/docker/docker v28.3.0+incompatible // indirect
73+
github.com/docker/docker v28.3.2+incompatible // indirect
7474
github.com/docker/go-connections v0.5.0 // indirect
7575
github.com/docker/go-units v0.5.0 // indirect
7676
github.com/drone/envsubst/v2 v2.0.0-20210730161058-179042472c46 // indirect
@@ -161,6 +161,7 @@ require (
161161
go.opentelemetry.io/otel/sdk v1.36.0 // indirect
162162
go.opentelemetry.io/otel/trace v1.36.0 // indirect
163163
go.opentelemetry.io/proto/otlp v1.4.0 // indirect
164+
go.uber.org/automaxprocs v1.6.0 // indirect
164165
go.uber.org/multierr v1.11.0 // indirect
165166
go.uber.org/zap v1.27.0 // indirect
166167
go.yaml.in/yaml/v2 v2.4.2 // indirect

go.sum

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1
8585
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
8686
github.com/distribution/reference v0.6.0 h1:0IXCQ5g4/QMHHkarYzh5l+u8T3t73zM5QvfrDyIgxBk=
8787
github.com/distribution/reference v0.6.0/go.mod h1:BbU0aIcezP1/5jX/8MP0YiH4SdvB5Y4f/wlDRiLyi3E=
88-
github.com/docker/docker v28.3.0+incompatible h1:ffS62aKWupCWdvcee7nBU9fhnmknOqDPaJAMtfK0ImQ=
89-
github.com/docker/docker v28.3.0+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
88+
github.com/docker/docker v28.3.2+incompatible h1:wn66NJ6pWB1vBZIilP8G3qQPqHy5XymfYn5vsqeA5oA=
89+
github.com/docker/docker v28.3.2+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
9090
github.com/docker/go-connections v0.5.0 h1:USnMq7hx7gwdVZq1L49hLXaFtUdTADjXGp+uj1Br63c=
9191
github.com/docker/go-connections v0.5.0/go.mod h1:ov60Kzw0kKElRwhNs9UlUHAE/F9Fe6GLaXnqyDdmEXc=
9292
github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4=
@@ -259,10 +259,10 @@ github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N
259259
github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY=
260260
github.com/onsi/ginkgo v1.16.5 h1:8xi0RTUf59SOSfEtZMvwTvXYMzG4gV23XVHOZiXNtnE=
261261
github.com/onsi/ginkgo v1.16.5/go.mod h1:+E8gABHa3K6zRBolWtd+ROzc/U5bkGt0FwiG042wbpU=
262-
github.com/onsi/ginkgo/v2 v2.23.3 h1:edHxnszytJ4lD9D5Jjc4tiDkPBZ3siDeJJkUZJJVkp0=
263-
github.com/onsi/ginkgo/v2 v2.23.3/go.mod h1:zXTP6xIp3U8aVuXN8ENK9IXRaTjFnpVB9mGmaSRvxnM=
264-
github.com/onsi/gomega v1.36.3 h1:hID7cr8t3Wp26+cYnfcjR6HpJ00fdogN6dqZ1t6IylU=
265-
github.com/onsi/gomega v1.36.3/go.mod h1:8D9+Txp43QWKhM24yyOBEdpkzN8FvJyAwecBgsU4KU0=
262+
github.com/onsi/ginkgo/v2 v2.23.4 h1:ktYTpKJAVZnDT4VjxSbiBenUjmlL/5QkBEocaWXiQus=
263+
github.com/onsi/ginkgo/v2 v2.23.4/go.mod h1:Bt66ApGPBFzHyR+JO10Zbt0Gsp4uWxu5mIOTusL46e8=
264+
github.com/onsi/gomega v1.37.0 h1:CdEG8g0S133B4OswTDC/5XPSzE1OeP29QOioj2PID2Y=
265+
github.com/onsi/gomega v1.37.0/go.mod h1:8D9+Txp43QWKhM24yyOBEdpkzN8FvJyAwecBgsU4KU0=
266266
github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=
267267
github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM=
268268
github.com/opencontainers/image-spec v1.0.2 h1:9yCKha/T5XdGtO0q9Q9a6T5NUCsTn/DrBg0D7ufOcFM=
@@ -280,6 +280,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI
280280
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
281281
github.com/ppc64le-cloud/powervs-utils v0.0.0-20250403153021-219b161805db h1:Fy2pmDLfLq2H0N77KD2LpNoCWbDGP0BknZU/odPx2+c=
282282
github.com/ppc64le-cloud/powervs-utils v0.0.0-20250403153021-219b161805db/go.mod h1:yfr6HHPYyJzVgnivMsobLMbHQqUHrzcIqWM4Nav4kc8=
283+
github.com/prashantv/gostub v1.1.0 h1:BTyx3RfQjRHnUWaGF9oQos79AlQ5k8WNktv7VGvVH4g=
284+
github.com/prashantv/gostub v1.1.0/go.mod h1:A5zLQHz7ieHGG7is6LLXLz7I8+3LZzsrV0P1IAHhP5U=
283285
github.com/prometheus/client_golang v1.22.0 h1:rb93p9lokFEsctTys46VnV1kLCDpVZ0a/Y92Vm0Zc6Q=
284286
github.com/prometheus/client_golang v1.22.0/go.mod h1:R7ljNsLXhuQXYZYtw6GAE9AZg8Y7vEW5scdCXrWRXC0=
285287
github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E=
@@ -360,6 +362,8 @@ go.opentelemetry.io/otel/trace v1.36.0 h1:ahxWNuqZjpdiFAyrIoQ4GIiAIhxAunQR6MUoKr
360362
go.opentelemetry.io/otel/trace v1.36.0/go.mod h1:gQ+OnDZzrybY4k4seLzPAWNwVBBVlF2szhehOBB/tGA=
361363
go.opentelemetry.io/proto/otlp v1.4.0 h1:TA9WRvW6zMwP+Ssb6fLoUIuirti1gGbP28GcKG1jgeg=
362364
go.opentelemetry.io/proto/otlp v1.4.0/go.mod h1:PPBWZIP98o2ElSqI35IHfu7hIhSwvc5N38Jw8pXuGFY=
365+
go.uber.org/automaxprocs v1.6.0 h1:O3y2/QNTOdbF+e/dpXNNW7Rx2hZ4sTIPyybbxyNqTUs=
366+
go.uber.org/automaxprocs v1.6.0/go.mod h1:ifeIMSnPZuznNm6jmdzmU3/bfk01Fe2fotchwEFJ8r8=
363367
go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto=
364368
go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE=
365369
go.uber.org/mock v0.5.2 h1:LbtPTcP8A5k9WPXj54PPPbjcI4Y6lhyOZXn+VS7wNko=
@@ -387,8 +391,8 @@ golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLL
387391
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
388392
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
389393
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
390-
golang.org/x/net v0.41.0 h1:vBTly1HeNPEn3wtREYfy4GZ/NECgw2Cnl+nK6Nz3uvw=
391-
golang.org/x/net v0.41.0/go.mod h1:B/K4NNqkfmg07DQYrbwvSluqCJOOXwUjeb/5lOisjbA=
394+
golang.org/x/net v0.42.0 h1:jzkYrhi3YQWD6MLBJcsklgQsoAcw89EcZbJw8Z614hs=
395+
golang.org/x/net v0.42.0/go.mod h1:FF1RA5d3u7nAYA4z2TkclSCKh68eSXtiFwcWQpPXdt8=
392396
golang.org/x/oauth2 v0.30.0 h1:dnDm7JmhM45NNpd8FDDeLhK6FwqbOf4MLCM9zb1BOHI=
393397
golang.org/x/oauth2 v0.30.0/go.mod h1:B++QgG3ZKulg6sRPGD/mqlHQs5rB3Ml9erfeDY7xKlU=
394398
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
@@ -478,10 +482,10 @@ k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 h1:M3sRQVHv7vB20Xc2ybTt7ODCeFj6J
478482
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
479483
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 h1:jpcvIRr3GLoUoEKRkHKSmGjxb6lWwrBlJsXc+eUYQHM=
480484
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2/go.mod h1:Ve9uj1L+deCXFrPOk1LpFXqTg7LCFzFso6PA48q/XZw=
481-
sigs.k8s.io/cluster-api v1.11.0-alpha.2 h1:MRj1bsx8X1fYlbl5NCf+98XJ+oIuxRVppXD0KIgjddw=
482-
sigs.k8s.io/cluster-api v1.11.0-alpha.2/go.mod h1:AougDuRB0zXAygnmSTEJiQ1f/s382U2DfboFHbaK1VQ=
483-
sigs.k8s.io/cluster-api/test v1.11.0-alpha.2 h1:YpwxLih6eEgQuzssvqwr5osCbW82MP6CXZhK5Ir8rFU=
484-
sigs.k8s.io/cluster-api/test v1.11.0-alpha.2/go.mod h1:SXsD8F6ldPfVyDZDjP/syHBsMT85800Y2gYjnmyUXhU=
485+
sigs.k8s.io/cluster-api v1.11.0-beta.0 h1:ZeNA21YseFk+yPemaK0oqjWycx71RWY45h1sQgpD9rY=
486+
sigs.k8s.io/cluster-api v1.11.0-beta.0/go.mod h1:GJoz9vNDDp7jH4fM9E5glu3zc0INdlL69nYBaYu3bt4=
487+
sigs.k8s.io/cluster-api/test v1.11.0-beta.0 h1:zl0evss76l00NGZLJEFr2SUttNhKppcWhvEVANtJf0c=
488+
sigs.k8s.io/cluster-api/test v1.11.0-beta.0/go.mod h1:t29v+e2bUdVcgSj5rOx9ScixxHx821tZZ7xy40n3HHI=
485489
sigs.k8s.io/controller-runtime v0.21.0 h1:CYfjpEuicjUecRk+KAeyYh+ouUBn4llGyDYytIGcJS8=
486490
sigs.k8s.io/controller-runtime v0.21.0/go.mod h1:OSg14+F65eWqIu4DceX7k/+QRAbTTvxeQSNSOQpukWM=
487491
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 h1:/Rv+M11QRah1itp8VhT6HoVx1Ray9eB4DBr+K+/sCJ8=

hack/tools/go.mod

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module sigs.k8s.io/cluster-api-provider-ibmcloud/hack/tools
22

33
go 1.24.0
44

5-
replace sigs.k8s.io/cluster-api => sigs.k8s.io/cluster-api v1.11.0-alpha.2
5+
replace sigs.k8s.io/cluster-api => sigs.k8s.io/cluster-api v1.11.0-beta.0
66

77
require (
88
github.com/drone/envsubst/v2 v2.0.0-20210730161058-179042472c46
@@ -15,7 +15,7 @@ require (
1515
gotest.tools/gotestsum v1.12.3
1616
k8s.io/code-generator v0.33.2
1717
k8s.io/release v0.16.9
18-
sigs.k8s.io/cluster-api/hack/tools v0.0.0-20250701143127-890d16f24287
18+
sigs.k8s.io/cluster-api/hack/tools v0.0.0-20250715161430-724130883ae3
1919
sigs.k8s.io/controller-runtime/tools/setup-envtest v0.0.0-20241202165100-3e6681045387
2020
sigs.k8s.io/controller-tools v0.18.0
2121
sigs.k8s.io/kustomize/kustomize/v5 v5.7.0
@@ -431,22 +431,22 @@ require (
431431
go.uber.org/zap v1.27.0 // indirect
432432
go.yaml.in/yaml/v2 v2.4.2 // indirect
433433
go.yaml.in/yaml/v3 v3.0.3 // indirect
434-
golang.org/x/crypto v0.39.0 // indirect
434+
golang.org/x/crypto v0.40.0 // indirect
435435
golang.org/x/exp v0.0.0-20250506013437-ce4c2cf36ca6 // indirect
436436
golang.org/x/exp/typeparams v0.0.0-20250210185358-939b2ce775ac // indirect
437437
golang.org/x/mod v0.25.0 // indirect
438-
golang.org/x/net v0.41.0 // indirect
438+
golang.org/x/net v0.42.0 // indirect
439439
golang.org/x/oauth2 v0.30.0 // indirect
440-
golang.org/x/sync v0.15.0 // indirect
441-
golang.org/x/sys v0.33.0 // indirect
440+
golang.org/x/sync v0.16.0 // indirect
441+
golang.org/x/sys v0.34.0 // indirect
442442
golang.org/x/telemetry v0.0.0-20240522233618-39ace7a40ae7 // indirect
443-
golang.org/x/term v0.32.0 // indirect
444-
golang.org/x/text v0.26.0 // indirect
443+
golang.org/x/term v0.33.0 // indirect
444+
golang.org/x/text v0.27.0 // indirect
445445
golang.org/x/time v0.12.0 // indirect
446446
golang.org/x/tools v0.34.0 // indirect
447447
golang.org/x/tools/go/vcs v0.1.0-deprecated // indirect
448448
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
449-
google.golang.org/api v0.239.0 // indirect
449+
google.golang.org/api v0.241.0 // indirect
450450
google.golang.org/genproto v0.0.0-20250505200425-f936aa4a68b2 // indirect
451451
google.golang.org/genproto/googleapis/api v0.0.0-20250512202823-5a2f75b736a9 // indirect
452452
google.golang.org/genproto/googleapis/rpc v0.0.0-20250603155806-513f23925822 // indirect

0 commit comments

Comments
 (0)