5.6 KiB
layout, title, parent, grand_parent, nav_order
| layout | title | parent | grand_parent | nav_order |
|---|---|---|---|---|
| default | Create a new release | Release | Miscellaneous | 1 |
Release Preparation Checklist
Follow the steps in the checklist below to prepare a new release.
Versioning client and server
- Update ./apps/server/Shared/AliasVault.Shared.Core/AppInfo.cs and update major/minor/patch to the new version. This version will be shown in the client and admin app footer. This version should be equal to the git release tag.
- Update ./apps/server/Shared/AliasVault.Shared.Core/AppInfo.cs with the minimum supported client versions.
- In case API output breaks earlier client versions and/or this version of the client/API will upgrade the client vault model to a new major version.
- Update ./install.sh
@versionin header if the install script has changed. This allows the install script to self-update when running the./install.sh updatecommand on default installations.
Versioning browser extensions
- Update
./apps/browser-extension/wxt.config.tswith the new version for the extension. This will be shown in the browser extension web stores. This version should be equal to the git release tag. - Update
./apps/browser-extension/safari-xcode/AliasVault/AliasVault.xcodeproj/project.pbxprojand set the version inMARKETING_VERSIONand increase the build number inCURRENT_PROJECT_VERSION. This is the version that will be shown in the Safari Browser Extension App Store. - Update
./apps/browser-extension/src/utils/AppInfo.tswith the new version for the extension. This version should be equal to the git release tag. - Update
./apps/browser-extension/src/utils/AppInfo.tswith the minimum supported server version (in case of required API breaking changes). - Update
./apps/browser-extension/src/utils/AppInfo.tswith the minimum supported client vault version (in case of required client vault model changes).
Versioning mobile apps
- Update
./apps/mobile-app/utils/AppInfo.tswith the new version for the extension. This version should be equal to the git release tag. - Update
./apps/mobile-app/utils/AppInfo.tswith the minimum supported server version (in case of required API breaking changes). - Update
./apps/mobile-app/utils/AppInfo.tswith the minimum supported client vault version (in case of required client vault model changes). - Update
./apps/mobile-app/ios/AliasVault.xcodeproj/project.pbxprojand set the version inMARKETING_VERSIONand increase the build number inCURRENT_PROJECT_VERSION. This is the version that will be shown in the iOS App Store.
Docker Images
If docker containers have been added or removed:
- Verify that
.github/workflows/release.ymlcontains references to all docker images that need to be published. - Update
install.shand verify that theimages=()array that takes care of pulling the images from the GitHub Container Registry is updated.
Manual Testing (since v0.10.0+)
- Verify that the db migration from SQLite to PostgreSQL works. This needs to be tested manually until the SQLite support is removed. Test with:
./install.sh db-migrateon an existing installation that has a SQLite database in./database/AliasServerDb.sqlite.
Documentation
- Update /docs instructions if any changes have been made to the setup process
- Update README screenshots if applicable
- Update README current/upcoming features
Release flow
Follow the steps below to publish a new release to the various channels.
Create a new release on GitHub
The creation of the new release tag will cause the install.sh script to see the new version via GitHub and prompt the user to update when install.sh update is run.
The creation of the new release tag will also trigger the GitHub Actions workflow Publish Docker Images which will build the docker images and push them to the GitHub Container Registry. After publishing, the images will then be available for the installation script to pull during the update. Do take note that this publish step may take up to 15 minutes to complete. Between the creation of the release tag and the completion of the publish step, the installation script will not be able to pull the new images (yet), this is expected.
- Create a new release on GitHub with a new tag in semver format, e.g.
0.12.0. - Add a description to the release and generate the changelog.
- Publish the release.
Publish new browser extension version
The GitHub Actions workflow Browser Extension Build will build the browser extension(s) and publish the archive to the GitHub Actions Artifacts page and also upload the archives to the release.
Note: this step is only required if the browser extension has been updated.
- Download the browser extension archives from the newly published release. Note: it can take a few minutes for the artifacts to be available after the release has been published.
- Upload the Chrome archive to the Chrome Web Store.
- Upload the Firefox archive (normal + sources) to the Firefox Add-ons page.
- Upload the Edge archive to the Microsoft Edge Add-ons page.
- Submit the Safari extension to Apple for review:
- Navigate to the
apps/browser-extensiondirectory. - Build the safari extension locally via
npm run build:safari, which will output the build files todist/safari-mv2. Note: it's important to always rebuild, as otherwise stale build files from a previous build might get included in the Safari binary by accident! - Open the
apps/browser-extension/safari-xcode/AliasVault/AliasVault.xcodeprojproject in Xcode and submitting the extension via the "Archive" and then "Distribute App" option.
- Navigate to the