Skip to content
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

[Backport] Version bumps form stable2412-2 #7744

Merged
merged 3 commits into from
Feb 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cumulus/polkadot-omni-node/lib/src/nodes/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use sc_service::{Configuration, TaskManager};
/// The current node version for cumulus official binaries, which takes the basic
/// SemVer form `<major>.<minor>.<patch>`. It should correspond to the latest
/// `polkadot` version of a stable release.
pub const NODE_VERSION: &'static str = "1.17.1";
pub const NODE_VERSION: &'static str = "1.17.2";

/// Trait that extends the `DynNodeSpec` trait with manual seal related logic.
///
Expand Down
2 changes: 1 addition & 1 deletion polkadot/node/primitives/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ pub use disputes::{
/// relatively rare.
///
/// The associated worker binaries should use the same version as the node that spawns them.
pub const NODE_VERSION: &'static str = "1.17.1";
pub const NODE_VERSION: &'static str = "1.17.2";

// For a 16-ary Merkle Prefix Trie, we can expect at most 16 32-byte hashes per node
// plus some overhead:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 8 additions & 0 deletions prdoc/stable2412-2/pr_7367.prdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
title: Align omni-node and polkadot-parachain versions
doc:
- audience: [ Runtime Dev, Node Dev, Node Operator ]
description: |-
Aligned polkadot-omni-node & polkadot-parachain versions. There is one NODE_VERSION constant, in polkadot-omni-node-lib, used by both binaries.
crates:
- name: polkadot-omni-node-lib
bump: patch
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
17 changes: 17 additions & 0 deletions prdoc/stable2412-2/pr_7605.prdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
title: Fix issue with InitiateTransfer and UnpaidExecution
doc:
- audience: Runtime Dev
description:
Fix issue where setting the `remote_fees` field of `InitiateTransfer` to `None` could lead to unintended bypassing of fees in certain conditions.
`UnpaidExecution` is now appended **after** origin alteration.
If planning to use `UnpaidExecution`, you need to set `preserve_origin = true`.

The `AllowExplicitUnpaidExecutionFrom` barrier now allows instructions for receiving funds before origin altering instructions before
the actual `UnpaidExecution`.
It takes a new generic, `Aliasers`, needed for executing `AliasOrigin` to see if the effective origin is allowed to use `UnpaidExecution`.
This should be set to the same value as `Aliasers` in the XCM configuration.
crates:
- name: staging-xcm-builder
bump: patch
- name: staging-xcm-executor
bump: patch
File renamed without changes.
Loading