Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Release Checklist - Runtimes v9230 #1366

Closed
13 of 14 tasks
gilescope opened this issue Jun 14, 2022 · 4 comments
Closed
13 of 14 tasks

Release Checklist - Runtimes v9230 #1366

gilescope opened this issue Jun 14, 2022 · 4 comments

Comments

@gilescope
Copy link
Contributor

gilescope commented Jun 14, 2022

For the client collator release, see #1345

Runtime Release Checklist

Runtime Releases

These checks should be performed on the codebase.

  • Verify spec_version has been incremented since the
    last release for any native runtimes from any existing use on public
    (non-private/test) networks.
  • Verify previously completed migrations are
    removed for any public (non-private/test) networks.
    • No migrations added in the last release that would need to be removed.
  • Verify pallet and extrinsic ordering as well as SignedExtensions have stayed
    the same. Bump transaction_version if not. This step requires a client to be built.
  • Verify new extrinsics have been correctly whitelisted/blacklisted for
    proxy filters.
    • No new extrinsics.
  • Verify benchmarks have been updated for any modified
    runtime logic.
    • Verify the weights are up-to-date.
  • Verify that the various pieces of XCM config are sane.
  • Push Statemine runtime on Rococo (not a blocker step)

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)


Notes

Release notes

The release notes should list:

  • Which native runtimes and their versions are included
  • The proposal hashes of the runtimes as built with
    srtool
  • Any changes in this release that are still awaiting audit

The release notes may also list:

  • Free text at the beginning of the notes mentioning anything important
    regarding this release
  • Notable changes separated into sections.

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 the impl field of the version
to 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 in storage. In case of a breaking change, increase transaction_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:

  1. Use workflow from: to ignore, leave master as default
  2. The WebSocket url of the reference node:
    • Statemine: wss://kusama-statemine-rpc.paritytech.net
    • Westmint: wss://westmint-rpc.polkadot.io
  3. A url to a Linux binary for the node containing the runtime to test: Paste the URL of the latest release-candidate binary from the draft-release on Github. The binary has to previously be uploaded to S3 (Github url link to the binary is constantly changing)
  4. The name of the chain under test. Usually, you would pass a local chain:
    • Statemine: statemine-local
    • Westmint: westmint-local
  5. Click Run workflow

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.
  • If no indices have changed, every modules line should look something like [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 #631 is done, running the benchmarks is a manual process:

  1. Connect to the bechmarking machine
  2. Make sure no one else is using the machine with htop check
  3. Pull in the branch of Cumulus that has the version of Statemine you want to release
  4. Recompile cargo build --profile production --locked --features runtime-benchmarks
  5. From the root directory run nohup ./scripts/benchmarks.sh & (it will take quite a few hours)
  6. Checkout in your local machine to the branch of cumulus that has the version of Statemine you want to release
  7. 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
  8. Commit the changes in your local and create a PR
@gilescope
Copy link
Contributor Author

weights updated. ( #1373 )

@hbulgarini
Copy link
Contributor

hbulgarini commented Jun 15, 2022

As per metadata comparison executed in the previous (canceled) release exposed changes, the transaction_version was already bumped : #1340

Reports:

Statemine: #1288 (comment)
Statemint: #1288 (comment)
Westmint: #1288 (comment)

@NachoPal
Copy link
Contributor

NachoPal commented Jun 16, 2022

Integration tests report

Statemine

--------------------------------------------------------------
Assets Common Good Parachain
--------------------------------------------------------------
- Assets
		- Force Create (from Relay Chain) -> ✅

- Uniques
		- Force Create (from Relay Chain) -> ✅

----------------------------------------------------------------
DMP -> Relay Chain to Assets Common Good Parachain
----------------------------------------------------------------
- XcmPallet
		- Limited Teleport Asset (KSM) -> ✅
		- Limited Reserve Transfer Assets (KSM) -> ✅ (expected ❌ [UntrustedReserveLocation])
		- Send (Root - Transact) -> ✅
		- Send (No Root - Transact) -> ✅ (expected ❌ [Bad Origin])

----------------------------------------------------------------
HRMP -> Community Parachain <> Assets Common Good Parachain
----------------------------------------------------------------
- Opening Bidirectional Channels
		- InitOpenChannel | (Community → Assets) -> ✅
		- Accept & initOpenChannel | (Assets → Community) -> ✅
		- AcceptOpenChannel | Community -> ✅

- PolkadotXcm
		- LimitedReserveTransferAssets (Asset) | Assets → Community -> ✅
		- LimitedReserveTransferAssets (KSM) | Assets → Community ->  ✅

----------------------------------------------------------------
UMP -> Assets Common Good Parachain to Relay Chain
----------------------------------------------------------------
- PolkadotXcm
		- Limited Teleport Asset (KSM) -> ✅ 
		- Limited Reserve Transfer Assets (KSM) -> ✅ (expected ❌ [Barrier])
		- Send -> ✅ (expected ❌ [Bad Origin])

----------------------------------------------------------------
RELEASE SPECIFIC
----------------------------------------------------------------
- Tests Uniques after runtime upgrade ✅ 

Statemint

--------------------------------------------------------------
Assets Common Good Parachain
--------------------------------------------------------------
- Assets
		- Create -> ✅
		- Force Create (from Relay Chain) -> ✅

- Uniques
		- Create -> ✅
		- Force Create (from Relay Chain) -> ✅

----------------------------------------------------------------
DMP -> Relay Chain to Assets Common Good Parachain
----------------------------------------------------------------
- XcmPallet
		- Limited Teleport Asset (DOT) -> ✅ 
		- Limited Reserve Transfer Assets (KSM) -> ✅ (expected ❌ [UntrustedReserveLocation])
		- Send (Root-Transact) -> ✅
		- Send (No Root - Transact) -> ✅ (expected ❌ [BadOrigin])

----------------------------------------------------------------
HRMP -> Community Parachain <> Assets Common Good Parachain
----------------------------------------------------------------
- Opening Bidirectional Channels
		- InitOpenChannel | (Community → Assets) -> ✅
		- Accept & initOpenChannel | (Assets → Community) -> ✅
		- AcceptOpenChannel | Community -> ✅

- PolkadotXcm
		- LimitedReserveTransferAssets (Asset) | Assets → Community -> ✅
		- LimitedReserveTransferAssets (KSM) | Assets → Community ->  ✅

----------------------------------------------------------------
UMP -> Assets Common Good Parachain to Relay Chain
----------------------------------------------------------------
- PolkadotXcm
		- Limited Teleport Asset (DOT) -> ✅
		- Limited Reserve Transfer Assets (DOT) -> ✅ (expected ❌ [Barrier])
		- Send -> ✅ (expected ❌ [BadOrigin])

----------------------------------------------------------------
RELEASE SPECIFIC
----------------------------------------------------------------
- Tests Uniques after runtime upgrade ✅ 

@chevdor
Copy link
Contributor

chevdor commented Jun 21, 2022

Closing as the runtimes have been published: https://github.com/paritytech/cumulus/releases/tag/release-parachains-v9230

@chevdor chevdor closed this as completed Jun 21, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants