Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit e18dbe0

Browse files
committed
Apply fix for the async interrupt
1 parent 62289fd commit e18dbe0

File tree

5 files changed

+176
-135
lines changed

5 files changed

+176
-135
lines changed

go.mod

+46-42
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,55 @@
11
module github.com/grafana/xk6-webcrypto
22

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

57
require (
68
github.com/google/uuid v1.6.0
7-
github.com/grafana/sobek v0.0.0-20240606091932-2da0e9e5f3e7
9+
github.com/grafana/sobek v0.0.0-20241024150027-d91f02b05e9b
810
github.com/stretchr/testify v1.9.0
9-
go.k6.io/k6 v0.51.1-0.20240606120708-bd114fdbd683
11+
go.k6.io/k6 v0.54.1-0.20241025083358-192a49e1c20d
1012
gopkg.in/guregu/null.v3 v3.3.0
1113
)
1214

1315
require (
1416
buf.build/gen/go/gogo/protobuf/protocolbuffers/go v1.31.0-20210810001428-4df00b267f94.1 // indirect
1517
buf.build/gen/go/prometheus/prometheus/protocolbuffers/go v1.31.0-20230627135113-9a12bc2590d2.1 // indirect
1618
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
17-
github.com/DataDog/datadog-go v0.0.0-20180330214955-e67964b4021a // indirect
18-
github.com/PuerkitoBio/goquery v1.9.1 // indirect
19+
github.com/PuerkitoBio/goquery v1.9.2 // indirect
1920
github.com/Soontao/goHttpDigestClient v0.0.0-20170320082612-6d28bb1415c5 // indirect
20-
github.com/andybalholm/brotli v1.1.0 // indirect
21+
github.com/andybalholm/brotli v1.1.1 // indirect
2122
github.com/andybalholm/cascadia v1.3.2 // indirect
2223
github.com/beorn7/perks v1.0.1 // indirect
23-
github.com/bufbuild/protocompile v0.8.0 // indirect
24-
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
25-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
24+
github.com/bufbuild/protocompile v0.10.0 // indirect
25+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
26+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2627
github.com/chromedp/cdproto v0.0.0-20221023212508-67ada9507fb2 // indirect
2728
github.com/chromedp/sysutil v1.0.0 // indirect
2829
github.com/davecgh/go-spew v1.1.1 // indirect
2930
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
30-
github.com/dlclark/regexp2 v1.9.0 // indirect
31-
github.com/dop251/goja v0.0.0-20240516125602-ccbae20bcec2 // indirect
31+
github.com/dlclark/regexp2 v1.11.4 // indirect
3232
github.com/evanw/esbuild v0.21.2 // indirect
33-
github.com/fatih/color v1.16.0 // indirect
34-
github.com/go-logr/logr v1.4.1 // indirect
33+
github.com/fatih/color v1.17.0 // indirect
34+
github.com/go-logr/logr v1.4.2 // indirect
3535
github.com/go-logr/stdr v1.2.2 // indirect
3636
github.com/go-sourcemap/sourcemap v2.1.4+incompatible // indirect
3737
github.com/golang/protobuf v1.5.4 // indirect
3838
github.com/google/pprof v0.0.0-20230728192033-2ba5b33183c6 // indirect
39-
github.com/gorilla/websocket v1.5.1 // indirect
40-
github.com/grafana/xk6-browser v1.5.1 // indirect
41-
github.com/grafana/xk6-dashboard v0.7.3 // indirect
42-
github.com/grafana/xk6-output-prometheus-remote v0.3.1 // indirect
43-
github.com/grafana/xk6-redis v0.2.0 // indirect
44-
github.com/grafana/xk6-websockets v0.4.0 // indirect
39+
github.com/gorilla/websocket v1.5.3 // indirect
40+
github.com/grafana/xk6-browser v1.8.5 // indirect
41+
github.com/grafana/xk6-dashboard v0.7.5 // indirect
42+
github.com/grafana/xk6-output-opentelemetry v0.2.0 // indirect
43+
github.com/grafana/xk6-output-prometheus-remote v0.4.0 // indirect
44+
github.com/grafana/xk6-redis v0.3.0 // indirect
45+
github.com/grafana/xk6-websockets v0.7.1 // indirect
4546
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
46-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 // indirect
47+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
4748
github.com/inconshreveable/mousetrap v1.0.0 // indirect
4849
github.com/influxdata/influxdb1-client v0.0.0-20190402204710-8ff2fc3824fc // indirect
49-
github.com/jhump/protoreflect v1.15.6 // indirect
50+
github.com/jhump/protoreflect v1.16.0 // indirect
5051
github.com/josharian/intern v1.0.0 // indirect
51-
github.com/klauspost/compress v1.17.7 // indirect
52+
github.com/klauspost/compress v1.17.11 // indirect
5253
github.com/mailru/easyjson v0.7.7 // indirect
5354
github.com/mattn/go-colorable v0.1.13 // indirect
5455
github.com/mattn/go-isatty v0.0.20 // indirect
@@ -73,27 +74,30 @@ require (
7374
github.com/tidwall/gjson v1.17.1 // indirect
7475
github.com/tidwall/match v1.1.1 // indirect
7576
github.com/tidwall/pretty v1.2.1 // indirect
76-
go.opentelemetry.io/otel v1.24.0 // indirect
77-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.24.0 // indirect
78-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.24.0 // indirect
79-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.24.0 // indirect
80-
go.opentelemetry.io/otel/metric v1.24.0 // indirect
81-
go.opentelemetry.io/otel/sdk v1.24.0 // indirect
82-
go.opentelemetry.io/otel/trace v1.24.0 // indirect
83-
go.opentelemetry.io/proto/otlp v1.1.0 // indirect
77+
go.opentelemetry.io/otel v1.29.0 // indirect
78+
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.28.0 // indirect
79+
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.28.0 // indirect
80+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.29.0 // indirect
81+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.29.0 // indirect
82+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.29.0 // indirect
83+
go.opentelemetry.io/otel/metric v1.29.0 // indirect
84+
go.opentelemetry.io/otel/sdk v1.29.0 // indirect
85+
go.opentelemetry.io/otel/sdk/metric v1.28.0 // indirect
86+
go.opentelemetry.io/otel/trace v1.29.0 // indirect
87+
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
8488
go.uber.org/goleak v1.3.0 // indirect
85-
golang.org/x/crypto v0.21.0 // indirect
86-
golang.org/x/crypto/x509roots/fallback v0.0.0-20240318092723-b91329d961d4 // indirect
87-
golang.org/x/net v0.23.0 // indirect
88-
golang.org/x/sync v0.6.0 // indirect
89-
golang.org/x/sys v0.18.0 // indirect
90-
golang.org/x/term v0.18.0 // indirect
91-
golang.org/x/text v0.14.0 // indirect
92-
golang.org/x/time v0.5.0 // indirect
93-
google.golang.org/genproto/googleapis/api v0.0.0-20240227224415-6ceb2ff114de // indirect
94-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de // indirect
95-
google.golang.org/grpc v1.63.2 // indirect
96-
google.golang.org/protobuf v1.33.0 // indirect
89+
golang.org/x/crypto v0.28.0 // indirect
90+
golang.org/x/crypto/x509roots/fallback v0.0.0-20240806160748-b2d3a6a4b4d3 // indirect
91+
golang.org/x/net v0.30.0 // indirect
92+
golang.org/x/sync v0.8.0 // indirect
93+
golang.org/x/sys v0.26.0 // indirect
94+
golang.org/x/term v0.25.0 // indirect
95+
golang.org/x/text v0.19.0 // indirect
96+
golang.org/x/time v0.7.0 // indirect
97+
google.golang.org/genproto/googleapis/api v0.0.0-20240822170219-fc7c04adadcd // indirect
98+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240822170219-fc7c04adadcd // indirect
99+
google.golang.org/grpc v1.65.0 // indirect
100+
google.golang.org/protobuf v1.34.2 // indirect
97101
gopkg.in/cenkalti/backoff.v1 v1.1.0 // indirect
98102
gopkg.in/yaml.v3 v3.0.1 // indirect
99103
)

0 commit comments

Comments
 (0)