-
Notifications
You must be signed in to change notification settings - Fork 696
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 rq/expose-client
- Loading branch information
Showing
16 changed files
with
998 additions
and
411 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# 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: Improve APIs for Tries in Runtime | ||
|
||
doc: | ||
- audience: Runtime Dev | ||
description: | | ||
This PR introduces a trait `ProvingTrie` which has all the function you need to use tries in the runtime. | ||
This trait includes the ability to create, query, and prove data in a trie. Another trait `ProofToHashes` | ||
allows developers to express the computational complexity of proof verification using the proof data. | ||
crates: | ||
- name: sp-runtime | ||
bump: major | ||
- name: frame-support | ||
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,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: "Improve `import_notification_stream` documentation" | ||
|
||
doc: | ||
- audience: Node Dev | ||
description: | | ||
"Updates the doc comment on the `import_notification_stream` to make its behaviour clearer. Now it specifically states that this notification stream is fired on every import notification after the initial sync, and only when there are re-orgs in the initial sync." | ||
|
||
crates: | ||
- name: sc-client-api | ||
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,20 @@ | ||
# 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: enable wasm builder diagnostics propagation | ||
|
||
doc: | ||
- audience: Runtime Dev | ||
description: | | ||
`substrate-wasm-builder` is used as a build dependency by crates that implement FRAME runtimes. | ||
Errors that occur in these crates can not be detected by IDEs that use rust-analyzer as a language | ||
server because rust-analyzer needs the errors to be reported as diagnostic message in json format to | ||
be able to publish them to language server clients. This PR adds `WASM_BUILD_CARGO_ARGS` environment | ||
variable, which can hold a space separated list of args that will be parsed and passed to the `cargo` | ||
command that it is used for building against wasm target. It can be used for the stated initial case, | ||
but it is also flexible enough to allow passing other arguments or formatting the messages using another | ||
available type. | ||
crates: | ||
- name: substrate-wasm-builder | ||
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
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.