-
Notifications
You must be signed in to change notification settings - Fork 378
Statemint-v6.0.1 Release Checklist #820
Comments
Marking some things as done already and adding a note for context:
|
|
Test Report RC1Post Upgrade Checks
Integration Testing Report
Assets
Uniques
Teleports
Asset Tx Payment
|
Test Report RC4For tag Setup
polkadot-collator build-spec --chain statemint-dev --raw > polkadot-parachains/res/statemint_dev.json
./scripts/generate_genesis_value.sh statemint_dev TestsGenesis
polkadot-collator build-spec --chain statemint-genesis --raw > polkadot-parachains/res/statemint_genesis.json
./scripts/generate_genesis_value.sh statemint_genesis Post Upgrade Checks
Integration Testing ReportTeleports
General Chain
Assets
Uniques
Other RemarksIt does not make sense to test the functionality in-depth as it will be disabled/inaccessible (and has been tested in the previous RC1 test). |
released Statemint 🎉 https://github.com/paritytech/cumulus/releases/tag/statemint-v6.0.1 |
Release Checklist
Release checklist for the initial Statemint release based on the Statemine 6.0.1 release.
Runtime Releases
These checks should be performed on the codebase.
spec_version
has been incremented since thelast release for any native runtimes from any existing use on public
(non-private/test) networks.
removed for any public (non-private/test) networks.
SignedExtension
s have stayedthe same. Bump
transaction_version
if not.proxy filters.
runtime logic.
The following checks can be performed after we have forked off to the release-
candidate branch or started an additional release candidate branch (rc-2, rc-3, etc)
runtime state is correctly updated for any public (non-private/test)
networks.
All Releases
without issue.
https://github.com/paritytech/cumulus/releases with relevant release
notes.
draft-release.
Initial Statemint Release
On top of the regular runtime release process, this release will also need to cover the following points:
setStorage
call for governance to set the initial state Statemint should have after the upgrade (replacing the usual genesis process, but making use of the genesis config) @apopiaksetStorage
calls) @apopiakNotes
Burn In
Ensure that Parity DevOps has run the new release on Westmint and Statemine collators for 12h prior to publishing the release.
Build Artifacts
Add any necessary assets to the release. They should include:
Release notes
The release notes should list:
based on the max priority of any client changes.
srtool
The release notes may also list:
regarding this release
Spec Version
A runtime upgrade must bump the spec number. This may follow a pattern with the
client release (e.g. runtime v12 corresponds to v0.8.12, even if the current
runtime is not v11).
Runtime version bump between RCs
The clients need to be aware of runtime changes. However, we do not want to bump the
spec_version
for every single release candidate. Instead, we can bump theimpl
field of the versionto signal the change to the client.
Old Migrations Removed
Previous
on_runtime_upgrade
functions from old upgrades should be removed.New Migrations
Ensure that any migrations that are required due to storage or logic changes
are included in the
on_runtime_upgrade
function of the appropriate pallets.Extrinsic Ordering & Storage
Offline signing libraries depend on a consistent ordering of call indices and
functions. Compare the metadata of the current and new runtimes and ensure that
the
module index, call index
tuples map to the same set of functions. It also checks if there have been any changes instorage
. In case of a breaking change, increasetransaction_version
.To verify the order has not changed, manually start the following Github Action. It takes around a minute to run and will produce the report as artifact you need to manually check.
To run it, in the Run Workflow dropdown:
master
as defaultwss://kusama-statemine-rpc.paritytech.net
wss://westmint-rpc.polkadot.io
statemine-local
westmint-local
When the workflow is done, click on it and download the zip artifact, inside you'll find an
output.txt
file. The things to look for in the output are lines like:[Identity] idx 28 -> 25 (calls 15)
- indicates the index for Identity has changed[+] Society, Recovery
- indicates the new version includes 2 additional modules/pallets.[Identity] idx 25 (calls 15)
Note: Adding new functions to the runtime does not constitute a breaking change
as long as the indexes did not change.
Note: Extrinsic function signatures changes (adding/removing & ordering arguments) are not caught by the job, so those changes should be reviewed "manually"
Proxy Filtering
The runtime contains proxy filters that map proxy types to allowable calls. If
the new runtime contains any new calls, verify that the proxy filters are up to
date to include them.
Benchmarks
Until paritytech/polkadot#631 is done, running the benchmarks is a manual process:
htop check
cargo build --release --features runtime-benchmarks
nohup ./scripts/benchmarks.sh &
(it will take quite a few hours)scp
from the host to your local machine the weights for Statemine, Westmint and Statemint you'll find in:/polkadot-parachains/statemine/src/weights
/polkadot-parachains/westmint/src/weights
/polkadot-parachains/statemint/src/weights
The text was updated successfully, but these errors were encountered: