-
Notifications
You must be signed in to change notification settings - Fork 766
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
Remove deprecated TryRuntime
subcommand
#4017
Conversation
|
||
crates: | ||
- name: polkadot-parachain-bin | ||
bump: patch |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Making these patch because the subcommands were already a noop.
@@ -61,11 +61,6 @@ pub enum Subcommand { | |||
#[command(subcommand)] | |||
Benchmark(frame_benchmarking_cli::BenchmarkCmd), | |||
|
|||
/// Try-runtime has migrated to a standalone CLI | |||
/// (<https://github.com/paritytech/try-runtime-cli>). The subcommand exists as a stub and | |||
/// deprecation notice. It will be removed entirely some time after January 2024. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
damn we didn't mark this as deprecated before, so it will be a breaking chaneg in all node side code of all teams... wdyt about making it deprecated now, and removing one version later? we can still fully remove it from our codebase.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The actual command has been a noop for a few releases, it only logged that it's deprecated with instructions to use the dedicated cli :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, just worried that we skipped one release in which we emit a warning, and then break everyone's code.
This pull request has been mentioned on Polkadot Forum. There might be relevant details there: https://forum.polkadot.network/t/paritytech-update-for-april/7646/1 |
Completes the removal of
try-runtime-cli
logic frompolkadot-sdk
.