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

Commit 0e0f966

Browse files
author
Ivan Mirić
authored
Merge pull request #128 from grafana/release/v0.1.1
Release v0.1.1
2 parents 504d8c6 + e2bbe5a commit 0e0f966

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
k6modules "go.k6.io/k6/js/modules"
3232
)
3333

34-
const version = "v0.1.0"
34+
const version = "v0.1.1"
3535

3636
type (
3737
// RootModule is the global module instance that will create module

release notes/v0.1.1.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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.

0 commit comments

Comments
 (0)