mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
docs: update release process document to follow-up v20 release (#5710)
## Issue being fixed or feature implemented Our [Release Process document](doc/release-process.md) is not exactly matched with our [template issue](https://github.com/dashpay/dash/issues/5694) that created by copy-paste from previous release. For the next release just copy test from this document to new issue ## What was done? [Release Process document](doc/release-process.md) is updated to match with our real release process. This document has also detailed instructions for many steps (in compare to the issue that we use now which is more checklist) to make releasing process easier for all participant. ## How Has This Been Tested? Tested on air by 2 last released: v19, v20: https://github.com/dashpay/dash/issues/5694 ## Breaking Changes N/A ## Checklist: - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [x] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone --------- Co-authored-by: thephez <thephez@users.noreply.github.com> Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
This commit is contained in:
parent
00a076dd35
commit
91f15849e9
@ -1,29 +1,34 @@
|
|||||||
Release Process
|
Release Process
|
||||||
====================
|
====================
|
||||||
|
|
||||||
* Update translations, see [translation_process.md](https://github.com/dashpay/dash/blob/master/doc/translation_process.md#synchronising-translations).
|
* [ ] 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 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`)
|
||||||
* Update release candidate version in `configure.ac` (`CLIENT_VERSION_RC`)
|
|
||||||
|
|
||||||
Before every minor and major release:
|
Before every minor and major release:
|
||||||
|
|
||||||
* Update [bips.md](bips.md) to account for changes since the last release.
|
* [ ] Update [bips.md](bips.md) to account for changes since the last release.
|
||||||
* 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`)
|
* [ ] Update DIPs with any changes introduced by this release (see [this pull request](https://github.com/dashpay/dips/pull/142) for an example)
|
||||||
* Write release notes (see below)
|
* [ ] 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`)
|
||||||
* Update `src/chainparams.cpp` nMinimumChainWork with information from the getblockchaininfo rpc.
|
* [ ] Write release notes (see below)
|
||||||
* Update `src/chainparams.cpp` defaultAssumeValid with information from the getblockhash rpc.
|
* [ ] Update `src/chainparams.cpp` `nMinimumChainWork` with information from the `getblockchaininfo` rpc.
|
||||||
|
* [ ] Update `src/chainparams.cpp` `defaultAssumeValid` with information from the `getblockhash` rpc.
|
||||||
- The selected value must not be orphaned so it may be useful to set the value two blocks back from the tip.
|
- 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.
|
- Testnet should be set some tens of thousands back from the tip due to reorgs there.
|
||||||
- This update should be reviewed with a reindex-chainstate with assumevalid=0 to catch any defect
|
- 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.
|
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
|
||||||
|
|
||||||
Before every major release:
|
Before every major release:
|
||||||
|
|
||||||
* Update hardcoded [seeds](/contrib/seeds/README.md). TODO: Give example PR for Dash
|
* [ ] 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`](/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
|
* [ ] 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/bitcoin/bitcoin/pull/12270) 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.
|
[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.
|
||||||
|
|
||||||
### First time / New builders
|
### First time / New builders
|
||||||
|
|
||||||
@ -32,24 +37,32 @@ Install Guix using one of the installation methods detailed in
|
|||||||
|
|
||||||
Check out the source code in the following directory hierarchy.
|
Check out the source code in the following directory hierarchy.
|
||||||
|
|
||||||
cd /path/to/your/toplevel/build
|
```sh
|
||||||
git clone https://github.com/dashpay/guix.sigs.git
|
cd /path/to/your/toplevel/build
|
||||||
git clone https://github.com/dashpay/dash-detached-sigs.git
|
git clone https://github.com/dashpay/guix.sigs.git
|
||||||
git clone https://github.com/dashpay/dash.git
|
git clone https://github.com/dashpay/dash-detached-sigs.git
|
||||||
|
git clone https://github.com/dashpay/dash.git
|
||||||
|
```
|
||||||
|
|
||||||
### Dash Core maintainers/release engineers, suggestion for writing release notes
|
### Dash Core maintainers/release engineers, suggestion for writing release notes
|
||||||
|
|
||||||
Write release notes. git shortlog helps a lot, for example:
|
Write release notes. git shortlog helps a lot, for example:
|
||||||
|
|
||||||
git shortlog --no-merges v(current version, e.g. 0.12.2)..v(new version, e.g. 0.12.3)
|
```sh
|
||||||
|
git shortlog --no-merges v(current version, e.g. 19.3.0)..v(new version, e.g. 20.0.0)
|
||||||
|
```
|
||||||
|
|
||||||
Generate list of authors:
|
Generate list of authors:
|
||||||
|
|
||||||
git log --format='- %aN' v(current version, e.g. 0.16.0)..v(new version, e.g. 0.16.1) | sort -fiu
|
```sh
|
||||||
|
git log --format='- %aN' v(current version, e.g. 19.3.0)..v(new version, e.g. 20.0.0) | sort -fiu
|
||||||
|
```
|
||||||
|
|
||||||
Tag version (or release candidate) in git
|
Tag version (or release candidate) in git
|
||||||
|
|
||||||
git tag -s v(new version, e.g. 0.12.3)
|
```sh
|
||||||
|
git tag -s v(new version, e.g. 20.0.0)
|
||||||
|
```
|
||||||
|
|
||||||
### Setup and perform Guix builds
|
### Setup and perform Guix builds
|
||||||
|
|
||||||
@ -57,7 +70,7 @@ Checkout the Dash Core version you'd like to build:
|
|||||||
|
|
||||||
```sh
|
```sh
|
||||||
pushd ./dash
|
pushd ./dash
|
||||||
export SIGNER='(your builder key, ie UdjinM6, Pasta, etc)'
|
export SIGNER='(your builder key, ie udjinm6, pasta, etc)'
|
||||||
export VERSION='(new version, e.g. 20.0.0)'
|
export VERSION='(new version, e.g. 20.0.0)'
|
||||||
git fetch "v${VERSION}"
|
git fetch "v${VERSION}"
|
||||||
git checkout "v${VERSION}"
|
git checkout "v${VERSION}"
|
||||||
@ -73,6 +86,8 @@ git -C ./guix.sigs pull
|
|||||||
|
|
||||||
### Create the macOS SDK tarball: (first time, or when SDK version changes)
|
### Create the macOS SDK tarball: (first time, or when SDK version changes)
|
||||||
|
|
||||||
|
_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)_
|
||||||
|
|
||||||
Create the macOS SDK tarball, see the [macOS build
|
Create the macOS SDK tarball, see the [macOS build
|
||||||
instructions](build-osx.md#deterministic-macos-dmg-notes) for
|
instructions](build-osx.md#deterministic-macos-dmg-notes) for
|
||||||
details.
|
details.
|
||||||
@ -92,7 +107,7 @@ Follow the relevant Guix README.md sections:
|
|||||||
|
|
||||||
### Next steps:
|
### Next steps:
|
||||||
|
|
||||||
Commit your signature to guix.sigs:
|
Commit your signature to `guix.sigs`:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
pushd guix.sigs
|
pushd guix.sigs
|
||||||
@ -108,31 +123,41 @@ Codesigner only: Create Windows/macOS detached signatures:
|
|||||||
|
|
||||||
Codesigner only: Sign the macOS binary:
|
Codesigner only: Sign the macOS binary:
|
||||||
|
|
||||||
transfer dashcore-osx-unsigned.tar.gz to macOS for signing
|
* Transfer `dashcore-osx-unsigned.tar.gz` to macOS for signing
|
||||||
|
* Extract and sign:
|
||||||
|
|
||||||
|
```sh
|
||||||
tar xf dashcore-osx-unsigned.tar.gz
|
tar xf dashcore-osx-unsigned.tar.gz
|
||||||
./detached-sig-create.sh -s "Key ID" -o runtime
|
./detached-sig-create.sh -s "Key ID" -o runtime
|
||||||
Enter the keychain password and authorize the signature
|
```
|
||||||
Move signature-osx.tar.gz back to the guix-build host
|
|
||||||
|
* Enter the keychain password and authorize the signature
|
||||||
|
* Move `signature-osx.tar.gz` back to the guix-build host
|
||||||
|
|
||||||
Codesigner only: Sign the windows binaries:
|
Codesigner only: Sign the windows binaries:
|
||||||
|
|
||||||
|
* Extract and sign:
|
||||||
|
|
||||||
|
```sh
|
||||||
tar xf dashcore-win-unsigned.tar.gz
|
tar xf dashcore-win-unsigned.tar.gz
|
||||||
./detached-sig-create.sh -key /path/to/codesign.key
|
./detached-sig-create.sh -key /path/to/codesign.key
|
||||||
Enter the passphrase for the key when prompted
|
```
|
||||||
signature-win.tar.gz will be created
|
|
||||||
|
* Enter the passphrase for the key when prompted
|
||||||
|
* `signature-win.tar.gz` will be created
|
||||||
|
|
||||||
Codesigner only: Commit the detached codesign payloads:
|
Codesigner only: Commit the detached codesign payloads:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
pushd ~/dashcore-detached-sigs
|
pushd ~/dashcore-detached-sigs
|
||||||
# checkout the appropriate branch for this release series
|
# checkout the appropriate branch for this release series
|
||||||
|
git checkout "v${VERSION}"
|
||||||
rm -rf *
|
rm -rf *
|
||||||
tar xf signature-osx.tar.gz
|
tar xf signature-osx.tar.gz
|
||||||
tar xf signature-win.tar.gz
|
tar xf signature-win.tar.gz
|
||||||
git add -A
|
git add -A
|
||||||
git commit -m "point to ${VERSION}"
|
git commit -m "add detached sigs for win/osx for ${VERSION}"
|
||||||
git tag -s "v${VERSION}" HEAD
|
git push
|
||||||
git push the current branch and new tag
|
|
||||||
popd
|
popd
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -156,20 +181,19 @@ popd
|
|||||||
|
|
||||||
### After 3 or more people have guix-built and their results match:
|
### After 3 or more people have guix-built and their results match:
|
||||||
|
|
||||||
Combine the `all.SHA256SUMS.asc` file from all signers into `SHA256SUMS.asc`:
|
* [ ] Combine the `all.SHA256SUMS.asc` file from all signers into `SHA256SUMS.asc`:
|
||||||
|
```sh
|
||||||
```bash
|
cat "$VERSION"/*/all.SHA256SUMS.asc > SHA256SUMS.asc
|
||||||
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.
|
||||||
- Upload to the dash.org server:
|
|
||||||
1. The contents of each `./dash/guix-build-${VERSION}/output/${HOST}/` directory, except for
|
1. The contents of each `./dash/guix-build-${VERSION}/output/${HOST}/` directory, except for
|
||||||
`*-debug*` files.
|
`*-debug*` files.
|
||||||
|
|
||||||
Guix will output all of the results into host subdirectories, but the SHA256SUMS
|
Guix will output all of the results into host subdirectories, but the `SHA256SUMS`
|
||||||
file does not include these subdirectories. In order for downloads via torrent
|
file does not include these subdirectories. In order for downloads via torrent
|
||||||
to verify without directory structure modification, all of the uploaded files
|
to verify without directory structure modification, all of the uploaded files
|
||||||
need to be in the same directory as the SHA256SUMS file.
|
need to be in the same directory as the `SHA256SUMS` file.
|
||||||
|
|
||||||
The `*-debug*` files generated by the guix build contain debug symbols
|
The `*-debug*` files generated by the guix build contain debug symbols
|
||||||
for troubleshooting by developers. It is assumed that anyone that is
|
for troubleshooting by developers. It is assumed that anyone that is
|
||||||
@ -184,28 +208,36 @@ cat "$VERSION"/*/all.SHA256SUMS.asc > SHA256SUMS.asc
|
|||||||
2. The `SHA256SUMS` file
|
2. The `SHA256SUMS` file
|
||||||
|
|
||||||
3. The `SHA256SUMS.asc` combined signature file you just created
|
3. The `SHA256SUMS.asc` combined signature file you just created
|
||||||
|
* [ ] 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:
|
### 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
|
||||||
|
|
||||||
- Release on Dash forum: https://www.dash.org/forum/topic/official-announcements.54/
|
### After the release:
|
||||||
|
* [ ] Submit patches to BTCPay to ensure they use latest / compatible version see https://github.com/dashpay/dash/issues/4211#issuecomment-966608207
|
||||||
- Optionally Discord, twitter, reddit /r/Dashpay, ... but this will usually sort out itself
|
* [ ] Update Core and User docs (docs.dash.org)
|
||||||
|
* [ ] Test Docker build runs without error in Dashmate
|
||||||
- Notify flare so that he can start building [the PPAs](https://launchpad.net/~dash.org/+archive/ubuntu/dash)
|
* [ ] 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
|
||||||
- Archive release notes for the new version to `doc/release-notes/` (branch `master` and branch of the release)
|
|
||||||
|
|
||||||
- Create a [new GitHub release](https://github.com/dashpay/dash/releases/new) with a link to the archived release notes.
|
|
||||||
|
|
||||||
- Celebrate
|
|
||||||
|
|
||||||
### MacOS Notarization
|
### MacOS Notarization
|
||||||
|
|
||||||
#### Prerequisites
|
#### Prerequisites
|
||||||
Make sure you have the latest Xcode installed on your macOS device. You can download it from the Apple Developer website.
|
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.
|
You should have a valid Apple Developer ID under the team you are using which is necessary for the notarization process.
|
||||||
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:
|
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
|
||||||
xcrun notarytool store-credentials "AC_PASSWORD" --apple-id "AC_USERNAME" --team-id <WWDRTeamID> --password <secret_2FA_password>
|
xcrun notarytool store-credentials "AC_PASSWORD" --apple-id "AC_USERNAME" --team-id <WWDRTeamID> --password <secret_2FA_password>
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -214,25 +246,27 @@ Open Terminal, and navigate to the location of the .dmg file.
|
|||||||
|
|
||||||
Then, run the following command to notarize the .dmg file:
|
Then, run the following command to notarize the .dmg file:
|
||||||
|
|
||||||
```
|
```sh
|
||||||
xcrun notarytool submit dashcore-{version}-{x86_64, arm64}-apple-darwin.dmg --keychain-profile "AC_PASSWORD" --wait
|
xcrun notarytool submit dashcore-{version}-{x86_64, arm64}-apple-darwin.dmg --keychain-profile "AC_PASSWORD" --wait
|
||||||
```
|
```
|
||||||
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.
|
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.
|
||||||
|
|
||||||
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.
|
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
|
#### Notarization Validation
|
||||||
|
|
||||||
After successfully notarizing the .dmg file, extract "Dash-Qt.app" from the .dmg.
|
After successfully notarizing the .dmg file, extract `Dash-Qt.app` from the .dmg.
|
||||||
To verify that the notarization process was successful, run the following command:
|
To verify that the notarization process was successful, run the following command:
|
||||||
|
|
||||||
```
|
```sh
|
||||||
spctl -a -vv -t install Dash-Qt.app
|
spctl -a -vv -t install Dash-Qt.app
|
||||||
```
|
```
|
||||||
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.
|
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>`.
|
||||||
|
|
||||||
### Additional information
|
### Additional information
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user