-
Notifications
You must be signed in to change notification settings - Fork 214
Release v2024‐07‐27
-
Made a copy of the latest release Release-v2024-07-19 documented as a new page on cardano-wallet's wiki called Release-v2024-07-27.
-
Check for performance regressions on the
branch commit
artifacts . This was don by hand by running a script that is going to be merged next week -
Pick up the latest green commit from the release pipeline and prove it's green by linking the successful buildkite and github actions builds here.
-
relelase pipeline build: https://buildkite.com/cardano-foundation/cardano-wallet-release/builds/322
-
release pipeline master commit: https://github.com/cardano-foundation/cardano-wallet/commit/1770cb2327828d0cb1f11a39decbb20a3a0c9e2e
-
main pipeline build: https://buildkite.com/cardano-foundation/cardano-wallet/builds/6403
-
release commit: https://github.com/cardano-foundation/cardano-wallet/commit/ceb90fcac0e7ddf9e30705ce1e9d5780222fc3fd
-
Check Windows E2E tests on
branch commit
artifacts, note that the github action code is taken from master -
Check Windows unit tests on
branch commit
artifacts- https://github.com/cardano-foundation/cardano-wallet/actions/runs/10133868481
- we have a failure in the windows unit tests, but it is not related to the release artifacts It seems to be related to the windows environment, as the same test passes on linux and macos. Also the problem is the node crashing, not the wallet.
-
- Trigger a release build on CI (GitHub Actions) for this release branch. Enforce the following in cardano-wallet repo:
export RELEASE_GIT_COMMIT=ceb90fcac0e7ddf9e30705ce1e9d5780222fc3fd export NEW_GIT_TAG=v2024-07-27 git tag --sign -m $NEW_GIT_TAG $NEW_GIT_TAG $RELEASE_GIT_COMMIT git push origin $NEW_GIT_TAG
We use bump.sh
to generate a record of all API changes between the last release and this release. This is the result: no structural changes in the API since the last release.
-
Write release notes in the draft release invoked by
Prepare the release
tag push. Do not create your own drat release, it should be automatically created already. release page -
Add the relevant artifacts to the release page from the 6403 buldkite build
- Linux (linux64 artifact)
- Windows (win64 artifact)
- MacOS-intel (macos-intel artifact)
- MacOS-arm64 (macos-silicon artifact)
- docker (docker artifact)
If there is no artifact in the buidkite build:
$ docker pull cardanofoundation/cardano-wallet:2024.7.27 $ docker image ls REPOSITORY TAG IMAGE ID CREATED SIZE cardanofoundation/cardano-wallet 2024.7.27 fa57252f1328 54 years ago 1.15GB $ docker save fa57252f1328 | gzip > cardano-wallet_v2024.7.27-docker.tar.gz
-
Verify that the documentations have been correctly exported on https://github.com/cardano-foundation/cardano-wallet/commit/ceb90fcac0e7ddf9e30705ce1e9d5780222fc3fd
-
Make a commit with redirects to the documentation for the release like
```bash git checkout gh-pages git pull origin gh-pages cd releases ./make_redirects.sh $NEW_GIT_TAG git push origin gh-pages ```
-
Make sure the Command-Line Interface manual is up to date.
- Verify that sensitive fields listed in
Cardano/Wallet/Api/Server
are still accurate and aren't missing any new ones.
sensitive = [ "passphrase" , "old_passphrase" , "new_passphrase" , "mnemonic_sentence" , "mnemonic_second_factor" ]
-
Once everyone has signed off (i.e. Tech lead, QA & Release manager), publish the release draft.
-
Merge the (administrative) commits created for the release tag back into the
master
branch. -
Remember to leave this checklist in an up-to-date status for the next releaser