Skip to content

Commit a9d8735

Browse files
authored
[all] Bump ginkgo to v2.26.0 (latest) (#3005)
* Bump ginkgo to v2.26.0 Signed-off-by: Stephen Finucane <[email protected]> * tests: Replace deprecated ginkgo opts Resolve the following warning from tests: You're using deprecated Ginkgo functionality: ============================================= --ginkgo.noColor is deprecated, use --ginkgo.no-color instead Learn more at: https://onsi.github.io/ginkgo/MIGRATING_TO_V2#changed-command-line-flags --ginkgo.progress is deprecated . The functionality provided by --progress was confusing and is no longer needed. Use --show-node-events instead to see node entry and exit events included in the timeline of failed and verbose specs. Or you can run with -vv to always see all node events. Lastly, --poll-progress-after and the PollProgressAfter decorator now provide a better mechanism for debugging specs that tend to get stuck. Signed-off-by: Stephen Finucane <[email protected]> --------- Signed-off-by: Stephen Finucane <[email protected]>
1 parent 3aa7b32 commit a9d8735

File tree

4 files changed

+76
-40
lines changed

4 files changed

+76
-40
lines changed

go.mod

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ require (
1515
github.com/kubernetes-csi/csi-test/v5 v5.0.0
1616
github.com/mitchellh/go-homedir v1.1.0
1717
github.com/mitchellh/mapstructure v1.5.0
18-
github.com/onsi/ginkgo/v2 v2.22.2
19-
github.com/onsi/gomega v1.36.2
18+
github.com/onsi/ginkgo/v2 v2.26.0
19+
github.com/onsi/gomega v1.38.2
2020
github.com/sirupsen/logrus v1.9.3
2121
github.com/spf13/cobra v1.9.1
2222
github.com/spf13/pflag v1.0.6
2323
github.com/spf13/viper v1.19.0
2424
github.com/stretchr/testify v1.10.0
2525
go.uber.org/goleak v1.3.0
2626
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa
27-
golang.org/x/sys v0.31.0
28-
golang.org/x/term v0.30.0
27+
golang.org/x/sys v0.36.0
28+
golang.org/x/term v0.35.0
2929
google.golang.org/grpc v1.70.0
30-
google.golang.org/protobuf v1.36.5
30+
google.golang.org/protobuf v1.36.7
3131
gopkg.in/gcfg.v1 v1.2.3
3232
gopkg.in/godo.v2 v2.0.9
3333
gopkg.in/yaml.v2 v2.4.0
@@ -64,6 +64,7 @@ require (
6464
cel.dev/expr v0.21.2 // indirect
6565
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
6666
github.com/JeffAshton/win_pdh v0.0.0-20161109143554-76bb4ee9f0ab // indirect
67+
github.com/Masterminds/semver/v3 v3.4.0 // indirect
6768
github.com/MichaelTJones/walk v0.0.0-20161122175330-4748e29d5718 // indirect
6869
github.com/Microsoft/go-winio v0.6.2 // indirect
6970
github.com/NYTimes/gziphandler v1.1.1 // indirect
@@ -89,7 +90,7 @@ require (
8990
github.com/felixge/httpsnoop v1.0.4 // indirect
9091
github.com/fsnotify/fsnotify v1.8.0 // indirect
9192
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
92-
github.com/go-logr/logr v1.4.2 // indirect
93+
github.com/go-logr/logr v1.4.3 // indirect
9394
github.com/go-logr/stdr v1.2.2 // indirect
9495
github.com/go-openapi/jsonpointer v0.21.0 // indirect
9596
github.com/go-openapi/jsonreference v0.21.0 // indirect
@@ -104,7 +105,7 @@ require (
104105
github.com/google/cel-go v0.23.2 // indirect
105106
github.com/google/gnostic-models v0.6.9 // indirect
106107
github.com/google/go-cmp v0.7.0 // indirect
107-
github.com/google/pprof v0.0.0-20250208200701-d0013a598941 // indirect
108+
github.com/google/pprof v0.0.0-20251007065238-a3c36c344485 // indirect
108109
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
109110
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
110111
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1 // indirect
@@ -160,15 +161,18 @@ require (
160161
go.opentelemetry.io/otel/sdk v1.34.0 // indirect
161162
go.opentelemetry.io/otel/trace v1.34.0 // indirect
162163
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
164+
go.uber.org/automaxprocs v1.6.0 // indirect
163165
go.uber.org/multierr v1.11.0 // indirect
164166
go.uber.org/zap v1.27.0 // indirect
165-
golang.org/x/crypto v0.36.0 // indirect
166-
golang.org/x/net v0.38.0 // indirect
167+
go.yaml.in/yaml/v3 v3.0.4 // indirect
168+
golang.org/x/crypto v0.42.0 // indirect
169+
golang.org/x/mod v0.28.0 // indirect
170+
golang.org/x/net v0.44.0 // indirect
167171
golang.org/x/oauth2 v0.27.0 // indirect
168-
golang.org/x/sync v0.12.0 // indirect
169-
golang.org/x/text v0.23.0 // indirect
172+
golang.org/x/sync v0.17.0 // indirect
173+
golang.org/x/text v0.29.0 // indirect
170174
golang.org/x/time v0.10.0 // indirect
171-
golang.org/x/tools v0.30.0 // indirect
175+
golang.org/x/tools v0.37.0 // indirect
172176
google.golang.org/genproto/googleapis/api v0.0.0-20250219182151-9fdb1cabc7b2 // indirect
173177
google.golang.org/genproto/googleapis/rpc v0.0.0-20250219182151-9fdb1cabc7b2 // indirect
174178
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect

0 commit comments

Comments
 (0)