From e9d83490aed2f5678bacaae2656469d8571b8be2 Mon Sep 17 00:00:00 2001 From: Mihail Stoykov Date: Tue, 16 Mar 2021 10:28:51 +0200 Subject: [PATCH] Release notes and bump version for v0.31.1 --- lib/consts/consts.go | 2 +- release notes/v0.31.1.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 release notes/v0.31.1.md diff --git a/lib/consts/consts.go b/lib/consts/consts.go index 85f40159fe7..df6833325ba 100644 --- a/lib/consts/consts.go +++ b/lib/consts/consts.go @@ -28,7 +28,7 @@ import ( ) // Version contains the current semantic version of k6. -const Version = "0.31.0" +const Version = "0.31.1" // VersionDetails can be set externally as part of the build process var VersionDetails = "" // nolint:gochecknoglobals diff --git a/release notes/v0.31.1.md b/release notes/v0.31.1.md new file mode 100644 index 00000000000..57d78debf37 --- /dev/null +++ b/release notes/v0.31.1.md @@ -0,0 +1,3 @@ +k6 v0.31.1 is a patch release with a single bugfix. + +The bugfix is about the cloud output and the new `http_req_failed` metric in k6 v0.31.0. Due to additional state being used for its transport to the k6 cloud, and a misunderstanding of what a functional call from a library dependency does, the `http_req_failed` values were always set to `1`. This did not affect any other output or the end of test summary. ([#1908](https://github.com/loadimpact/k6/issues/1908))