Skip to content

Commit 698d9ae

Browse files
[Backport] Version bumps from stable2412-1 + prdocs reorg (#7401)
This PR backports regular version bumps and prdoc reorganization from stable release branch back to master
1 parent 0d35be7 commit 698d9ae

21 files changed

+42
-1
lines changed

polkadot/node/primitives/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ pub use disputes::{
5959
/// relatively rare.
6060
///
6161
/// The associated worker binaries should use the same version as the node that spawns them.
62-
pub const NODE_VERSION: &'static str = "1.17.0";
62+
pub const NODE_VERSION: &'static str = "1.17.1";
6363

6464
// For a 16-ary Merkle Prefix Trie, we can expect at most 16 32-byte hashes per node
6565
// plus some overhead:
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

prdoc/stable2412-1/pr_7067.prdoc

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
title: 'Fix implication order in implementation of `TransactionExtension` for tuple'
2+
doc:
3+
- audience:
4+
- Runtime Dev
5+
- Runtime User
6+
description: |-
7+
Before this PR, the implications were different in the pipeline `(A, B, C)` and `((A, B), C)`.
8+
This PR fixes this behavior and make nested tuple transparant, the implication order of tuple of
9+
tuple is now the same as in a single tuple.
10+
11+
For runtime users this mean that the implication can be breaking depending on the pipeline used
12+
in the runtime.
13+
14+
For runtime developers this breaks usage of `TransactionExtension::validate`.
15+
When calling `TransactionExtension::validate` the implication must now implement `Implication`
16+
trait, you can use `TxBaseImplication` to wrap the type and use it as the base implication.
17+
E.g. instead of `&(extension_version, call),` you can write `&TxBaseImplication((extension_version, call))`.
18+
19+
crates:
20+
- name: sp-runtime
21+
bump: major
22+
- name: pallet-skip-feeless-payment
23+
bump: major
24+
- name: frame-system
25+
bump: major
File renamed without changes.

prdoc/stable2412-1/pr_7090.prdoc

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Schema: Polkadot SDK PRDoc Schema (prdoc) v1.0.0
2+
# See doc at https://raw.githubusercontent.com/paritytech/polkadot-sdk/master/prdoc/schema_user.json
3+
4+
title: Snowbridge - Support bridging native ETH
5+
6+
doc:
7+
- audience: Runtime User
8+
description:
9+
Support Native ETH as an asset type instead of only supporting WETH. WETH is still supported, but adds
10+
support for ETH in the inbound and outbound routers.
11+
12+
crates:
13+
- name: snowbridge-router-primitives
14+
bump: minor
15+
- name: snowbridge-pallet-inbound-queue-fixtures
16+
bump: minor
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)