Skip to content

Commit 52b1ef8

Browse files
committed
Fixes along grafana/k6#4017
1 parent c8ce6f2 commit 52b1ef8

File tree

3 files changed

+116
-91
lines changed

3 files changed

+116
-91
lines changed

go.mod

+32-29
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,40 @@
11
module github.com/grafana/xk6-websockets
22

3-
go 1.20
3+
go 1.21
4+
5+
toolchain go1.23.2
46

57
require (
6-
github.com/gorilla/websocket v1.5.1
7-
github.com/grafana/sobek v0.0.0-20240607083612-4f0cd64f4e78
8+
github.com/gorilla/websocket v1.5.3
9+
github.com/grafana/sobek v0.0.0-20241024150027-d91f02b05e9b
810
github.com/mstoykov/k6-taskqueue-lib v0.1.0
911
github.com/sirupsen/logrus v1.9.3
1012
github.com/stretchr/testify v1.9.0
11-
go.k6.io/k6 v0.51.1-0.20240612130226-3415ce6edc99
13+
go.k6.io/k6 v0.54.1-0.20241025083358-192a49e1c20d
1214
go.uber.org/goleak v1.3.0
1315
gopkg.in/guregu/null.v3 v3.3.0
1416
)
1517

1618
require (
1719
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
18-
github.com/PuerkitoBio/goquery v1.9.1 // indirect
20+
github.com/PuerkitoBio/goquery v1.9.2 // indirect
1921
github.com/Soontao/goHttpDigestClient v0.0.0-20170320082612-6d28bb1415c5 // indirect
20-
github.com/andybalholm/brotli v1.1.0 // indirect
22+
github.com/andybalholm/brotli v1.1.1 // indirect
2123
github.com/andybalholm/cascadia v1.3.2 // indirect
22-
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
24+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
2325
github.com/davecgh/go-spew v1.1.1 // indirect
24-
github.com/dlclark/regexp2 v1.9.0 // indirect
26+
github.com/dlclark/regexp2 v1.11.4 // indirect
2527
github.com/dop251/goja v0.0.0-20240516125602-ccbae20bcec2 // indirect
2628
github.com/evanw/esbuild v0.21.2 // indirect
27-
github.com/fatih/color v1.16.0 // indirect
28-
github.com/go-logr/logr v1.4.1 // indirect
29+
github.com/fatih/color v1.17.0 // indirect
30+
github.com/go-logr/logr v1.4.2 // indirect
2931
github.com/go-logr/stdr v1.2.2 // indirect
3032
github.com/go-sourcemap/sourcemap v2.1.4+incompatible // indirect
3133
github.com/google/pprof v0.0.0-20230728192033-2ba5b33183c6 // indirect
32-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 // indirect
34+
github.com/google/uuid v1.6.0 // indirect
35+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
3336
github.com/josharian/intern v1.0.0 // indirect
34-
github.com/klauspost/compress v1.17.7 // indirect
37+
github.com/klauspost/compress v1.17.11 // indirect
3538
github.com/mailru/easyjson v0.7.7 // indirect
3639
github.com/mattn/go-colorable v0.1.13 // indirect
3740
github.com/mattn/go-isatty v0.0.20 // indirect
@@ -46,22 +49,22 @@ require (
4649
github.com/tidwall/gjson v1.17.1 // indirect
4750
github.com/tidwall/match v1.1.1 // indirect
4851
github.com/tidwall/pretty v1.2.1 // indirect
49-
go.opentelemetry.io/otel v1.24.0 // indirect
50-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.24.0 // indirect
51-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.24.0 // indirect
52-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.24.0 // indirect
53-
go.opentelemetry.io/otel/metric v1.24.0 // indirect
54-
go.opentelemetry.io/otel/sdk v1.24.0 // indirect
55-
go.opentelemetry.io/otel/trace v1.24.0 // indirect
56-
go.opentelemetry.io/proto/otlp v1.1.0 // indirect
57-
golang.org/x/crypto v0.24.0 // indirect
58-
golang.org/x/net v0.26.0 // indirect
59-
golang.org/x/sys v0.21.0 // indirect
60-
golang.org/x/text v0.16.0 // indirect
61-
golang.org/x/time v0.5.0 // indirect
62-
google.golang.org/genproto/googleapis/api v0.0.0-20240227224415-6ceb2ff114de // indirect
63-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de // indirect
64-
google.golang.org/grpc v1.63.2 // indirect
65-
google.golang.org/protobuf v1.33.0 // indirect
52+
go.opentelemetry.io/otel v1.29.0 // indirect
53+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.29.0 // indirect
54+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.29.0 // indirect
55+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.29.0 // indirect
56+
go.opentelemetry.io/otel/metric v1.29.0 // indirect
57+
go.opentelemetry.io/otel/sdk v1.29.0 // indirect
58+
go.opentelemetry.io/otel/trace v1.29.0 // indirect
59+
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
60+
golang.org/x/crypto v0.28.0 // indirect
61+
golang.org/x/net v0.30.0 // indirect
62+
golang.org/x/sys v0.26.0 // indirect
63+
golang.org/x/text v0.19.0 // indirect
64+
golang.org/x/time v0.7.0 // indirect
65+
google.golang.org/genproto/googleapis/api v0.0.0-20240822170219-fc7c04adadcd // indirect
66+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240822170219-fc7c04adadcd // indirect
67+
google.golang.org/grpc v1.65.0 // indirect
68+
google.golang.org/protobuf v1.34.2 // indirect
6669
gopkg.in/yaml.v3 v3.0.1 // indirect
6770
)

0 commit comments

Comments
 (0)