Conversation
b7ce29e to
8134130
Compare
gilescope
approved these changes
Apr 1, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Bump all Polkadot SDK dependencies from
polkadot-stable2509topolkadot-stable2512-3.Release notes:
Key upstream breaking changes addressed
execute_blockandcheck_inherentsruntime APIs now take<Block as BlockT>::LazyBlockinstead ofBlock. This defers decoding of block extrinsics until they are actually needed, avoiding unnecessary deserialization overhead. Wire-format is identical, so this is only a type-signature change for downstream runtimes.spawn_tasks/build_networknow requires atracing_execute_blockparameter. This allows parachains to supply custom block execution logic fortrace_blockRPC (e.g. registeringProofSizeExt). Solochains set it toNone.Runtime migration
pallet_session_validator_management::migrations::v1::LegacyToV1Migration<Runtime>has been moved from a standaloneMigrationstype alias (passed as the lastExecutivegeneric param) intoframe_system::Config::SingleBlockMigrations. This follows paritytech/polkadot-sdk#9638 which deprecated theExecutivemigrations param — the SDK now wants all single-block migration config centralised inframe_system::Configso it's visible in one place alongside multi-block migrations (paritytech/polkadot-sdk#1781). The migration itself is unchanged; only where it is registered has moved.Changes in this PR
polkadot-sdkworkspace dependency tagsstable2509→stable2512-3execute_blockandcheck_inherentssignatures updated forLazyBlockLegacyToV1MigrationintoSingleBlockMigrationsconfig item and remove standaloneMigrationstype alias + itsExecutivetype paramtracing_execute_block: NonefieldMcEpochNumberimportstable2512Checklist
changelog.mdfor affected crate