Skip to content

Commit dcce2ec

Browse files
authored
feat: promote Workflow commands to stable (#8807)
1 parent faebf3c commit dcce2ec

File tree

14 files changed

+30
-25
lines changed

14 files changed

+30
-25
lines changed

.changeset/nine-weeks-hug.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"wrangler": patch
3+
---
4+
5+
Promote workflows commands to stable

packages/wrangler/src/__tests__/index.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ describe("wrangler", () => {
6262
wrangler pubsub 📮 Manage Pub/Sub brokers [private beta]
6363
wrangler dispatch-namespace 🏗️ Manage dispatch namespaces
6464
wrangler ai 🤖 Manage AI models
65-
wrangler workflows 🔁 Manage Workflows [open-beta]
65+
wrangler workflows 🔁 Manage Workflows
6666
wrangler pipelines 🚰 Manage Cloudflare Pipelines [open beta]
6767
wrangler login 🔓 Login to Cloudflare
6868
wrangler logout 🚪 Logout from Cloudflare
@@ -122,7 +122,7 @@ describe("wrangler", () => {
122122
wrangler pubsub 📮 Manage Pub/Sub brokers [private beta]
123123
wrangler dispatch-namespace 🏗️ Manage dispatch namespaces
124124
wrangler ai 🤖 Manage AI models
125-
wrangler workflows 🔁 Manage Workflows [open-beta]
125+
wrangler workflows 🔁 Manage Workflows
126126
wrangler pipelines 🚰 Manage Cloudflare Pipelines [open beta]
127127
wrangler login 🔓 Login to Cloudflare
128128
wrangler logout 🚪 Logout from Cloudflare

packages/wrangler/src/__tests__/workflows.test.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,13 @@ describe("wrangler workflows", () => {
108108
`
109109
"wrangler workflows
110110
111-
🔁 Manage Workflows [open-beta]
111+
🔁 Manage Workflows
112112
113113
COMMANDS
114-
wrangler workflows list List Workflows associated to account [open-beta]
115-
wrangler workflows describe <name> Describe Workflow resource [open-beta]
116-
wrangler workflows trigger <name> [params] Trigger a workflow, creating a new instance. Can optionally take a JSON string to pass a parameter into the workflow instance [open-beta]
117-
wrangler workflows instances Manage Workflow instances [open-beta]
114+
wrangler workflows list List Workflows associated to account
115+
wrangler workflows describe <name> Describe Workflow resource
116+
wrangler workflows trigger <name> [params] Trigger a workflow, creating a new instance. Can optionally take a JSON string to pass a parameter into the workflow instance
117+
wrangler workflows instances Manage Workflow instances
118118
119119
GLOBAL FLAGS
120120
-c, --config Path to Wrangler configuration file [string]
@@ -138,14 +138,14 @@ describe("wrangler workflows", () => {
138138
`
139139
"wrangler workflows instances
140140
141-
Manage Workflow instances [open-beta]
141+
Manage Workflow instances
142142
143143
COMMANDS
144-
wrangler workflows instances list <name> Instance related commands (list, describe, terminate, pause, resume) [open-beta]
145-
wrangler workflows instances describe <name> <id> Describe a workflow instance - see its logs, retries and errors [open-beta]
146-
wrangler workflows instances terminate <name> <id> Terminate a workflow instance [open-beta]
147-
wrangler workflows instances pause <name> <id> Pause a workflow instance [open-beta]
148-
wrangler workflows instances resume <name> <id> Resume a workflow instance [open-beta]
144+
wrangler workflows instances list <name> Instance related commands (list, describe, terminate, pause, resume)
145+
wrangler workflows instances describe <name> <id> Describe a workflow instance - see its logs, retries and errors
146+
wrangler workflows instances terminate <name> <id> Terminate a workflow instance
147+
wrangler workflows instances pause <name> <id> Pause a workflow instance
148+
wrangler workflows instances resume <name> <id> Resume a workflow instance
149149
150150
GLOBAL FLAGS
151151
-c, --config Path to Wrangler configuration file [string]

packages/wrangler/src/workflows/commands/delete.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const workflowsDeleteCommand = createCommand({
88
description:
99
"Delete workflow - when deleting a workflow, it will also delete it's own instances",
1010
owner: "Product: Workflows",
11-
status: "open-beta",
11+
status: "stable",
1212
hidden: true,
1313
},
1414

packages/wrangler/src/workflows/commands/describe.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const workflowsDescribeCommand = createCommand({
1010
metadata: {
1111
description: "Describe Workflow resource",
1212
owner: "Product: Workflows",
13-
status: "open-beta",
13+
status: "stable",
1414
},
1515
args: {
1616
name: {

packages/wrangler/src/workflows/commands/instances/describe.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const workflowsInstancesDescribeCommand = createCommand({
2929
description:
3030
"Describe a workflow instance - see its logs, retries and errors",
3131
owner: "Product: Workflows",
32-
status: "open-beta",
32+
status: "stable",
3333
},
3434

3535
positionalArgs: ["name", "id"],

packages/wrangler/src/workflows/commands/instances/list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const workflowsInstancesListCommand = createCommand({
1010
description:
1111
"Instance related commands (list, describe, terminate, pause, resume)",
1212
owner: "Product: Workflows",
13-
status: "open-beta",
13+
status: "stable",
1414
},
1515

1616
positionalArgs: ["name"],

packages/wrangler/src/workflows/commands/instances/pause.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const workflowsInstancesPauseCommand = createCommand({
88
metadata: {
99
description: "Pause a workflow instance",
1010
owner: "Product: Workflows",
11-
status: "open-beta",
11+
status: "stable",
1212
},
1313

1414
positionalArgs: ["name", "id"],

packages/wrangler/src/workflows/commands/instances/resume.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const workflowsInstancesResumeCommand = createCommand({
88
metadata: {
99
description: "Resume a workflow instance",
1010
owner: "Product: Workflows",
11-
status: "open-beta",
11+
status: "stable",
1212
},
1313

1414
positionalArgs: ["name", "id"],

packages/wrangler/src/workflows/commands/instances/terminate-all.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const workflowsInstancesTerminateAllCommand = createCommand({
88
metadata: {
99
description: "Terminate all workflow instances",
1010
owner: "Product: Workflows",
11-
status: "open-beta",
11+
status: "stable",
1212
hidden: true,
1313
},
1414

0 commit comments

Comments
 (0)