Skip to content

Commit 9d348b7

Browse files
committed
chore(cli): mark new commands as unstable
Mark api, link, self, and self update commands as unstable since they are newly added features.
1 parent 50445ee commit 9d348b7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

cli/src/commands/api/command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ENVIRONMENT VARIABLES
3232
3333
PHALA_CLOUD_API_KEY Override the API key (useful for CI/CD)
3434
PHALA_CLOUD_API_PREFIX Override the API base URL`,
35-
stability: "stable",
35+
stability: "unstable",
3636
arguments: [
3737
{
3838
name: "endpoint",

cli/src/commands/link/command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const jsonOption = {
1313
export const linkCommandMeta: CommandMeta = {
1414
name: "link",
1515
description: "Link a local directory to a CVM",
16-
stability: "stable",
16+
stability: "unstable",
1717
arguments: [
1818
{
1919
name: "cvm-id",

cli/src/commands/self/command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ export const selfGroup: CommandGroup = {
55
meta: {
66
name: "self",
77
description: "Self management commands",
8-
stability: "stable",
8+
stability: "unstable",
99
},
1010
};

cli/src/commands/self/update/command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export const channelOption = {
4545
export const selfUpdateCommandMeta: CommandMeta = {
4646
name: "update",
4747
description: "Update the Phala CLI",
48-
stability: "stable",
48+
stability: "unstable",
4949
options: [
5050
jsonOption,
5151
yesOption,

0 commit comments

Comments
 (0)