k6 release v2.3.0
Author: andrewslotinCreated Aug 6, 2026Updated Sep 16, 2026
Labelsrelease
Release Date:
21st September 2026
Release Activities
At the beginning of the cycle
- Create a new
release-v2.3.0branch.- Add a new
v2.3.0.mdrelease notes file using the available template to the repository'srelease notesfolder.
- Add a new
- Create a new
release-v2.3.0branch on the grafana/k6-DefinitelyTyped fork repository.Branch off
upstream/master, not the fork'smaster. The fork'smasteris an old copy of upstream. Do not use GitHub's "Sync fork" button: repository rules on the fork block it and they cannot be amended.git remote add upstream https://github.com/DefinitelyTyped/DefinitelyTyped.git # only once git fetch origin && git fetch upstream git checkout -b release-v2.3.0 upstream/master git push -u origin release-v2.3.0Bump the version in types/k6/package.json to
2.3.9999.
- Lock the conversation of the current issue to prevent any abuse or misuse of the issue. Note, it still allow the maintainers to edit the issue's description and to add comments.
Release Preparation
~ 2 weeks before the release date
- Ensure that all PRs from a release milestone are merged.
~ 1 week before the release date
- Ensure that all merged PRs referenced in the release notes are linked to the release milestone.
- Ensure all PRs in the
k6-docsrepository related to new or modified functionalities introduced by the new version have been created. - Ensure all PRs in the
k6repository, part of the current milestone, have been merged. - Open a PR with the release notes for the new version
- Ask teams that might have contributed to the release to contribute their notes and review the existing ones.
- Remember to mention and thank external contributors.
- Share the release notes PR with the k6 open-source teams. Request contributions from all affected teams and any other stakeholders involved in the new release.
- Open a separate PR for bumping the k6 version to 2.3.0.
- Open a PR in the
DefinitelyTyped/DefinitelyTypedrepository using therelease-v2.3.0branch created in the grafana/k6-DefinitelyTyped fork to update the k6 type definitions for the new release. - Open a PR to add the new k6 version to the extensions registry, adding
- v2.3.0underversions:inregistry-v2.yaml(similar to this one for v2.2.0). Register k6 v2.3.0. Merge only after the k6 v2.3.0 release is published.
~ 1 day before the release date
- Ensure all PRs in the
k6-docsrepository related to new or modified functionalities introduced by the new version have been merged.
Release Day
Documentation
- Open and merge a PR from
mainin thek6-docsrepository:- Creating a new
v2.3.0.mdfile in the next release notes folder and copy/paste the main sections of the release notes (new features, deprecations and roadmap). - Copying the current k6's
next(including the newly created release note file) to a folder named with the k6 version,v2.3.x.
- Creating a new
- Ensure the
k6repository release notes PR contains the correct links to the docs.
In k6 repository
- Merge the PR bumping the k6 version to 2.3.0.
- Merge the release notes PR.
- Pull locally the previously merged changes.
- Create a new long-lived
v2.3.xrelease branch from themasterbranch. - Create and push a new tag of the form
v2.3.0.
git checkout master && git pull && git checkout -b v2.3.x && git push -u origin v2.3.x && git tag v2.3.0 -m "v2.3.0" && git push origin v2.3.0In k6-extension-registry
- After the k6 v2.3.0 release is published, merge Register k6 v2.3.0. Note: v2 versions live in
registry-v2.yaml, notregistry.yaml. - Push a new tag/make new release to push that the update to production
Announcements
- Notify the larger team in the #k6 and #k6-changelog channels, letting them know that the release is published by linking the release on GitHub.
- Close the release's milestone.
Wrapping Release
- Ensure the
DefinitelyTyped/DefinitelyTypedPR(s) are merged. - Update the k6 repository's
.github/ISSUE_TEMPLATE/release.mdin the event steps from this checklist were incorrect or missing.
Source: grafana/k6