This repository was archived by the owner on Jan 30, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ import (
31
31
k6modules "go.k6.io/k6/js/modules"
32
32
)
33
33
34
- const version = "v0.1.0 "
34
+ const version = "v0.1.1 "
35
35
36
36
type (
37
37
// RootModule is the global module instance that will create module
Original file line number Diff line number Diff line change
1
+ This is a patch release that fixes a few bugs and does minor improvements.
2
+
3
+
4
+ ## Bugs fixed
5
+
6
+ - Fix getting response body if ` Frame ` is nil. ([ #87 ] ( https://github.com/grafana/xk6-browser/pull/87 ) )
7
+ - Fix possible race condition accessing logrus level. ([ #91 ] ( https://github.com/grafana/xk6-browser/pull/91 ) )
8
+ - Fix nil pointer panic on ` Frame.networkIdleCtx ` . ([ #109 ] ( https://github.com/grafana/xk6-browser/pull/109 ) )
9
+ - Fix errors setting extra HTTP headers. ([ #116 ] ( https://github.com/grafana/xk6-browser/pull/116 ) )
10
+ - Fix data race on ` Response.body ` . ([ #124 ] ( https://github.com/grafana/xk6-browser/pull/124 ) )
11
+ - Fix nil pointer panic accessing ` Frame.currentDocument ` . ([ #127 ] ( https://github.com/grafana/xk6-browser/pull/127 ) )
12
+
13
+
14
+ ## Improvements
15
+
16
+ - Skip request handling of ` data: ` URLs. ([ #91 ] ( https://github.com/grafana/xk6-browser/pull/91 ) )
17
+ - Log URL when fetching response body fails. ([ #91 ] ( https://github.com/grafana/xk6-browser/pull/91 ) )
18
+ - Clean up browser process in case of a test error. ([ #110 ] ( https://github.com/grafana/xk6-browser/pull/110 ) )
19
+
20
+
21
+ ## Internals
22
+
23
+ - Refactor ` Request.url ` into ` url.URL ` . ([ #86 ] ( https://github.com/grafana/xk6-browser/pull/86 ) )
24
+ - Update k6 dependency to [ v0.35.0] ( https://github.com/grafana/k6/releases/tag/v0.35.0 ) . ([ #122 ] ( https://github.com/grafana/xk6-browser/pull/122 ) )<br >
25
+ This fixes the issue of building the extension with xk6 due to a breaking change of
26
+ JavaScript module interfaces in the latest version of k6.
You can’t perform that action at this time.
0 commit comments