Skip to content

feat(cli): add bulk cancel, --status filter, fix step JSON hydration - #1467

Merged
VaguelySerious merged 2 commits into
mainfrom
lucas/dse-2320-cli-bulk-cancel
Mar 23, 2026
Merged

feat(cli): add bulk cancel, --status filter, fix step JSON hydration#1467
VaguelySerious merged 2 commits into
mainfrom
lucas/dse-2320-cli-bulk-cancel

Conversation

@Ralph-20

@Ralph-20Ralph-20 commented Mar 20, 2026

Copy link
Copy Markdown
Contributor

Description

Three changes to the CLI:

1. Bulk cancel (workflow cancel --status=<status>)

  • Cancel multiple runs matching --status and/or --workflowName filters
  • Shows a table of matching runs before cancelling
  • Interactive y/n confirmation prompt (bypass with -y/--confirm for CI)
  • Per-run progress output with success/failure tracking
  • --limit controls max runs per batch (default 50), warns if more match

2. Status filter for inspect runs (--status)

  • New --status flag on workflow inspect runs
  • Filters by: running, completed, failed, cancelled, pending
  • Passes through to existing ListWorkflowRunsParams.status in World API

3. Fix: step I/O hydration in JSON output

  • workflow inspect steps --withData --json now shows hydrated JS values
  • Previously showed raw devalue byte arrays ({"0":100,...})
  • Matches behavior already present in inspect runs --json

Why: Needed to manually cancel 40+ stuck runs one at a time. The World API already supports status filtering — the CLI just didn't expose it.


CLI Output Examples

Bulk cancel 3 running workflows:

$ workflow cancel --status=running -y
Found 3 runs to cancel:
runId workflow status startedAt
------------------------------- ---------------- ------- ------------------------
wrun_01KM66FHPGHJYPWS7SEZZD55SX sleepingWorkflow running 2026-03-20T18:00:20.953Z
wrun_01KM66FHEPTETDK2M1TBB5QRA8 sleepingWorkflow running 2026-03-20T18:00:20.706Z
wrun_01KM66FH7HF293ANJGKZMQ8CDE sleepingWorkflow running 2026-03-20T18:00:20.486Z
✓ wrun_01KM66FHPGHJYPWS7SEZZD55SX (1/3)
✓ wrun_01KM66FHEPTETDK2M1TBB5QRA8 (2/3)
✓ wrun_01KM66FH7HF293ANJGKZMQ8CDE (3/3)
Done: 3 cancelled

hasMore warning (more runs than --limit):

$ workflow cancel --status=running --limit=1 -y
Found 1 runs to cancel:
runId workflow status startedAt
------------------------------- ---------------- ------- ------------------------
wrun_01KM66GTZJCWENQX2FR2GE4RKY sleepingWorkflow running 2026-03-20T18:01:03.236Z
[Warn] More runs match these filters. Increase --limit (currently 1) or re-run to cancel additional runs.
✓ wrun_01KM66GTZJCWENQX2FR2GE4RKY (1/1)
Done: 1 cancelled

No matching runs:

$ workflow cancel --status=running -y
[Warn] No matching runs found.

Error — no filters provided:

$ workflow cancel
[Error] Provide a run ID or use --status/--workflowName to bulk cancel.
Examples:
workflow cancel <run-id>
workflow cancel --status=running
workflow cancel --status=running --workflowName=myWorkflow

--status filter on inspect runs:

$ workflow inspect runs --status=cancelled --limit 5
Status Legend:
R = running C = completed F = failed X = cancelled P = pending
runId workflowName S startedAt
------- ---------------- - -----------------------
...55SX sleepingWorkflow X 2026-03-20 18:00:20.953
...QRA8 sleepingWorkflow X 2026-03-20 18:00:20.706
...8CDE sleepingWorkflow X 2026-03-20 18:00:20.486

Step hydration fix (--json shows actual values, not byte arrays):

{
"stepName": "step//./workflows/98_duplicate_case//add",
"status": "completed",
"input": { "args": [205, 5] },
"output": 210
}

Previously "output" would show {"0": 210} (raw devalue bytes).


How did you test your changes?

Reusable E2E test script (packages/cli/test-bulk-cancel.sh) against local world backend — 8/8 passing:

#TestResult
1Single cancel regression
2--status filter on inspect runs
3Bulk cancel --status=running (3 workflows)
4Bulk cancel --workflowName filter
5No matching runs warning
6Step JSON hydration (actual values, not byte arrays)
7hasMore warning with --limit=1
8Error when no runId or filters

Run with: cd packages/cli && pnpm build && bash test-bulk-cancel.sh (requires workbench on :3000)

Known limitations / follow-ups

  • --workflowName requires full WDK pathsleepingWorkflow won't match workflow//./workflows/99_e2e//sleepingWorkflow. The World API does exact match. Could add substring/suffix matching in a follow-up.
  • Interactive prompt not tested — only tested -y auto-confirm. The promptConfirm() function is standard readline, but no automated TTY test exists.
  • Only tested --backend local — Vercel backend uses different workflow name formats. Status filter should work identically since it passes through to the same World API.
  • Cancelling terminal-state runscancel --status=completed lists runs and attempts cancel, but each cancel fails with "Cannot transition from terminal state". Could filter these out upfront or add a pre-check.

PR Checklist - Required to merge

  • 📦 pnpm changeset was run to create a changelog for this PR
  • 🔒 DCO sign-off passes
  • 📝 Ping @vercel/workflow in a comment once the PR is ready

🤖 Generated with Claude Code

- Bulk cancel: `workflow cancel --status=running` cancels all matching runs
with confirmation prompt (bypass with -y). Supports --workflowName and --limit.
- Status filter: `workflow inspect runs --status=completed` filters by status.
- Fix: `inspect steps --withData --json` now shows hydrated values, not raw bytes.
Signed-off-by: Lucas Ralph <lucas@vercel.com>
Signed-off-by: Lucas Ralph <lucas.ralph@vercel.com>
@Ralph-20
Ralph-20 requested a review from a team as a code ownerMarch 20, 2026 17:47
@changeset-bot

changeset-botBot commented Mar 20, 2026

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: d004676

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 16 packages
NameType
@workflow/cliPatch
workflowPatch
@workflow/world-testingPatch
@workflow/aiPatch
@workflow/corePatch
@workflow/buildersPatch
@workflow/nextPatch
@workflow/nitroPatch
@workflow/vitestPatch
@workflow/web-sharedPatch
@workflow/astroPatch
@workflow/nestPatch
@workflow/rollupPatch
@workflow/sveltekitPatch
@workflow/vitePatch
@workflow/nuxtPatch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@vercel

vercelBot commented Mar 20, 2026

Copy link
Copy Markdown
Contributor

@Ralph-20

Copy link
Copy Markdown
ContributorAuthor

cc @vercel/workflow — ready for review when you get a chance

@github-actions

github-actionsBot commented Mar 20, 2026

Copy link
Copy Markdown
Contributor

📊 Benchmark Results

📈 Comparing against baseline from main branch. Green 🟢 = faster, Red 🔺 = slower.

workflow with no steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
💻 Local🥇 Express0.043s (-4.7%)1.005s (~)0.962s101.00x
💻 LocalNext.js (Turbopack)0.050s1.006s0.955s101.17x
🌐 RedisNext.js (Turbopack)0.054s1.005s0.951s101.26x
🐘 PostgresExpress0.058s (-18.6% 🟢)1.011s (-0.6%)0.953s101.36x
🐘 PostgresNext.js (Turbopack)0.059s1.012s0.953s101.39x
🐘 PostgresNitro0.060s (-13.1% 🟢)1.013s (~)0.953s101.41x
🌐 MongoDBNext.js (Turbopack)0.110s1.008s0.898s102.57x
💻 LocalNitro⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express0.482s (-16.3% 🟢)2.540s (-0.6%)2.058s101.00x
▲ VercelNitro0.502s (+1.2%)2.767s (+8.7% 🔺)2.264s101.04x
▲ VercelNext.js (Turbopack)⚠️missing----

🔍 Observability: Express | Nitro

workflow with 1 step

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)1.122s2.007s0.884s101.00x
💻 LocalNext.js (Turbopack)1.130s2.005s0.876s101.01x
💻 LocalExpress1.132s (~)2.005s (~)0.873s101.01x
🐘 PostgresExpress1.149s (+0.8%)2.012s (~)0.863s101.02x
🐘 PostgresNext.js (Turbopack)1.149s2.013s0.864s101.02x
🐘 PostgresNitro1.150s (+0.7%)2.013s (~)0.863s101.02x
🌐 MongoDBNext.js (Turbopack)1.321s2.008s0.687s101.18x
💻 LocalNitro⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro2.165s (-7.4% 🟢)4.086s (+5.4% 🔺)1.921s101.00x
▲ VercelExpress2.196s (-0.5%)3.771s (-3.1%)1.575s101.01x
▲ VercelNext.js (Turbopack)⚠️missing----

🔍 Observability: Nitro | Express

workflow with 10 sequential steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)10.788s11.023s0.235s31.00x
💻 LocalNext.js (Turbopack)10.837s11.024s0.187s31.00x
🐘 PostgresExpress10.931s (~)11.039s (~)0.107s31.01x
💻 LocalExpress10.932s (~)11.023s (~)0.091s31.01x
🐘 PostgresNitro10.959s (~)11.050s (~)0.090s31.02x
🐘 PostgresNext.js (Turbopack)10.970s11.374s0.405s31.02x
🌐 MongoDBNext.js (Turbopack)12.270s13.019s0.749s31.14x
💻 LocalNitro⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro17.165s (-1.3%)19.245s (+2.0%)2.080s21.00x
▲ VercelExpress18.999s (+9.3% 🔺)21.087s (+8.9% 🔺)2.088s21.11x
▲ VercelNext.js (Turbopack)⚠️missing----

🔍 Observability: Nitro | Express

workflow with 25 sequential steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)14.289s15.028s0.740s41.00x
💻 LocalNext.js (Turbopack)14.643s15.029s0.386s41.02x
🐘 PostgresNext.js (Turbopack)14.648s15.043s0.396s41.03x
🐘 PostgresExpress14.691s (+0.8%)15.042s (~)0.351s41.03x
🐘 PostgresNitro14.768s (~)15.045s (~)0.277s41.03x
💻 LocalExpress14.981s (~)15.029s (-3.2%)0.048s41.05x
🌐 MongoDBNext.js (Turbopack)17.899s18.028s0.130s41.25x
💻 LocalNitro⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro33.578s (+3.9%)36.046s (+3.7%)2.468s21.00x
▲ VercelExpress33.851s (~)35.807s (+0.6%)1.956s21.01x
▲ VercelNext.js (Turbopack)⚠️missing----

🔍 Observability: Nitro | Express

workflow with 50 sequential steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)13.539s14.025s0.487s71.00x
🐘 PostgresNext.js (Turbopack)14.018s14.469s0.451s71.04x
🐘 PostgresExpress14.210s (+1.4%)15.039s (+3.9%)0.829s61.05x
🐘 PostgresNitro14.345s (~)15.043s (~)0.697s61.06x
💻 LocalNext.js (Turbopack)16.023s16.530s0.507s61.18x
💻 LocalExpress16.631s (~)17.030s (~)0.398s61.23x
🌐 MongoDBNext.js (Turbopack)20.456s21.029s0.572s51.51x
💻 LocalNitro⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro63.664s (+13.2% 🔺)65.122s (+13.7% 🔺)1.457s21.00x
▲ VercelExpress63.950s (+10.8% 🔺)65.855s (+10.8% 🔺)1.904s21.00x
▲ VercelNext.js (Turbopack)⚠️missing----

🔍 Observability: Nitro | Express

Promise.all with 10 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Next.js (Turbopack)1.249s2.011s0.762s151.00x
🐘 PostgresNitro1.277s (-1.3%)2.011s (~)0.734s151.02x
🐘 PostgresExpress1.278s (+1.0%)2.011s (~)0.733s151.02x
🌐 RedisNext.js (Turbopack)1.279s2.006s0.727s151.02x
💻 LocalExpress1.512s (~)2.005s (~)0.494s151.21x
💻 LocalNext.js (Turbopack)1.598s2.073s0.475s151.28x
🌐 MongoDBNext.js (Turbopack)2.182s3.009s0.827s101.75x
💻 LocalNitro⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro2.552s (-2.5%)4.267s (+1.6%)1.715s81.00x
▲ VercelExpress2.834s (+2.7%)4.482s (-2.9%)1.649s71.11x
▲ VercelNext.js (Turbopack)⚠️missing----

🔍 Observability: Nitro | Express

Promise.all with 25 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Express2.446s (-0.6%)3.012s (~)0.566s101.00x
🐘 PostgresNitro2.455s (-0.6%)3.012s (~)0.557s101.00x
🐘 PostgresNext.js (Turbopack)2.470s3.012s0.542s101.01x
🌐 RedisNext.js (Turbopack)2.618s3.008s0.391s101.07x
💻 LocalExpress3.034s (+1.2%)3.885s (+9.0% 🔺)0.851s81.24x
💻 LocalNext.js (Turbopack)3.043s3.760s0.717s81.24x
🌐 MongoDBNext.js (Turbopack)4.697s5.179s0.481s61.92x
💻 LocalNitro⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro2.749s (+8.3% 🔺)4.280s (+12.4% 🔺)1.531s81.00x
▲ VercelExpress2.819s (-1.3%)4.418s (-1.0%)1.600s71.03x
▲ VercelNext.js (Turbopack)⚠️missing----

🔍 Observability: Nitro | Express

Promise.all with 50 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Express3.613s (+0.7%)4.014s (~)0.401s81.00x
🐘 PostgresNitro3.630s (~)4.016s (~)0.386s81.00x
🐘 PostgresNext.js (Turbopack)3.759s4.014s0.254s81.04x
🌐 RedisNext.js (Turbopack)4.177s4.867s0.690s71.16x
💻 LocalNext.js (Turbopack)7.597s8.269s0.672s42.10x
💻 LocalExpress8.377s (-1.2%)9.024s (~)0.647s42.32x
🌐 MongoDBNext.js (Turbopack)10.003s10.684s0.681s32.77x
💻 LocalNitro⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express3.669s (+11.7% 🔺)5.264s (+12.8% 🔺)1.595s71.00x
▲ VercelNitro3.864s (+27.0% 🔺)5.420s (+21.2% 🔺)1.555s61.05x
▲ VercelNext.js (Turbopack)⚠️missing----

🔍 Observability: Express | Nitro

Promise.race with 10 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Next.js (Turbopack)1.259s2.012s0.753s151.00x
🐘 PostgresNitro1.266s (-0.8%)2.011s (~)0.745s151.01x
🐘 PostgresExpress1.279s (+1.6%)2.011s (~)0.731s151.02x
🌐 RedisNext.js (Turbopack)1.292s2.006s0.714s151.03x
💻 LocalExpress1.526s (-0.7%)2.006s (~)0.480s151.21x
💻 LocalNext.js (Turbopack)1.545s2.006s0.461s151.23x
🌐 MongoDBNext.js (Turbopack)2.168s3.008s0.840s101.72x
💻 LocalNitro⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro2.456s (+15.6% 🔺)4.168s (+12.9% 🔺)1.712s81.00x
▲ VercelExpress2.510s (+13.6% 🔺)4.028s (+4.1%)1.518s81.02x
▲ VercelNext.js (Turbopack)⚠️missing----

🔍 Observability: Nitro | Express

Promise.race with 25 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Express2.443s (~)3.012s (~)0.569s101.00x
🐘 PostgresNitro2.462s (~)3.012s (~)0.551s101.01x
🐘 PostgresNext.js (Turbopack)2.485s3.012s0.526s101.02x
🌐 RedisNext.js (Turbopack)2.557s3.008s0.451s101.05x
💻 LocalNext.js (Turbopack)3.032s3.885s0.853s81.24x
💻 LocalExpress3.064s (+1.0%)3.760s (~)0.696s81.25x
🌐 MongoDBNext.js (Turbopack)4.748s5.179s0.431s61.94x
💻 LocalNitro⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express2.693s (+0.6%)4.048s (-12.2% 🟢)1.355s81.00x
▲ VercelNitro2.731s (+5.5% 🔺)4.275s (+10.7% 🔺)1.544s81.01x
▲ VercelNext.js (Turbopack)⚠️missing----

🔍 Observability: Express | Nitro

Promise.race with 50 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Nitro3.589s (-0.8%)4.014s (~)0.425s81.00x
🐘 PostgresExpress3.631s (+0.8%)4.014s (~)0.384s81.01x
🐘 PostgresNext.js (Turbopack)3.761s4.014s0.254s81.05x
🌐 RedisNext.js (Turbopack)4.192s5.011s0.819s61.17x
💻 LocalNext.js (Turbopack)8.221s9.021s0.800s42.29x
💻 LocalExpress8.895s (-1.8%)9.273s (-5.1% 🟢)0.378s42.48x
🌐 MongoDBNext.js (Turbopack)10.055s10.682s0.627s32.80x
💻 LocalNitro⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro3.249s (+14.8% 🔺)5.071s (+14.5% 🔺)1.822s61.00x
▲ VercelExpress4.050s (+32.0% 🔺)5.549s (+22.1% 🔺)1.499s61.25x
▲ VercelNext.js (Turbopack)⚠️missing----

🔍 Observability: Nitro | Express

workflow with 10 sequential data payload steps (10KB)

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)0.695s1.004s0.310s601.00x
🐘 PostgresNext.js (Turbopack)0.830s1.009s0.179s601.20x
💻 LocalNext.js (Turbopack)0.862s1.004s0.142s601.24x
🐘 PostgresNitro0.872s (-2.8%)1.009s (-3.3%)0.137s601.25x
🐘 PostgresExpress0.895s (+3.3%)1.043s (+1.7%)0.149s581.29x
💻 LocalExpress0.989s (+0.6%)1.229s (+12.2% 🔺)0.240s491.42x
🌐 MongoDBNext.js (Turbopack)2.143s3.008s0.865s203.08x
💻 LocalNitro⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro9.579s (~)11.454s (+4.7%)1.875s61.00x
▲ VercelExpress9.995s (+0.6%)11.933s (+2.0%)1.938s61.04x
▲ VercelNext.js (Turbopack)⚠️missing----

🔍 Observability: Nitro | Express

workflow with 25 sequential data payload steps (10KB)

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)1.701s2.006s0.305s451.00x
🐘 PostgresNext.js (Turbopack)1.996s2.344s0.348s391.17x
🐘 PostgresExpress2.141s (+1.2%)3.011s (~)0.871s301.26x
🐘 PostgresNitro2.180s (+0.9%)3.012s (+1.1%)0.833s301.28x
💻 LocalNext.js (Turbopack)2.716s3.008s0.292s301.60x
💻 LocalExpress2.995s (-0.6%)3.547s (~)0.553s261.76x
🌐 MongoDBNext.js (Turbopack)5.279s6.012s0.733s153.10x
💻 LocalNitro⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro32.662s (+5.3% 🔺)34.929s (+7.5% 🔺)2.268s31.00x
▲ VercelExpress32.867s (-1.1%)34.681s (-1.3%)1.814s31.01x
▲ VercelNext.js (Turbopack)⚠️missing----

🔍 Observability: Nitro | Express

workflow with 50 sequential data payload steps (10KB)

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)3.416s4.009s0.593s301.00x
🐘 PostgresNext.js (Turbopack)4.120s5.014s0.895s241.21x
🐘 PostgresExpress4.257s (~)5.013s (+0.8%)0.757s241.25x
🐘 PostgresNitro4.530s (+4.5%)5.016s (~)0.486s241.33x
💻 LocalNext.js (Turbopack)8.671s9.017s0.346s142.54x
💻 LocalExpress9.050s (-1.1%)9.632s (-1.6%)0.582s132.65x
🌐 MongoDBNext.js (Turbopack)11.127s11.747s0.620s113.26x
💻 LocalNitro⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express88.419s (~)89.734s (~)1.315s21.00x
▲ VercelNitro89.075s (-3.5%)91.472s (-2.9%)2.397s21.01x
▲ VercelNext.js (Turbopack)⚠️missing----

🔍 Observability: Express | Nitro

workflow with 10 concurrent data payload steps (10KB)

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Next.js (Turbopack)0.272s1.009s0.737s601.00x
🐘 PostgresExpress0.299s (-0.9%)1.009s (~)0.709s601.10x
🐘 PostgresNitro0.331s (+12.4% 🔺)1.026s (+1.7%)0.695s591.22x
🌐 RedisNext.js (Turbopack)0.410s1.004s0.594s601.51x
💻 LocalNext.js (Turbopack)0.563s1.005s0.441s602.07x
💻 LocalExpress0.592s (-1.9%)1.004s (~)0.413s602.18x
🌐 MongoDBNext.js (Turbopack)1.645s2.150s0.506s286.05x
💻 LocalNitro⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro2.111s (-8.9% 🟢)3.616s (-6.5% 🟢)1.504s171.00x
▲ VercelExpress2.607s (+3.8%)4.581s (+13.7% 🔺)1.975s141.23x
▲ VercelNext.js (Turbopack)⚠️missing----

🔍 Observability: Nitro | Express

workflow with 25 concurrent data payload steps (10KB)

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Express0.531s (+0.7%)1.009s (~)0.478s901.00x
🐘 PostgresNitro0.536s (-0.5%)1.009s (~)0.473s901.01x
🐘 PostgresNext.js (Turbopack)0.543s1.021s0.478s891.02x
🌐 RedisNext.js (Turbopack)1.192s2.006s0.814s452.25x
💻 LocalExpress2.557s (-0.9%)3.008s (~)0.452s304.81x
💻 LocalNext.js (Turbopack)2.587s3.009s0.422s304.87x
🌐 MongoDBNext.js (Turbopack)4.642s5.177s0.534s188.74x
💻 LocalNitro⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express2.997s (-2.7%)4.725s (+5.0% 🔺)1.728s201.00x
▲ VercelNitro3.117s (+7.6% 🔺)4.674s (+10.8% 🔺)1.557s201.04x
▲ VercelNext.js (Turbopack)⚠️missing----

🔍 Observability: Express | Nitro

workflow with 50 concurrent data payload steps (10KB)

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Next.js (Turbopack)0.901s1.125s0.224s1071.00x
🐘 PostgresExpress0.920s (+2.5%)1.060s (+1.8%)0.140s1141.02x
🐘 PostgresNitro0.942s (~)1.279s (+7.3% 🔺)0.337s941.05x
🌐 RedisNext.js (Turbopack)2.819s3.058s0.239s403.13x
🌐 MongoDBNext.js (Turbopack)9.937s10.515s0.578s1211.03x
💻 LocalNext.js (Turbopack)10.785s11.481s0.697s1111.97x
💻 LocalExpress11.303s (~)11.936s (-0.8%)0.633s1112.55x
💻 LocalNitro⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro8.228s (-1.6%)10.019s (+2.8%)1.791s121.00x
▲ VercelExpress8.945s (+23.0% 🔺)10.819s (+20.9% 🔺)1.874s121.09x
▲ VercelNext.js (Turbopack)⚠️missing----

🔍 Observability: Nitro | Express

Stream Benchmarks(includes TTFB metrics)
workflow with stream

💻 Local Development

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)0.173s1.000s0.002s1.007s0.834s101.00x
💻 LocalNext.js (Turbopack)0.176s1.001s0.011s1.018s0.842s101.02x
💻 LocalExpress0.203s (-0.8%)1.003s (~)0.011s (-5.9% 🟢)1.017s (~)0.814s101.17x
🐘 PostgresNext.js (Turbopack)0.203s1.001s0.001s1.012s0.809s101.17x
🐘 PostgresExpress0.211s (-2.4%)0.994s (~)0.001s (+16.7% 🔺)1.012s (~)0.801s101.22x
🐘 PostgresNitro0.226s (-5.5% 🟢)0.997s (~)0.002s (+21.4% 🔺)1.014s (~)0.788s101.30x
🌐 MongoDBNext.js (Turbopack)0.511s0.946s0.002s1.010s0.499s102.95x
💻 LocalNitro⚠️missing-----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro1.698s (+2.8%)2.743s (+2.3%)0.011s (+86.7% 🔺)3.383s (+3.4%)1.686s101.00x
▲ VercelExpress1.799s (+6.6% 🔺)3.200s (+21.2% 🔺)0.006s (+14.5% 🔺)3.816s (+17.9% 🔺)2.018s101.06x
▲ VercelNext.js (Turbopack)⚠️missing-----

🔍 Observability: Nitro | Express

stream pipeline with 5 transform steps (1MB)

💻 Local Development

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)0.499s1.000s0.003s1.011s0.512s601.00x
🐘 PostgresNext.js (Turbopack)0.664s1.009s0.004s1.027s0.363s591.33x
🐘 PostgresExpress0.678s (-2.3%)1.005s (~)0.004s (+4.4%)1.026s (~)0.349s591.36x
🐘 PostgresNitro0.701s (-3.0%)1.005s (~)0.004s (+8.9% 🔺)1.026s (~)0.325s591.40x
💻 LocalNext.js (Turbopack)0.719s1.026s0.011s1.043s0.324s581.44x
💻 LocalExpress0.731s (-5.8% 🟢)1.009s (-1.7%)0.010s (+1.2%)1.024s (-1.6%)0.293s591.46x
🌐 MongoDBNext.js (Turbopack)1.320s1.953s0.003s2.012s0.692s302.64x
💻 LocalNitro⚠️missing-----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro4.441s (+2.6%)5.501s (~)0.517s (+97.7% 🔺)6.680s (+6.1% 🔺)2.240s91.00x
▲ VercelExpress4.555s (+4.4%)5.939s (+6.6% 🔺)0.244s (-8.5% 🟢)6.865s (+7.0% 🔺)2.309s91.03x
▲ VercelNext.js (Turbopack)⚠️missing-----

🔍 Observability: Nitro | Express

10 parallel streams (1MB each)

💻 Local Development

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)0.912s1.016s0.000s1.021s0.109s591.00x
🐘 PostgresNext.js (Turbopack)1.085s1.795s0.000s1.806s0.721s341.19x
🐘 PostgresExpress1.091s (+22.1% 🔺)1.788s (+65.1% 🔺)0.000s (-100.0% 🟢)1.806s (+63.5% 🔺)0.715s341.20x
🐘 PostgresNitro1.092s (+18.6% 🔺)1.869s (+75.9% 🔺)0.000s (-100.0% 🟢)1.886s (+74.5% 🔺)0.794s321.20x
💻 LocalExpress1.247s (-0.9%)2.021s (~)0.000s (-52.9% 🟢)2.024s (~)0.777s301.37x
💻 LocalNext.js (Turbopack)1.314s2.020s0.000s2.025s0.711s301.44x
🌐 MongoDBNext.js (Turbopack)2.345s2.950s0.000s3.008s0.662s202.57x
💻 LocalNitro⚠️missing-----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro2.689s (+5.9% 🔺)3.624s (+12.8% 🔺)0.000s (+14.3% 🔺)4.393s (+16.9% 🔺)1.704s141.00x
▲ VercelExpress2.755s (+15.2% 🔺)3.938s (+19.8% 🔺)0.000s (NaN%)4.569s (+15.8% 🔺)1.814s141.02x
▲ VercelNext.js (Turbopack)⚠️missing-----

🔍 Observability: Nitro | Express

fan-out fan-in 10 streams (1MB each)

💻 Local Development

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)1.621s2.035s0.000s2.040s0.419s301.00x
🐘 PostgresNitro2.037s (+7.7% 🔺)2.496s (+12.5% 🔺)0.000s (+125.0% 🔺)2.513s (+12.2% 🔺)0.476s241.26x
🐘 PostgresExpress2.045s (+13.3% 🔺)2.380s (+13.4% 🔺)0.000s (+Infinity% 🔺)2.435s (+14.8% 🔺)0.390s261.26x
🐘 PostgresNext.js (Turbopack)2.224s3.005s0.000s3.014s0.790s201.37x
💻 LocalExpress3.577s (+3.9%)4.030s (-1.6%)0.001s (~)4.034s (-1.6%)0.457s152.21x
💻 LocalNext.js (Turbopack)3.662s4.164s0.001s4.170s0.508s152.26x
🌐 MongoDBNext.js (Turbopack)4.411s4.948s0.000s5.010s0.599s122.72x
💻 LocalNitro⚠️missing-----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express3.882s (+18.1% 🔺)5.110s (+11.8% 🔺)0.000s (-27.3% 🟢)5.703s (+10.9% 🔺)1.821s111.00x
▲ VercelNitro4.263s (+26.3% 🔺)5.594s (+23.3% 🔺)0.000s (+20.0% 🔺)6.273s (+23.4% 🔺)2.010s101.10x
▲ VercelNext.js (Turbopack)⚠️missing-----

🔍 Observability: Express | Nitro

Summary

Fastest Framework by World

Winner determined by most benchmark wins

World🥇 Fastest FrameworkWins
💻 LocalNext.js (Turbopack)14/21
🐘 PostgresNext.js (Turbopack)12/21
▲ VercelNitro15/21
Fastest World by Framework

Winner determined by most benchmark wins

Framework🥇 Fastest WorldWins
Express🐘 Postgres18/21
Next.js (Turbopack)🌐 Redis11/21
Nitro🐘 Postgres20/21
Column Definitions
  • Workflow Time: Runtime reported by workflow (completedAt - createdAt) - primary metric
  • TTFB: Time to First Byte - time from workflow start until first stream byte received (stream benchmarks only)
  • Slurp: Time from first byte to complete stream consumption (stream benchmarks only)
  • Wall Time: Total testbench time (trigger workflow + poll for result)
  • Overhead: Testbench overhead (Wall Time - Workflow Time)
  • Samples: Number of benchmark iterations run
  • vs Fastest: How much slower compared to the fastest configuration for this benchmark

Worlds:

  • 💻 Local: In-memory filesystem world (local development)
  • 🐘 Postgres: PostgreSQL database world (local development)
  • ▲ Vercel: Vercel production/preview deployment
  • 🌐 Turso: Community world (local development)
  • 🌐 MongoDB: Community world (local development)
  • 🌐 Redis: Community world (local development)
  • 🌐 Jazz: Community world (local development)

📋 View full workflow run


Some benchmark jobs failed:

  • Local: cancelled
  • Postgres: success
  • Vercel: failure

Check the workflow run for details.

@github-actions

github-actionsBot commented Mar 20, 2026

Copy link
Copy Markdown
Contributor

🧪 E2E Test Results

Some tests failed

Summary

PassedFailedSkippedTotal
❌ ▲ Vercel Production757167825
✅ 💻 Local Development7820118900
✅ 📦 Local Production7820118900
✅ 🐘 Local Postgres7820118900
✅ 🪟 Windows720375
❌ 🌍 Community Worlds1185621195
✅ 📋 Other198027225
Total3491574724020

❌ Failed Tests

▲ Vercel Production (1 failed)

nuxt (1 failed):

🌍 Community Worlds (56 failed)

mongodb (3 failed):

  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KME09T8HP68RWK9KQ0P0TNNR
  • webhookWorkflow | wrun_01KME0A2FCH2Y1QJ3AWTNVGVMR
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KME0FC30RM8NDSPP0K0EY4PR

redis (2 failed):

  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KME09T8HP68RWK9KQ0P0TNNR
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KME0FC30RM8NDSPP0K0EY4PR

turso (51 failed):

  • addTenWorkflow | wrun_01KME08HGBGN86MG5JE642PTYH
  • addTenWorkflow | wrun_01KME08HGBGN86MG5JE642PTYH
  • wellKnownAgentWorkflow (.well-known/agent) | wrun_01KME09KZ238TZKCMQTE533QZY
  • should work with react rendering in step
  • promiseAllWorkflow | wrun_01KME08RWZGQSWRCG41PD9412T
  • promiseRaceWorkflow | wrun_01KME08YQHM4J80WZ16F675Y95
  • promiseAnyWorkflow | wrun_01KME092ZP7WV0QAYVBKZ6YBWJ
  • importedStepOnlyWorkflow | wrun_01KME0A13SRE3JRWPNV8AWHMDS
  • hookWorkflow | wrun_01KME09EQXPEDP5JRYYWKWT0CP
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KME09T8HP68RWK9KQ0P0TNNR
  • webhookWorkflow | wrun_01KME0A2FCH2Y1QJ3AWTNVGVMR
  • sleepingWorkflow | wrun_01KME0AAMKDVE2GDADBFS97D45
  • parallelSleepWorkflow | wrun_01KME0APMW4D9QRD7JMA2K1ZFT
  • nullByteWorkflow | wrun_01KME0ATQT464W2637ZMVS8PRZ
  • workflowAndStepMetadataWorkflow | wrun_01KME0AX15DC8N72CVAHNDS0AP
  • fetchWorkflow | wrun_01KME0BWNTPYSVX1FSYEN52PPP
  • promiseRaceStressTestWorkflow | wrun_01KME0BZT6ZHBAPV5FM0TWJS9Q
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KME0ES44EYRM0ZP0YZCMW31H
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KME0FC30RM8NDSPP0K0EY4PR
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KME0G0BSDF8H95899ZNQCB4Z
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KME0GJ95Q2735DMKYXCNTEJP
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KME0GSK2TMPAVM25E69FFVRW
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KME0GYCAZN25BCZH260VSR4W
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KME0H07RA3WERN3Z420EAA5V
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KME0HED6W3JGZ9YB4DMYM17J
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KME0HJZPHTKFWNPXS8303GR4
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KME0HSMJ7CNQKK2K2CP175D4
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KME0HZX693G05TQQBBS0H2GS
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KME0J5JVQDVE26H445S5M6B0
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KME0JCGJWEQ2RPJC3E0T0KE6
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KME0JKB7M392H3YN7KF9YH36
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KME0JZAS1P785M7YCWPYH7QN
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KME0K8HB7CA4F4BC3S28ZZ83
  • cancelRun - cancelling a running workflow | wrun_01KME0KE880EQ818S8V27FGNQF
  • cancelRun via CLI - cancelling a running workflow | wrun_01KME0KPSQVH4HF5VHRNYPW016
  • pages router addTenWorkflow via pages router
  • pages router promiseAllWorkflow via pages router
  • pages router sleepingWorkflow via pages router
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KME0M2CXN6E4FD50HWQHNXNC
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KME0MNXQ6ETYQ9R48N5QMQ65
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KME0N0X2BWCHMKRJFBVZTE56

Details by Category

❌ ▲ Vercel Production
AppPassedFailedSkipped
✅ astro6807
✅ example6807
✅ express6807
✅ fastify6807
✅ hono6807
✅ nextjs-turbopack7302
✅ nextjs-webpack7302
✅ nitro6807
❌ nuxt6717
✅ sveltekit6807
✅ vite6807
✅ 💻 Local Development
AppPassedFailedSkipped
✅ astro-stable6609
✅ express-stable6609
✅ fastify-stable6609
✅ hono-stable6609
✅ nextjs-turbopack-canary55020
✅ nextjs-turbopack-stable7203
✅ nextjs-webpack-canary55020
✅ nextjs-webpack-stable7203
✅ nitro-stable6609
✅ nuxt-stable6609
✅ sveltekit-stable6609
✅ vite-stable6609
✅ 📦 Local Production
AppPassedFailedSkipped
✅ astro-stable6609
✅ express-stable6609
✅ fastify-stable6609
✅ hono-stable6609
✅ nextjs-turbopack-canary55020
✅ nextjs-turbopack-stable7203
✅ nextjs-webpack-canary55020
✅ nextjs-webpack-stable7203
✅ nitro-stable6609
✅ nuxt-stable6609
✅ sveltekit-stable6609
✅ vite-stable6609
✅ 🐘 Local Postgres
AppPassedFailedSkipped
✅ astro-stable6609
✅ express-stable6609
✅ fastify-stable6609
✅ hono-stable6609
✅ nextjs-turbopack-canary55020
✅ nextjs-turbopack-stable7203
✅ nextjs-webpack-canary55020
✅ nextjs-webpack-stable7203
✅ nitro-stable6609
✅ nuxt-stable6609
✅ sveltekit-stable6609
✅ vite-stable6609
✅ 🪟 Windows
AppPassedFailedSkipped
✅ nextjs-turbopack7203
❌ 🌍 Community Worlds
AppPassedFailedSkipped
✅ mongodb-dev302
❌ mongodb5235
✅ redis-dev302
❌ redis5325
✅ turso-dev302
❌ turso4515
✅ 📋 Other
AppPassedFailedSkipped
✅ e2e-local-dev-nest-stable6609
✅ e2e-local-postgres-nest-stable6609
✅ e2e-local-prod-nest-stable6609

📋 View full workflow run


Some E2E test jobs failed:

  • Vercel Prod: failure
  • Local Dev: success
  • Local Prod: success
  • Local Postgres: success
  • Windows: success

Check the workflow run for details.

@VaguelySeriousVaguelySerious left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sweet, thanks!

Comment threadpackages/cli/src/commands/cancel.ts Outdated

@karthikscale3karthikscale3 left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One minor nit, otherwise looks good to me:

Non-TTY prompt behaviorpromptConfirm() returns true when !process.stdin.isTTY, meaning non-interactive environments will auto-confirm. This is arguably a dangerous default — a CI script calling workflow cancel --status=running without -y would silently cancel all matching runs. Should we flip this?

…ts (CI, pipes, cron) without requiring the `-y` flag, risking accidental mass cancellation of workflow runs.
This commit fixes the issue reported at packages/cli/src/commands/cancel.ts:175
## Bug Analysis
The `promptConfirm` function in `packages/cli/src/commands/cancel.ts` (line 172-189) is designed to ask the user for interactive confirmation before bulk-cancelling workflow runs. However, when `process.stdin.isTTY` is `false` (as in CI pipelines, cron jobs, piped commands, etc.), the function returns `true` — meaning it auto-confirms the destructive bulk cancel operation without any user interaction.
The control flow is:
1. If `--confirm`/`-y` flag is passed → skip prompt entirely, proceed with cancel (line 138)
2. If `-y` is NOT passed → call `promptConfirm()` (line 140)
3. Inside `promptConfirm()`: if stdin is not a TTY → return `true` (auto-confirm) ← **BUG**
This means running `workflow cancel --status=running` in a CI script (where stdin is not a TTY) would silently cancel ALL matching runs without any confirmation, even though the user did NOT pass the `-y` flag. The `-y`/`--confirm` flag exists precisely to explicitly opt into non-interactive confirmation, but the non-TTY code path bypasses this safety mechanism entirely.
**Impact**: A user running a bulk cancel command in a CI pipeline or piped script without `-y` would expect the command to either prompt (and fail/abort since there's no TTY) or refuse to proceed. Instead, it silently proceeds with the destructive operation.
## Fix
Changed the return value in the non-TTY branch of `promptConfirm` from `true` to `false`. Now when stdin is not a TTY and `-y` was not passed:
* `promptConfirm` returns `false`
* The caller logs "Aborted." and returns without cancelling anything
* Users must explicitly pass `-y`/`--confirm` to perform bulk cancels in non-interactive environments
This is the standard safe pattern: default-deny for destructive operations when interactive confirmation cannot be obtained. The prompt's default is already `[y/N]` (default No), so aborting in non-TTY is consistent with that default.
Co-authored-by: Vercel <vercel[bot]@users.noreply.github.com>
Co-authored-by: VaguelySerious <mittgfu@gmail.com>
@VaguelySerious

Copy link
Copy Markdown
Member

Since there was no update in this PR for 3 days, I am applying the Vade suggestion and merging this

@VaguelySerious
VaguelySerious merged commit 0d72b2d into mainMar 23, 2026
98 of 102 checks passed
@VaguelySerious
VaguelySerious deleted the lucas/dse-2320-cli-bulk-cancel branch March 23, 2026 18:56
@ghostghost mentioned this pull request Mar 23, 2026
pranaygp added a commit that referenced this pull request Mar 23, 2026
* origin/main:
[ai] Add experimental_context to DurableAgentOptions (#1489)
[ai] Expose configured tools on DurableAgent instances (#1488)
fix(builders): catch node builtin usage when entry fields diverge (#1455)
[web-shared] Fix timeline duration format and precision (#1482)
[cli] Add bulk cancel, --status filter, fix step JSON hydration (#1467)
[utils] Re-export parseName utilities and add workflow/observability module (#1453)
[o11y] Polish display when run data has expired (#1438)
Add CommonJS `require()` support for class serialization detection in SWC plugin (#1144)
fix(next): stabilize deferred canary e2e in nextjs workbenches (#1468)
[web] Support legacy newline-delimited stream format in `useStreamReader` (#1473)
Revert "Add support for calling start() inside workflow functions (#1133)" (#1475)
pranaygp added a commit that referenced this pull request Mar 24, 2026
…naygp-db9e68c1
* 'main' of https://github.com/vercel/workflow: (32 commits)
chore: bump @nestjs/* to ^11.1.17 (#1497)
chore: bump hono to ^4.12.8 (#1495)
Revert "Inline class serialization registration to fix 3rd-party package supp…" (#1493)
[world] Add stream pagination and metadata endpoints (#1470)
[cli] [world-local] Ensure update checks don't suggest upgrading from stable release to pre-releases (#1490)
Remove NestJS Vercel integration while in experimental phase (#1485)
feat: export semantic error types and add API reference docs (#1447)
feat: enforce max queue deliveries in handlers with graceful failure (#1344)
[world-postgres] Migrate client from `postgres.js` to `pg` (#1484)
Inline class serialization registration to fix 3rd-party package support (#1480)
[ai] Add experimental_context to DurableAgentOptions (#1489)
[ai] Expose configured tools on DurableAgent instances (#1488)
fix(builders): catch node builtin usage when entry fields diverge (#1455)
[web-shared] Fix timeline duration format and precision (#1482)
[cli] Add bulk cancel, --status filter, fix step JSON hydration (#1467)
[utils] Re-export parseName utilities and add workflow/observability module (#1453)
[o11y] Polish display when run data has expired (#1438)
Add CommonJS `require()` support for class serialization detection in SWC plugin (#1144)
fix(next): stabilize deferred canary e2e in nextjs workbenches (#1468)
[web] Support legacy newline-delimited stream format in `useStreamReader` (#1473)
...
pranaygp added a commit that referenced this pull request Mar 24, 2026
…naygp-6fadd605
* 'main' of https://github.com/vercel/workflow: (73 commits)
chore: bump next to 16.2.1 and fix deferred build (#1496)
chore: bump nitropack to ^2.13.1 (#1501)
chore: bump nuxt ecosystem dependencies (#1500)
chore: bump sveltekit ecosystem (#1498)
chore: bump express and fastify in workbenches (#1499)
chore: bump @nestjs/* to ^11.1.17 (#1497)
chore: bump hono to ^4.12.8 (#1495)
Revert "Inline class serialization registration to fix 3rd-party package supp…" (#1493)
[world] Add stream pagination and metadata endpoints (#1470)
[cli] [world-local] Ensure update checks don't suggest upgrading from stable release to pre-releases (#1490)
Remove NestJS Vercel integration while in experimental phase (#1485)
feat: export semantic error types and add API reference docs (#1447)
feat: enforce max queue deliveries in handlers with graceful failure (#1344)
[world-postgres] Migrate client from `postgres.js` to `pg` (#1484)
Inline class serialization registration to fix 3rd-party package support (#1480)
[ai] Add experimental_context to DurableAgentOptions (#1489)
[ai] Expose configured tools on DurableAgent instances (#1488)
fix(builders): catch node builtin usage when entry fields diverge (#1455)
[web-shared] Fix timeline duration format and precision (#1482)
[cli] Add bulk cancel, --status filter, fix step JSON hydration (#1467)
...
# Conflicts:
#	packages/core/src/runtime/start.ts
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@Ralph-20@VaguelySerious@karthikscale3