2013-05-20 06:30:00 +02:00
Release Process
====================
2023-11-29 15:27:34 +01:00
* [ ] Update translations, see [translation_process.md ](https://github.com/dashpay/dash/blob/master/doc/translation_process.md#synchronising-translations ).
* [ ] Update manpages, see [gen-manpages.sh ](https://github.com/dashpay/dash/blob/master/contrib/devtools/README.md#gen-manpagessh ).
* [ ] Update release candidate version in `configure.ac` (`CLIENT_VERSION_RC`)
2016-09-25 13:35:15 +02:00
2018-01-19 10:50:14 +01:00
Before every minor and major release:
2013-05-20 06:30:00 +02:00
2023-11-29 15:27:34 +01:00
* [ ] Update [bips.md ](bips.md ) to account for changes since the last release.
* [ ] Update DIPs with any changes introduced by this release (see [this pull request ](https://github.com/dashpay/dips/pull/142 ) for an example)
* [ ] Update version in `configure.ac` (don't forget to set `CLIENT_VERSION_IS_RELEASE` to `true` ) (don't forget to set `CLIENT_VERSION_RC` to `0` )
* [ ] Write release notes (see below)
* [ ] Update `src/chainparams.cpp` `nMinimumChainWork` with information from the `getblockchaininfo` rpc.
* [ ] Update `src/chainparams.cpp` `defaultAssumeValid` with information from the `getblockhash` rpc.
2018-01-19 10:50:14 +01:00
- The selected value must not be orphaned so it may be useful to set the value two blocks back from the tip.
- Testnet should be set some tens of thousands back from the tip due to reorgs there.
2023-11-29 15:27:34 +01:00
- This update should be reviewed with a `reindex-chainstate` with `assumevalid=0` to catch any defect
that causes rejection of blocks in the past history.
* [ ] Ensure all TODOs are evaluated and resolved if needed
* [ ] Verify Insight works
* [ ] Verify p2pool works (unmaintained; no responsible party)
* [ ] Tag version and push (see below)
* [ ] Validate that CI passes
2018-01-19 10:50:14 +01:00
Before every major release:
2023-11-29 15:27:34 +01:00
* [ ] Update hardcoded [seeds ](/contrib/seeds/README.md ), see [this pull request ](https://github.com/dashpay/dash/pull/5692 ) for an example.
* [ ] Update [`src/chainparams.cpp` ](/src/chainparams.cpp ) `m_assumed_blockchain_size` and `m_assumed_chain_state_size` with the current size plus some overhead (see [this ](#how-to-calculate-m_assumed_blockchain_size-and-m_assumed_chain_state_size ) for information on how to calculate them).
* [ ] Update `src/chainparams.cpp` `chainTxData` with statistics about the transaction count and rate. Use the output of the RPC `getchaintxstats` , see
[this pull request ](https://github.com/dashpay/dash/pull/5692 ) for an example. Reviewers can verify the results by running `getchaintxstats <window_block_count> <window_last_block_hash>` with the `window_block_count` and `window_last_block_hash` from your output.
2013-05-20 06:30:00 +02:00
2017-05-05 13:28:08 +02:00
### First time / New builders
2018-01-19 10:50:14 +01:00
2021-07-20 05:07:18 +02:00
Install Guix using one of the installation methods detailed in
[contrib/guix/INSTALL.md ](/contrib/guix/INSTALL.md ).
2016-09-30 20:50:37 +02:00
2015-10-13 13:11:17 +02:00
Check out the source code in the following directory hierarchy.
2013-05-20 06:30:00 +02:00
2023-11-29 15:27:34 +01:00
```sh
cd /path/to/your/toplevel/build
git clone https://github.com/dashpay/guix.sigs.git
git clone https://github.com/dashpay/dash-detached-sigs.git
git clone https://github.com/dashpay/dash.git
```
2015-09-17 23:17:26 +02:00
2017-04-07 15:37:31 +02:00
### Dash Core maintainers/release engineers, suggestion for writing release notes
2018-01-19 10:50:14 +01:00
Write release notes. git shortlog helps a lot, for example:
2013-05-20 06:30:00 +02:00
2023-11-29 15:27:34 +01:00
```sh
git shortlog --no-merges v(current version, e.g. 19.3.0)..v(new version, e.g. 20.0.0)
```
2013-05-20 06:30:00 +02:00
2018-01-19 10:50:14 +01:00
Generate list of authors:
2013-05-20 06:30:00 +02:00
2023-11-29 15:27:34 +01:00
```sh
git log --format='- %aN' v(current version, e.g. 19.3.0)..v(new version, e.g. 20.0.0) | sort -fiu
```
2013-05-20 06:30:00 +02:00
2018-01-19 10:50:14 +01:00
Tag version (or release candidate) in git
2013-05-20 06:30:00 +02:00
2023-11-29 15:27:34 +01:00
```sh
git tag -s v(new version, e.g. 20.0.0)
```
2013-05-20 06:30:00 +02:00
2021-07-20 05:07:18 +02:00
### Setup and perform Guix builds
2014-08-13 01:24:05 +02:00
2021-07-20 05:07:18 +02:00
Checkout the Dash Core version you'd like to build:
2016-09-30 20:50:37 +02:00
2021-07-20 05:07:18 +02:00
```sh
pushd ./dash
2023-11-29 15:27:34 +01:00
export SIGNER='(your builder key, ie udjinm6, pasta, etc)'
2021-07-20 05:07:18 +02:00
export VERSION='(new version, e.g. 20.0.0)'
git fetch "v${VERSION}"
git checkout "v${VERSION}"
popd
```
2015-09-17 23:17:26 +02:00
2021-07-20 05:07:18 +02:00
Ensure your guix.sigs are up-to-date if you wish to `guix-verify` your builds
against other `guix-attest` signatures.
2015-09-17 23:17:26 +02:00
2021-07-20 05:07:18 +02:00
```sh
git -C ./guix.sigs pull
```
2015-09-17 23:17:26 +02:00
2021-07-20 05:07:18 +02:00
### Create the macOS SDK tarball: (first time, or when SDK version changes)
2013-05-20 06:30:00 +02:00
2023-11-29 15:27:34 +01:00
_Note: this step can be skipped if [our CI ](https://github.com/dashpay/dash/blob/master/ci/test/00_setup_env.sh#L64 ) still uses bitcoin's SDK package (see SDK_URL)_
2021-07-20 05:07:18 +02:00
Create the macOS SDK tarball, see the [macOS build
instructions](build-osx.md#deterministic-macos-dmg-notes) for
details.
2013-05-20 06:30:00 +02:00
2021-07-20 05:07:18 +02:00
### Build and attest to build outputs:
2015-12-25 13:09:26 +01:00
2021-07-20 05:07:18 +02:00
Follow the relevant Guix README.md sections:
2022-02-15 09:02:35 +01:00
- [Building ](/contrib/guix/README.md#building )
2021-07-20 05:07:18 +02:00
- [Attesting to build outputs ](/contrib/guix/README.md#attesting-to-build-outputs )
2015-12-25 13:09:26 +01:00
2021-07-20 05:07:18 +02:00
### Verify other builders' signatures to your own. (Optional)
2015-12-25 13:09:26 +01:00
2021-07-20 05:07:18 +02:00
Add other builders keys to your gpg keyring, and/or refresh keys: See `../dash/contrib/builder-keys/README.md` .
2015-12-25 13:09:26 +01:00
2021-07-20 05:07:18 +02:00
Follow the relevant Guix README.md sections:
- [Verifying build output attestations ](/contrib/guix/README.md#verifying-build-output-attestations )
2015-12-25 13:09:26 +01:00
2017-05-05 13:28:08 +02:00
### Next steps:
2013-05-20 06:30:00 +02:00
2023-11-29 15:27:34 +01:00
Commit your signature to `guix.sigs` :
2013-05-20 06:30:00 +02:00
2021-07-20 05:07:18 +02:00
```sh
pushd guix.sigs
git add "${VERSION}/${SIGNER}/noncodesigned.SHA256SUMS{,.asc}"
git commit -a
git push # Assuming you can push to the guix.sigs tree
popd
```
2015-06-19 00:17:36 +02:00
2018-06-05 15:47:25 +02:00
Codesigner only: Create Windows/macOS detached signatures:
2017-03-13 07:37:02 +01:00
- Only one person handles codesigning. Everyone else should skip to the next step.
2018-06-05 15:47:25 +02:00
- Only once the Windows/macOS builds each have 3 matching signatures may they be signed with their respective release keys.
2017-03-13 07:37:02 +01:00
2018-06-05 15:47:25 +02:00
Codesigner only: Sign the macOS binary:
2017-03-13 07:37:02 +01:00
2023-11-29 15:27:34 +01:00
* Transfer `dashcore-osx-unsigned.tar.gz` to macOS for signing
* Extract and sign:
```sh
2019-02-26 23:04:56 +01:00
tar xf dashcore-osx-unsigned.tar.gz
2019-08-28 09:54:19 +02:00
./detached-sig-create.sh -s "Key ID" -o runtime
2023-11-29 15:27:34 +01:00
```
* Enter the keychain password and authorize the signature
* Move `signature-osx.tar.gz` back to the guix-build host
2017-03-13 07:37:02 +01:00
Codesigner only: Sign the windows binaries:
2023-11-29 15:27:34 +01:00
* Extract and sign:
```sh
2019-02-26 23:04:56 +01:00
tar xf dashcore-win-unsigned.tar.gz
2017-03-13 07:37:02 +01:00
./detached-sig-create.sh -key /path/to/codesign.key
2023-11-29 15:27:34 +01:00
```
* Enter the passphrase for the key when prompted
* `signature-win.tar.gz` will be created
2017-03-13 07:37:02 +01:00
Codesigner only: Commit the detached codesign payloads:
2021-07-20 05:07:18 +02:00
```sh
pushd ~/dashcore-detached-sigs
# checkout the appropriate branch for this release series
2023-11-29 15:27:34 +01:00
git checkout "v${VERSION}"
2021-07-20 05:07:18 +02:00
rm -rf *
tar xf signature-osx.tar.gz
tar xf signature-win.tar.gz
git add -A
2023-11-29 15:27:34 +01:00
git commit -m "add detached sigs for win/osx for ${VERSION}"
git push
2021-07-20 05:07:18 +02:00
popd
```
2017-03-13 07:37:02 +01:00
2018-06-05 15:47:25 +02:00
Non-codesigners: wait for Windows/macOS detached signatures:
2018-01-19 10:50:14 +01:00
2018-06-05 15:47:25 +02:00
- Once the Windows/macOS builds each have 3 matching signatures, they will be signed with their respective release keys.
2018-01-19 10:50:14 +01:00
- Detached signatures will then be committed to the [dash-detached-sigs ](https://github.com/dashpay/dash-detached-sigs ) repository, which can be combined with the unsigned apps to create signed binaries.
2021-07-20 05:07:18 +02:00
Create (and optionally verify) the codesigned outputs:
- [Codesigning ](/contrib/guix/README.md#codesigning )
2018-01-19 10:50:14 +01:00
2018-06-05 15:47:25 +02:00
Commit your signature for the signed macOS/Windows binaries:
2018-01-19 10:50:14 +01:00
2021-07-20 05:07:18 +02:00
```sh
pushd ./guix.sigs
git add "${VERSION}/${SIGNER}"/all.SHA256SUMS{,.asc}
git commit -m "Add ${SIGNER} ${VERSION} signed binaries signatures"
git push # Assuming you can push to the guix.sigs tree
popd
```
2013-05-20 06:30:00 +02:00
2021-07-20 05:07:18 +02:00
### After 3 or more people have guix-built and their results match:
2013-05-20 06:30:00 +02:00
2023-11-29 15:27:34 +01:00
* [ ] Combine the `all.SHA256SUMS.asc` file from all signers into `SHA256SUMS.asc` :
```sh
cat "$VERSION"/*/all.SHA256SUMS.asc > SHA256SUMS.asc
```
* [ ] GPG sign each download / binary
* [ ] Upload zips and installers, as well as `SHA256SUMS.asc` from last step, to GitHub as GitHub draft release.
2021-08-20 09:10:15 +02:00
1. The contents of each `./dash/guix-build-${VERSION}/output/${HOST}/` directory, except for
2021-07-20 05:07:18 +02:00
`*-debug*` files.
2014-08-04 09:47:59 +02:00
2023-11-29 15:27:34 +01:00
Guix will output all of the results into host subdirectories, but the `SHA256SUMS`
2021-08-20 09:10:15 +02:00
file does not include these subdirectories. In order for downloads via torrent
to verify without directory structure modification, all of the uploaded files
2023-11-29 15:27:34 +01:00
need to be in the same directory as the `SHA256SUMS` file.
2021-08-20 09:10:15 +02:00
2021-07-20 05:07:18 +02:00
The `*-debug*` files generated by the guix build contain debug symbols
for troubleshooting by developers. It is assumed that anyone that is
interested in debugging can run guix to generate the files for
themselves. To avoid end-user confusion about which file to pick, as well
as save storage space *do not upload these to the dash.org server* .
2021-08-09 10:19:30 +02:00
2021-08-20 09:10:15 +02:00
```sh
find guix-build-${VERSION}/output/ -maxdepth 2 -type f -not -name "SHA256SUMS.part" -and -not -name "*debug*" -exec scp {} user@dash.org:/var/www/bin/dash-core-${VERSION} \;
```
2021-08-09 10:19:30 +02:00
2. The `SHA256SUMS` file
3. The `SHA256SUMS.asc` combined signature file you just created
2023-11-29 15:27:34 +01:00
* [ ] Validate `SHA256SUMS.asc` and all binaries attached to GitHub draft release are correct
* [ ] Notarize macOS binaries
* [ ] Publish release on GitHub
* [ ] Fast-forward `master` branch on GitHub
* [ ] Update the dash.org download links
* [ ] Ensure that docker hub images are up to date
### Announce the release:
* [ ] Release on Dash forum: https://www.dash.org/forum/topic/official-announcements.54/ (necessary so we have a permalink to use on twitter, reddit, etc.)
* [ ] Prepare product brief (major versions only)
* [ ] Prepare a release announcement tweet
* [ ] Follow-up tweets with any important block heights for consensus changes
* [ ] Post on Reddit
* [ ] Celebrate
### After the release:
* [ ] Submit patches to BTCPay to ensure they use latest / compatible version see https://github.com/dashpay/dash/issues/4211#issuecomment-966608207
* [ ] Update Core and User docs (docs.dash.org)
* [ ] Test Docker build runs without error in Dashmate
* [ ] Add new Release Process items to repo [Release Process ](release-process.md ) document
* [ ] Merge `master` branch back into `develop` so that `master` could be fast-forwarded on next release again
2019-09-30 14:40:13 +02:00
2023-05-26 20:41:48 +02:00
### MacOS Notarization
#### Prerequisites
Make sure you have the latest Xcode installed on your macOS device. You can download it from the Apple Developer website.
You should have a valid Apple Developer ID under the team you are using which is necessary for the notarization process.
2023-11-29 15:27:34 +01:00
To avoid including your password as cleartext in a notarization script, you can provide a reference to a keychain item. You can add a new keychain item named `AC_PASSWORD` from the command line using the `notarytool` utility:
```sh
2023-05-26 20:41:48 +02:00
xcrun notarytool store-credentials "AC_PASSWORD" --apple-id "AC_USERNAME" --team-id < WWDRTeamID > --password < secret_2FA_password >
```
#### Notarization
Open Terminal, and navigate to the location of the .dmg file.
Then, run the following command to notarize the .dmg file:
2023-11-29 15:27:34 +01:00
```sh
2023-11-16 04:39:25 +01:00
xcrun notarytool submit dashcore-{version}-{x86_64, arm64}-apple-darwin.dmg --keychain-profile "AC_PASSWORD" --wait
2023-05-26 20:41:48 +02:00
```
2023-11-29 15:27:34 +01:00
Replace `{version}` with the version you are notarizing. This command uploads the .dmg file to Apple's notary service.
The `--wait` option makes the command wait to return until the notarization process is complete.
2023-05-26 20:41:48 +02:00
If the notarization process is successful, the notary service generates a log file URL. Please save this URL, as it contains valuable information regarding the notarization process.
#### Notarization Validation
2023-11-29 15:27:34 +01:00
After successfully notarizing the .dmg file, extract `Dash-Qt.app` from the .dmg.
2023-05-26 20:41:48 +02:00
To verify that the notarization process was successful, run the following command:
2023-11-29 15:27:34 +01:00
```sh
2023-05-26 20:41:48 +02:00
spctl -a -vv -t install Dash-Qt.app
```
2023-11-29 15:27:34 +01:00
Replace `Dash-Qt.app` with the path to your .app file. This command checks whether your .app file passes Gatekeeper’ s
checks. If the app is successfully notarized, the command line will include a line stating `source=<Notarized Developer ID>` .
2023-05-26 20:41:48 +02:00
2019-09-30 14:40:13 +02:00
### Additional information
#### How to calculate `m_assumed_blockchain_size` and `m_assumed_chain_state_size`
Both variables are used as a guideline for how much space the user needs on their drive in total, not just strictly for the blockchain.
Note that all values should be taken from a **fully synced** node and have an overhead of 5-10% added on top of its base value.
To calculate `m_assumed_blockchain_size` :
- For `mainnet` -> Take the size of the Dash Core data directory, excluding `/regtest` and `/testnet3` directories.
- For `testnet` -> Take the size of the `/testnet3` directory.
To calculate `m_assumed_chain_state_size` :
- For `mainnet` -> Take the size of the `/chainstate` directory.
- For `testnet` -> Take the size of the `/testnet3/chainstate` directory.
Notes:
- When taking the size for `m_assumed_blockchain_size` , there's no need to exclude the `/chainstate` directory since it's a guideline value and an overhead will be added anyway.
- The expected overhead for growth may change over time, so it may not be the same value as last release; pay attention to that when changing the variables.