-
Notifications
You must be signed in to change notification settings - Fork 1k
ci: disallow westend migration failure #4205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Co-authored-by: Bastian Köcher <git@kchr.de>
pub type Unreleased = ( | ||
parachains_configuration::migration::v7::MigrateToV7<Runtime>, | ||
pallet_staking::migrations::v14::MigrateToV14<Runtime>, | ||
assigned_slots::migration::v1::MigrateToV1<Runtime>, | ||
parachains_scheduler::migration::MigrateV1ToV2<Runtime>, | ||
parachains_configuration::migration::v8::MigrateToV8<Runtime>, | ||
parachains_configuration::migration::v9::MigrateToV9<Runtime>, | ||
paras_registrar::migration::MigrateToV1<Runtime, ()>, | ||
pallet_referenda::migration::v1::MigrateV0ToV1<Runtime, ()>, | ||
pallet_grandpa::migrations::MigrateV4ToV5<Runtime>, | ||
parachains_configuration::migration::v10::MigrateToV10<Runtime>, | ||
pallet_nomination_pools::migration::unversioned::TotalValueLockedSync<Runtime>, | ||
// Migrate Identity pallet for Usernames | ||
pallet_identity::migration::versioned::V0ToV1<Runtime, IDENTITY_MIGRATION_KEY_LIMIT>, | ||
parachains_configuration::migration::v11::MigrateToV11<Runtime>, | ||
parachains_configuration::migration::v12::MigrateToV12<Runtime>, | ||
// permanent | ||
pallet_xcm::migration::MigrateToLatestXcmVersion<Runtime>, | ||
// Migrate from legacy lease to coretime. Needs to run after configuration v11 | ||
coretime::migration::MigrateToCoretime< | ||
Runtime, | ||
crate::xcm_config::XcmRouter, | ||
GetLegacyLeaseImpl, | ||
>, | ||
parachains_inclusion::migration::MigrateToV1<Runtime>, | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are all released
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think pallet_xcm::migration::MigrateToLatestXcmVersion<Runtime>
is supposed to stay in, but should probably be in another tuple.
No description provided.