-
Notifications
You must be signed in to change notification settings - Fork 766
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into bkchr-polkadot-workers-logging
- Loading branch information
Showing
54 changed files
with
2,057 additions
and
903 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Schema: Polkadot SDK PRDoc Schema (prdoc) v1.0.0 | ||
# See doc at https://raw.githubusercontent.com/paritytech/polkadot-sdk/master/prdoc/schema_user.json | ||
|
||
title: Validator Re-Enabling (master PR) | ||
|
||
doc: | ||
- audience: Runtime Dev | ||
description: | | ||
Implementation of the Stage 3 for the New Disabling Strategy: https://github.com/paritytech/polkadot-sdk/issues/4359 | ||
|
||
This PR changes when an active validator node gets disabled for comitting offences. | ||
When Byzantine Threshold Validators (1/3) are already disabled instead of no longer | ||
disabling the highest offenders will be disabled potentially re-enabling low offenders. | ||
|
||
- audience: Node Operator | ||
description: | | ||
Implementation of the Stage 3 for the New Disabling Strategy: https://github.com/paritytech/polkadot-sdk/issues/4359 | ||
|
||
This PR changes when an active validator node gets disabled within parachain consensus (reduced responsibilities and | ||
reduced rewards) for comitting offences. This should not affect active validators on a day-to-day basis and will only | ||
be relevant when the network is under attack or there is a wide spread malfunction causing slashes. In that case | ||
lowest offenders might get eventually re-enabled (back to normal responsibilities and normal rewards). | ||
|
||
migrations: | ||
db: [] | ||
runtime: | ||
- reference: pallet-staking | ||
description: | | ||
Migrating `DisabledValidators` from `Vec<u32>` to `Vec<(u32, PerBill)>` where the PerBill represents the severity | ||
of the offence in terms of the % slash. | ||
|
||
crates: | ||
- name: pallet-staking | ||
bump: minor | ||
|
||
- name: pallet-session | ||
bump: minor |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
title: "[pallet-revive] Update delegate_call to accept address and weight" | ||
|
||
doc: | ||
- audience: Runtime Dev | ||
description: | | ||
Enhance the `delegate_call` function to accept an `address` target parameter instead of a `code_hash`. | ||
This allows direct identification of the target contract using the provided address. | ||
Additionally, introduce parameters for specifying a customizable `ref_time` limit and `proof_size` limit, | ||
thereby improving flexibility and control during contract interactions. | ||
|
||
crates: | ||
- name: pallet-revive | ||
bump: major | ||
- name: pallet-revive-fixtures | ||
bump: patch | ||
- name: pallet-revive-uapi | ||
bump: major |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
title: Fix metrics not shutting down if there are open connections | ||
|
||
doc: | ||
- audience: Runtime Dev | ||
description: | | ||
Fix prometheus metrics not shutting down if there are open connections | ||
|
||
crates: | ||
- name: substrate-prometheus-endpoint | ||
bump: patch |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
title: "sp-trie: correctly avoid panicking when decoding bad compact proofs" | ||
|
||
doc: | ||
- audience: "Runtime Dev" | ||
description: | | ||
"Fixed the check introduced in [PR #6486](https://github.com/paritytech/polkadot-sdk/pull/6486). Now `sp-trie` correctly avoids panicking when decoding bad compact proofs." | ||
|
||
crates: | ||
- name: sp-trie | ||
bump: patch |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Schema: Polkadot SDK PRDoc Schema (prdoc) v1.0.0 | ||
# See doc at https://raw.githubusercontent.com/paritytech/polkadot-sdk/master/prdoc/schema_user.json | ||
|
||
title: Migrate pallet-democracy benchmark to v2 | ||
|
||
doc: | ||
- audience: Runtime Dev | ||
description: | | ||
"Part of issue #6202." | ||
|
||
crates: | ||
- name: pallet-democracy | ||
bump: patch |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
title: 'TransactionPool API uses async_trait' | ||
doc: | ||
- audience: Node Dev | ||
description: |- | ||
This PR refactors `TransactionPool` API to use `async_trait`, replacing the` Pin<Box<...>>` pattern. This should improve readability and maintainability. | ||
|
||
The change is not altering any functionality. | ||
crates: | ||
- name: sc-rpc-spec-v2 | ||
bump: minor | ||
- name: sc-service | ||
bump: minor | ||
- name: sc-transaction-pool-api | ||
bump: major | ||
- name: sc-transaction-pool | ||
bump: major | ||
- name: sc-rpc | ||
bump: minor |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.