cli: Deprecation and Obsoletion Warnings
The following deprecations/obsoletions were discussed in Zulip or are already in master. The aim here is to unify and fix.
rad self --nid
Deprecated in favor of rad node status --only nid.
This command was deprecated before, but in a way that broke its output on standard output. It now prints to standard error.
rad diff
Deprecated in favor of git diff.
rad patch review
Obsolete. See issue/9a047d07ee00d0733adedb4a279fbd158342a586.
8 files changed
+66
-8
7b00bf2e
→
7b00bf2e
modified CHANGELOG.md
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -22,6 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle-cli/examples/rad-diff.md
@@ -1,3 +1,8 @@
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-cli/examples/rad-self.md
@@ -26,10 +26,14 @@ did:key:z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
|
|
|
|
|
|
| - | |
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-cli/src/commands/diff.rs
@@ -82,6 +82,8 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-cli/src/commands/node.rs
@@ -1,7 +1,7 @@
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -64,6 +64,11 @@ Events options
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -127,7 +132,9 @@ pub enum Operation {
|
|
|
|
|
|
| - | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -171,6 +178,7 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -207,6 +215,13 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -263,7 +278,7 @@ impl Args for Options {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -333,9 +348,16 @@ pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-cli/src/commands/patch/review.rs
@@ -83,6 +83,7 @@ pub fn run(
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -124,6 +125,7 @@ pub fn run(
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle-cli/src/commands/self.rs
@@ -100,9 +100,7 @@ pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
|
|
|
|
|
|
| - | |
| - | |
| - | |
| + | |
|
|
|
|
|
modified crates/radicle-cli/src/warning.rs
@@ -44,3 +44,21 @@ pub(crate) fn nodes_renamed(config: &Config) -> Vec<String> {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |