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

Commit a7eacdd

Browse files
committed
Update k6 with the k6 event system fix
The PR we're interested in is grafana/k6#3968.
1 parent c449c05 commit a7eacdd

File tree

2 files changed

+72
-70
lines changed

2 files changed

+72
-70
lines changed

go.mod

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ go 1.21
55
require (
66
github.com/chromedp/cdproto v0.0.0-20221023212508-67ada9507fb2
77
github.com/gorilla/websocket v1.5.1
8-
github.com/grafana/sobek v0.0.0-20240808084414-f7ac208544fe
8+
github.com/grafana/sobek v0.0.0-20240829081756-447e8c611945
99
github.com/mailru/easyjson v0.7.7
1010
github.com/mccutchen/go-httpbin v1.1.2-0.20190116014521-c5cb2f4802fa
1111
github.com/mstoykov/k6-taskqueue-lib v0.1.0
1212
github.com/sirupsen/logrus v1.9.3
1313
github.com/stretchr/testify v1.9.0
14-
go.k6.io/k6 v0.53.0
15-
go.opentelemetry.io/otel v1.24.0
16-
go.opentelemetry.io/otel/trace v1.24.0
17-
golang.org/x/net v0.27.0
18-
golang.org/x/sync v0.7.0
14+
go.k6.io/k6 v0.53.1-0.20240925100229-86ab6e3ceee8
15+
go.opentelemetry.io/otel v1.29.0
16+
go.opentelemetry.io/otel/trace v1.29.0
17+
golang.org/x/net v0.28.0
18+
golang.org/x/sync v0.8.0
1919
gopkg.in/guregu/null.v3 v3.3.0
2020
)
2121

@@ -28,15 +28,16 @@ require (
2828
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
2929
github.com/chromedp/sysutil v1.0.0 // indirect
3030
github.com/davecgh/go-spew v1.1.1 // indirect
31-
github.com/dlclark/regexp2 v1.9.0 // indirect
31+
github.com/dlclark/regexp2 v1.11.4 // indirect
3232
github.com/dop251/goja v0.0.0-20240610225006-393f6d42497b // indirect
3333
github.com/evanw/esbuild v0.21.2 // indirect
3434
github.com/fatih/color v1.17.0 // indirect
3535
github.com/go-logr/logr v1.4.2 // indirect
3636
github.com/go-logr/stdr v1.2.2 // indirect
3737
github.com/go-sourcemap/sourcemap v2.1.4+incompatible // indirect
3838
github.com/google/pprof v0.0.0-20230728192033-2ba5b33183c6 // indirect
39-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1 // indirect
39+
github.com/google/uuid v1.6.0 // indirect
40+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
4041
github.com/josharian/intern v1.0.0 // indirect
4142
github.com/klauspost/compress v1.17.9 // indirect
4243
github.com/mattn/go-colorable v0.1.13 // indirect
@@ -46,25 +47,24 @@ require (
4647
github.com/onsi/ginkgo v1.16.5 // indirect
4748
github.com/onsi/gomega v1.20.2 // indirect
4849
github.com/pmezard/go-difflib v1.0.0 // indirect
49-
github.com/rogpeppe/go-internal v1.11.0 // indirect
5050
github.com/serenize/snaker v0.0.0-20201027110005-a7ad2135616e // indirect
5151
github.com/spf13/afero v1.1.2 // indirect
5252
github.com/tidwall/gjson v1.17.1 // indirect
5353
github.com/tidwall/match v1.1.1 // indirect
5454
github.com/tidwall/pretty v1.2.1 // indirect
55-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.24.0 // indirect
56-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.24.0 // indirect
57-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.24.0 // indirect
58-
go.opentelemetry.io/otel/metric v1.24.0 // indirect
59-
go.opentelemetry.io/otel/sdk v1.24.0 // indirect
60-
go.opentelemetry.io/proto/otlp v1.1.0 // indirect
61-
golang.org/x/crypto v0.25.0 // indirect
62-
golang.org/x/sys v0.22.0 // indirect
63-
golang.org/x/text v0.16.0 // indirect
64-
golang.org/x/time v0.5.0 // indirect
65-
google.golang.org/genproto/googleapis/api v0.0.0-20240318140521-94a12d6c2237 // indirect
66-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240401170217-c3f982113cda // indirect
67-
google.golang.org/grpc v1.64.1 // indirect
55+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.29.0 // indirect
56+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.29.0 // indirect
57+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.29.0 // indirect
58+
go.opentelemetry.io/otel/metric v1.29.0 // indirect
59+
go.opentelemetry.io/otel/sdk v1.29.0 // indirect
60+
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
61+
golang.org/x/crypto v0.26.0 // indirect
62+
golang.org/x/sys v0.24.0 // indirect
63+
golang.org/x/text v0.17.0 // indirect
64+
golang.org/x/time v0.6.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
6868
google.golang.org/protobuf v1.34.2 // indirect
6969
gopkg.in/yaml.v3 v3.0.1 // indirect
7070
)

0 commit comments

Comments
 (0)