Update dependency xk6 to v0.15.0 #287
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v0.14.3
->v0.15.0
Warning
Some dependencies could not be looked up. Check the warning logs for more information.
Release Notes
grafana/xk6 (xk6)
v0.15.0
Compare Source
xk6
v0.15.0
is here! 🎉This release includes:
New Features
Use GoReleaser to release docker images #145
The well-known GoReleaser tool is already used for releasing xk6 binary. Docker images are now also released with GoReleaser.
In addition to simplifying the release workflow, the main benefit is that Docker images are now available with major and minor version tags.
For example, let's say
1.2.3
is the latest xk6 Docker image version.1
is available using thev1
tag:1.2
is available using thev1.2
tag:1.2.3
is still available using thev1.2.3
tag:latest
tag:Refactor GitHub workflows #152
New
validate
andrelease
workflows, whose functionality has been extracted into thetooling-validate
andtooling-release
reusable workflows.The new workflows must be configured via mandatory repository variables:
GO_VERSION
The go version to use for the build.GO_VERSIONS
The go versions to use for running the tests. JSON string array (e.g.["1.24.x", "1.23.x"]
)PLATFORMS
Platforms to be used to run the tests. JSON string array (e.g.["ubuntu-latest","macos-latest"]
)K6_VERSIONS
The k6 versions to be used for integration tests. JSON string array (e.g.["v0.57.0","v0.56.0"]
)GOLANGCI_LINT_VERSION
The golangci-lint version to use for static analysis.GORELEASER_VERSION
The version of GoReleaser to use for builds and releases.The new workflows use the following repository secrets:
DOCKER_USER
Username to use for pushing Docker images to Docker Hub.DOCKER_PASS
Token to use for pushing Docker images to Docker Hub.CODECOV_TOKEN
Token to be used to upload test coverage data to Codecov.Prepare for contributions #148
Making it easy to contribute is essential for an open-source project like xk6. The easier it is to contribute, the more contributors will contribute.
docs/CONTRIBUTING.md
. Making it easy to contribute starts with documenting the contribution process.Makefile
is now generated fromCONTRIBUTING.md
.make
is one of the most widely used task automation tools. Instead of manually editing make rules, it is better to generate them from the task descriptions documented inCONTRIBUTING.md
(seedocs/CONTRIBUTING.md
for more details).docs/CODE_OF_CONDUCT.md
. Since contributors come from different backgrounds, it is essential to document the expected standards of behavior..devcontainer/devcontainer.json
) was added to the repository (seedocs/CONTRIBUTING.md
for more details).Risks
The following changes are not breaking changes but are risky.
fixuid has been copied to the xk6 repo
The fixuid tool was used by the xk6 Docker image to modify the user id and group id at runtime in order to make using the Docker image more convenient.
It was copied based on the following considerations:
The source of the
fixuid
tool has been copied as an internalfixids
tool to theinternal/fixids
folder. A minor refactoring has been done for easier usability. The refactor affected parameter/configuration management, not functionality.This refactor is worth mentioning because of its risk. That's why this release is made from only the changes to the Docker image release.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.