Current release owner ✨@adrastaea✨ (September 2024)
- Quiet Planning Board is up to date
- All issues to be included from
Sprint
are merged and moved toMerged
-
Ready for QA
column is empty of issues from previous releases
- Release branches are based on the
develop
branch. - Release branches are named after the version number, e.g.
2.1.0
not the pre-release version number, e.g.2.1.0-alpha.1
. - Once a release branch is created, it is frozen and no new features are to be merged into it. Only bug fixes are allowed.
- Release branches are never deleted.
- Any hotfixes for the release branch are merged into the release branch and then cherry-picked into the
develop
branch if necessary.
# Example of branching strategy
/develop -> /2.1.0 -> #patch-commit
-> #feature-commit -> #patch-commit (cherry-picked) -> /2.2.0
-> ...
- Prepare a release candidate (alpha).
- Deliver the alpha to QA.
- QA tests the alpha.
- If QA finds issues, a github issue is created and moved to the
Sprint
column. Any fixes are merged into the release branch anddevelop
branch. - If QA finds no issues, the release is approved.
- A production release is built.
- QA tests the production release.
- Production release is published.
- Release branch is created from
develop
branch with the production version number, e.g.2.1.0
. - Reviewed the base
CHANGELOG.md
file and ensured that it is up to date with all changes included in the release since the last production release. Package levelCHANGELOG.md
files are automatically updated during the release process. - Reviewed the Quiet Planning Board and ensured all issues contained in the release candidate are in the
Ready for QA
column.
Alpha releases are pre-release versions of the release which are delivered to QA for testing. They are versioned with a pre-release version number, e.g. 2.1.0-alpha.0
.
- Generate a Github Personal Access Token and set it as
GH_TOKEN
environment variable (or include it in the command as shown below). - Trigger a pre-release with
GH_TOKEN=<token> npm run publish --release=[prepatch|preminor|premajor|<EXACT_VERSION>]
(e.g. to create a prerelease of a minor updatenpm run publish --release=preminor
) This will increment the versions of every package that has changed, create a release on the Releases Page, and trigger Github Actions to deploy the alpha release to the Google Play Store and App Store. - Manually update the release notes on the Releases Page with the changes included in the alpha release. See RELEASE_NOTES_GUIDE.md for guidance on writing release notes.
- Promote the alpha release on the Google Play Console to a closed testing track. Contact @holmesworcester if you need access to the organization.
- Notify QA that the alpha release is ready for testing.
- Build is working correctly, passes automated tests and self-QA
- Alpha was delivered for QA
- Sprint column is free from QA reported blocking issues
- QA approved the release
- All hotfixes for issues discovered in alpha releases have been merged into the release (and develop) branch
- CHANGELOG.md is up to date and approved by @holmesworcester
- PM approved the release
- If not already done, generate a Github Personal Access Token and set it as
GH_TOKEN
environment variable (or include it in the command as shown below). - Trigger a production release with
GH_TOKEN=<token> npm run publish --release=[patch|minor|major|<EXACT_VERSION>]
(e.g. to create a prerelease of a minor updatenpm run publish --release=minor
) This should remove thealpha.x
suffix, and create a release on the Releases Page, and trigger Github Actions to deploy the release to the Google Play Store and App Store. If the semantic version is different from the alpha release, select no in the prompt to create new versions, and call the command again with the exact version. - Manually update the release notes on the Releases Page with the changes included in the release. See RELEASE_NOTES_GUIDE.md for guidance on writing release notes.
- Promote the release on the Google Play Console to a production track.
- Promote the release on the App Store Connect.
- Checkout the
gh-pages
branch, and create a PR (example) to update the download links on the Quiet website to point to the new release.
- Release build completed successfully and the assets are uploaded to the release page
- Download links are updated on website
- App is promoted and sent for review on a production track in Google Play
- App is promoted and sent for review on an external track in App Store (Test Flight)
- Issues in
Ready for QA
are moved toDone
QA tests for issues on all the supported platforms, moves discovered blocking issues into the Sprint column, and notifies the team in the Slack #qa channel.
QA will test according to the following checklists: Quiet Desktop Checklist Quiet Mobile Checklist Quiet Prod Checklist
- Team drops any other work to work on new issues blocking release
- PM can asynchronously decide a bug is not a blocker
- Team and QA can consult PM if they suspect a bug is not really a blocker despite meeting criteria
- PM can approve release in advance, pending completion of issues, or wait to give approval