-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Improve sc-service API
#5364
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
Merged
Merged
Improve sc-service API
#5364
Changes from 14 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
e64592b
Improve service building API by requiring specific configuration opti…
nazar-pc 4aaa153
Reduce `&Configuration` usage
nazar-pc 9c1534b
Add prdoc
nazar-pc d3e8e37
Introduce `ExecutorConfiguration`
nazar-pc d8ee2ab
Merge remote-tracking branch 'upstream/master' into improve-sc-servic…
nazar-pc 9b7c79b
Fix compilation due to executor configuration refactoring
nazar-pc e3c1984
Merge remote-tracking branch 'upstream/master' into improve-sc-servic…
nazar-pc e27ceda
Fix semver
nazar-pc bb85761
Merge remote-tracking branch 'upstream/master' into improve-sc-servic…
nazar-pc 60ef8e8
Update prdoc
nazar-pc 30f6a62
Merge remote-tracking branch 'upstream/master' into improve-sc-servic…
nazar-pc a258c4e
Apply review suggestions
nazar-pc 83c6696
Merge remote-tracking branch 'upstream/master' into improve-sc-servic…
nazar-pc e10d58d
Use `eprintln!` instead of `warn!` in configuration check
nazar-pc 4554646
Merge branch 'master' into improve-sc-service-api
niklasad1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| title: Improve `sc-service` API | ||
|
|
||
| doc: | ||
| - audience: Node Dev | ||
| description: | | ||
| This improves `sc-service` API by not requiring the whole `&Configuration`, using specific configuration options | ||
| instead. `RpcConfiguration` and `ExecutorConfiguration` were also extracted from `Configuration` to group all RPC | ||
| and executor options together. | ||
| If `sc-service` is used as a library with lower-level APIs, `Configuration` can now be avoided in most cases. | ||
|
|
||
| This mainly impacts you on your node implementation. There you need to change this: | ||
| ``` | ||
| with_execution_method(config.wasm_method) | ||
| ``` | ||
|
|
||
| to this: | ||
| ``` | ||
| with_execution_method(config.executor.wasm_method) | ||
| ``` | ||
|
|
||
| There are similar changes required as well, but all are around the initialization of the wasm executor. | ||
|
|
||
| crates: | ||
| - name: sc-service | ||
| bump: major | ||
| - name: sc-network-common | ||
| bump: patch | ||
| - name: sc-cli | ||
| bump: major | ||
| - name: polkadot-service | ||
| bump: patch | ||
| - name: cumulus-relay-chain-minimal-node | ||
| bump: none | ||
| - name: polkadot-parachain-bin | ||
| bump: major | ||
| - name: polkadot-parachain-lib | ||
| bump: major | ||
| - name: staging-node-inspect | ||
| bump: major | ||
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.