-
Notifications
You must be signed in to change notification settings - Fork 689
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
title: Complete removal of `TryRuntime` subcommand | ||
|
||
doc: | ||
- audience: Node Operator | ||
description: | | ||
The deprecated `try-runtime` subcommand and `try-runtime-cli` crate has been completely removed. | ||
If you are not already, you should be using the standalone CLI at https://github.com/paritytech/try-runtime-cli. | ||
|
||
crates: | ||
- name: polkadot-parachain-bin | ||
bump: patch | ||
- name: polkadot-cli | ||
bump: patch | ||
- name: staging-node-cli | ||
bump: patch |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 commentThe 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 commentThe 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 :) |
||
TryRuntime, | ||
|
||
/// Key management cli utilities | ||
#[command(subcommand)] | ||
Key(sc_cli::KeySubcommand), | ||
|
This file was deleted.
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.