Skip to content

feat: re-export parseName + hydrators for observability DX - #1453

Merged
VaguelySerious merged 1 commit into
mainfrom
lucas/dse-2322-re-exports
Mar 23, 2026
Merged

feat: re-export parseName + hydrators for observability DX#1453
VaguelySerious merged 1 commit into
mainfrom
lucas/dse-2322-re-exports

Conversation

@Ralph-20

Copy link
Copy Markdown
Contributor

Summary

  • Re-export parseStepName, parseWorkflowName, parseClassName from @workflow/utils main index (previously only available via hidden sub-path @workflow/utils/parse-name)
  • Add workflow/observability sub-export that bundles hydration utilities (hydrateResourceIO, observabilityRevivers, hydrateData) alongside parseName functions for one-stop observability imports

Context

From this Slack thread — heavy WDK dogfooding in #project-dse-hypercare surfaced DX gaps. We wrote a custom ~50-line devalue decoder + custom parseStepName/parseWorkflowName in our CLI (dsebr-vc#195) because these weren't discoverable from public import paths.

Pranay + Peter aligned that re-exports are the quick win (world-level auto-hydration is harder due to node vs browser env concerns + async hydration conflicting with runtime stream wrapping).

What this enables

Before (hidden internal paths)

import{parseStepName}from'@workflow/utils/parse-name';import{hydrateResourceIO,observabilityRevivers}from'@workflow/core/serialization-format';

After — option 1: from @workflow/utils main index

import{parseStepName,parseWorkflowName}from'@workflow/utils';

After — option 2: one-stop import from workflow/observability

import{parseStepName,parseWorkflowName,hydrateResourceIO,observabilityRevivers,}from'workflow/observability';

Real-world usage example (from our CLI)

import{hydrateResourceIO,observabilityRevivers,parseStepName}from'workflow/observability';// Hydrate step I/O from Uint8Array/devalue format to plain JS objectsconststep=awaitworld.steps.get(runId,stepId,{resolveData: 'all'});consthydrated=hydrateResourceIO(step,observabilityRevivers);// Parse verbose step names into short display namesconstdisplayName=parseStepName(step.name)?.shortName??step.name;// "step//./src/workflows/pulse//queryKBStep" → "queryKBStep"

Changes

FileChange
packages/utils/src/index.tsRe-export parseClassName, parseStepName, parseWorkflowName from main index
packages/utils/src/re-exports.test.ts3 tests verifying re-exports work from main index
packages/workflow/src/observability.tsNew workflow/observability sub-export with JSDoc + usage example
packages/workflow/src/observability.test.ts6 tests verifying all exports + hydration behavior
packages/workflow/package.jsonAdd ./observability export map + @workflow/utils dependency
pnpm-lock.yamlLock file update

Testing

Automated (all pass)

pnpm --filter @workflow/utils test# 89 tests (86 existing + 3 new re-export tests)
pnpm --filter workflow test# 7 tests (1 existing + 6 new observability tests)

What the tests verify

  • parseStepName, parseWorkflowName, parseClassName importable from @workflow/utils main index
  • hydrateResourceIO correctly hydrates step resources with plain value inputs
  • hydrateData passes through plain JS values (string, number, null)
  • observabilityRevivers contains expected reviver keys (ReadableStream, WritableStream, StepFunction)
  • Zero type errors on observability.ts compilation

Manual verification

  • tsc --noEmit confirms zero type errors for our new files
  • Built @workflow/utils, @workflow/core, and workflow packages — observability.js + observability.d.ts generated correctly
  • Pre-existing framework adapter build errors (astro, nest, nuxt — needs Rust for SWC plugin) are unrelated to this change

Related

🤖 Generated with Claude Code

…dule
Re-export parseStepName, parseWorkflowName, parseClassName from
@workflow/utils main index so consumers don't need the internal
sub-path @workflow/utils/parse-name.
Add workflow/observability sub-export that bundles hydration utilities
(hydrateResourceIO, observabilityRevivers, hydrateData) alongside the
parseName functions for one-stop observability imports.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@Ralph-20
Ralph-20 requested a review from a team as a code ownerMarch 19, 2026 20:16
@vercel

vercelBot commented Mar 19, 2026

Copy link
Copy Markdown
Contributor

@changeset-bot

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 300ac28

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

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

@github-actions

github-actionsBot commented Mar 19, 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🥇 Nitro0.043s (-6.6% 🟢)1.005s (~)0.963s101.00x
💻 LocalExpress0.043s (+0.9%)1.006s (~)0.962s101.02x
🌐 RedisNext.js (Turbopack)0.048s (+2.2%)1.006s (~)0.958s101.11x
💻 LocalNext.js (Turbopack)0.053s (+6.6% 🔺)1.010s (~)0.956s101.25x
🐘 PostgresNitro0.059s (-7.1% 🟢)1.011s (~)0.952s101.39x
🐘 PostgresExpress0.068s (+16.0% 🔺)1.012s (~)0.944s101.60x
🌐 MongoDBNext.js (Turbopack)0.096s (-20.8% 🟢)1.008s (~)0.912s102.26x
🐘 PostgresNext.js (Turbopack)⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express0.531s (+16.0% 🔺)2.294s (+4.4%)1.764s101.00x
▲ VercelNext.js (Turbopack)0.551s (+6.4% 🔺)2.531s (-4.8%)1.980s101.04x
▲ VercelNitro0.555s (+3.0%)2.567s (+20.2% 🔺)2.012s101.05x

🔍 Observability: Express | Next.js (Turbopack) | Nitro

workflow with 1 step

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)1.107s (~)2.006s (~)0.899s101.00x
💻 LocalNext.js (Turbopack)1.119s (~)2.006s (~)0.887s101.01x
💻 LocalExpress1.130s (~)2.006s (~)0.876s101.02x
💻 LocalNitro1.130s (~)2.006s (~)0.875s101.02x
🐘 PostgresNitro1.149s (-0.8%)2.011s (~)0.863s101.04x
🐘 PostgresExpress1.161s (+1.0%)2.012s (~)0.851s101.05x
🌐 MongoDBNext.js (Turbopack)1.314s (-0.7%)2.009s (~)0.695s101.19x
🐘 PostgresNext.js (Turbopack)⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Next.js (Turbopack)2.107s (-3.0%)3.608s (-15.1% 🟢)1.502s101.00x
▲ VercelExpress2.118s (+7.0% 🔺)3.538s (+6.9% 🔺)1.420s101.01x
▲ VercelNitro2.174s (+4.2%)3.753s (+19.6% 🔺)1.580s101.03x

🔍 Observability: Next.js (Turbopack) | Express | Nitro

workflow with 10 sequential steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)10.616s (~)11.023s (~)0.407s31.00x
💻 LocalNext.js (Turbopack)10.815s (~)11.022s (~)0.207s31.02x
💻 LocalNitro10.908s (~)11.024s (~)0.117s31.03x
🐘 PostgresExpress10.915s (~)11.045s (~)0.130s31.03x
🐘 PostgresNitro10.956s (~)11.041s (~)0.085s31.03x
💻 LocalExpress10.995s (+0.9%)11.357s (+3.0%)0.362s31.04x
🌐 MongoDBNext.js (Turbopack)12.289s (+0.7%)13.025s (~)0.736s31.16x
🐘 PostgresNext.js (Turbopack)⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro17.090s (+3.7%)18.346s (+2.1%)1.257s21.00x
▲ VercelExpress17.180s (-34.8% 🟢)18.338s (-36.5% 🟢)1.158s21.01x
▲ VercelNext.js (Turbopack)17.623s (-18.1% 🟢)19.114s (-18.0% 🟢)1.490s21.03x

🔍 Observability: Nitro | Express | Next.js (Turbopack)

workflow with 25 sequential steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)26.431s (~)27.049s (~)0.618s31.00x
💻 LocalNext.js (Turbopack)27.148s (~)28.052s (~)0.904s31.03x
🐘 PostgresNitro27.186s (-0.6%)28.058s (~)0.872s31.03x
🐘 PostgresExpress27.198s (-0.7%)28.063s (~)0.865s31.03x
💻 LocalNitro27.521s (~)28.054s (~)0.533s31.04x
💻 LocalExpress27.603s (~)28.055s (~)0.452s31.04x
🌐 MongoDBNext.js (Turbopack)30.434s (~)31.041s (~)0.607s21.15x
🐘 PostgresNext.js (Turbopack)⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro44.553s (-12.5% 🟢)46.376s (-11.2% 🟢)1.823s21.00x
▲ VercelNext.js (Turbopack)45.733s (-0.9%)48.078s (-2.7%)2.345s21.03x
▲ VercelExpress47.219s (+8.0% 🔺)48.985s (+9.0% 🔺)1.765s21.06x

🔍 Observability: Nitro | Next.js (Turbopack) | Express

workflow with 50 sequential steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)52.718s (~)53.097s (~)0.379s21.00x
🐘 PostgresExpress54.339s (~)55.099s (~)0.760s21.03x
🐘 PostgresNitro54.343s (-0.6%)55.096s (~)0.753s21.03x
💻 LocalNext.js (Turbopack)56.090s (~)56.602s (+0.9%)0.512s21.06x
💻 LocalExpress56.648s (~)57.106s (~)0.458s21.07x
💻 LocalNitro56.757s (~)57.105s (~)0.349s21.08x
🌐 MongoDBNext.js (Turbopack)60.843s (~)61.071s (~)0.228s21.15x
🐘 PostgresNext.js (Turbopack)⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express401.998s (+327.4% 🔺)403.589s (+323.1% 🔺)1.591s11.00x
▲ VercelNext.js (Turbopack)404.253s (+262.8% 🔺)405.954s (+257.9% 🔺)1.701s11.01x
▲ VercelNitro1013.868s (+845.1% 🔺)1015.907s (+838.4% 🔺)2.039s12.52x

🔍 Observability: Express | Next.js (Turbopack) | Nitro

Promise.all with 10 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)1.232s (-0.7%)2.006s (~)0.774s151.00x
🐘 PostgresExpress1.282s (+1.5%)2.011s (~)0.729s151.04x
🐘 PostgresNitro1.297s (+0.7%)2.011s (~)0.714s151.05x
💻 LocalExpress1.498s (-3.6%)2.006s (~)0.508s151.22x
💻 LocalNext.js (Turbopack)1.511s (~)2.006s (~)0.494s151.23x
💻 LocalNitro1.529s (+0.8%)2.005s (~)0.476s151.24x
🌐 MongoDBNext.js (Turbopack)2.182s (+0.7%)3.009s (~)0.827s101.77x
🐘 PostgresNext.js (Turbopack)⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express2.415s (+7.1% 🔺)3.623s (+10.9% 🔺)1.208s91.00x
▲ VercelNitro2.558s (-12.1% 🟢)4.079s (+3.4%)1.521s81.06x
▲ VercelNext.js (Turbopack)2.710s (-3.4%)4.062s (-7.1% 🟢)1.352s81.12x

🔍 Observability: Express | Nitro | Next.js (Turbopack)

Promise.all with 25 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Express2.463s (+0.6%)3.012s (~)0.549s101.00x
🐘 PostgresNitro2.470s (~)3.011s (~)0.542s101.00x
🌐 RedisNext.js (Turbopack)2.494s (+2.8%)3.008s (~)0.514s101.01x
💻 LocalExpress2.895s (-6.3% 🟢)3.308s (-14.9% 🟢)0.414s101.18x
💻 LocalNext.js (Turbopack)2.905s (+9.7% 🔺)3.343s (+7.6% 🔺)0.438s91.18x
💻 LocalNitro3.012s (+3.5%)3.453s (+11.1% 🔺)0.440s91.22x
🌐 MongoDBNext.js (Turbopack)4.809s (~)5.346s (+3.2%)0.536s61.95x
🐘 PostgresNext.js (Turbopack)⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro2.614s (-2.5%)3.890s (+5.5% 🔺)1.276s81.00x
▲ VercelNext.js (Turbopack)2.731s (-8.4% 🟢)3.942s (-18.7% 🟢)1.210s81.04x
▲ VercelExpress4.387s (+67.0% 🔺)5.710s (+56.7% 🔺)1.323s71.68x

🔍 Observability: Nitro | Next.js (Turbopack) | Express

Promise.all with 50 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Nitro3.603s (-0.5%)4.014s (~)0.411s81.00x
🐘 PostgresExpress3.621s (~)4.014s (~)0.393s81.01x
🌐 RedisNext.js (Turbopack)3.998s (+1.3%)4.438s (~)0.440s71.11x
💻 LocalExpress7.792s (-9.2% 🟢)8.268s (-8.4% 🟢)0.476s42.16x
💻 LocalNext.js (Turbopack)7.843s (+7.6% 🔺)8.519s (+6.3% 🔺)0.676s42.18x
💻 LocalNitro8.118s (-6.9% 🟢)9.023s (-2.7%)0.905s42.25x
🌐 MongoDBNext.js (Turbopack)10.071s (+2.0%)10.681s (+3.1%)0.610s32.80x
🐘 PostgresNext.js (Turbopack)⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro3.525s (+20.1% 🔺)5.018s (+19.6% 🔺)1.493s61.00x
▲ VercelNext.js (Turbopack)4.234s (+16.6% 🔺)5.723s (+12.4% 🔺)1.488s61.20x
▲ VercelExpress4.815s (+54.7% 🔺)6.227s (+39.3% 🔺)1.412s51.37x

🔍 Observability: Nitro | Next.js (Turbopack) | Express

Promise.race with 10 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)1.229s (+0.6%)2.006s (~)0.777s151.00x
🐘 PostgresNitro1.266s (-0.9%)2.010s (~)0.744s151.03x
🐘 PostgresExpress1.289s (+2.0%)2.011s (~)0.722s151.05x
💻 LocalExpress1.502s (-2.1%)2.005s (~)0.504s151.22x
💻 LocalNitro1.520s (-2.3%)2.006s (~)0.487s151.24x
💻 LocalNext.js (Turbopack)1.568s (+1.9%)2.072s (+3.3%)0.504s151.28x
🌐 MongoDBNext.js (Turbopack)2.160s (~)3.008s (~)0.848s101.76x
🐘 PostgresNext.js (Turbopack)⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express2.142s (-5.0% 🟢)3.566s (+4.8%)1.424s91.00x
▲ VercelNext.js (Turbopack)2.161s (-6.6% 🟢)3.774s (-4.5%)1.613s81.01x
▲ VercelNitro2.186s (+0.8%)3.904s (+18.7% 🔺)1.718s81.02x

🔍 Observability: Express | Next.js (Turbopack) | Nitro

Promise.race with 25 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Express2.437s (-0.8%)3.010s (~)0.573s101.00x
🌐 RedisNext.js (Turbopack)2.443s (-0.7%)3.008s (~)0.565s101.00x
🐘 PostgresNitro2.447s (-0.5%)3.011s (~)0.564s101.00x
💻 LocalNext.js (Turbopack)2.984s (+4.5%)3.564s (+11.0% 🔺)0.580s91.22x
💻 LocalNitro3.026s (+2.1%)3.760s (+8.9% 🔺)0.734s81.24x
💻 LocalExpress3.075s (~)3.760s (-3.2%)0.685s81.26x
🌐 MongoDBNext.js (Turbopack)4.689s (-1.6%)5.178s (~)0.489s61.92x
🐘 PostgresNext.js (Turbopack)⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express2.690s (-8.7% 🟢)3.783s (-6.0% 🟢)1.093s81.00x
▲ VercelNext.js (Turbopack)4.727s (+89.1% 🔺)6.142s (+60.9% 🔺)1.414s51.76x
▲ VercelNitro6.408s (+117.3% 🔺)8.091s (+102.4% 🔺)1.683s42.38x

🔍 Observability: Express | Next.js (Turbopack) | Nitro

Promise.race with 50 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Nitro3.588s (-1.2%)4.015s (~)0.427s81.00x
🐘 PostgresExpress3.593s (~)4.014s (~)0.421s81.00x
🌐 RedisNext.js (Turbopack)3.995s (~)4.582s (+3.2%)0.587s71.11x
💻 LocalExpress8.082s (-7.3% 🟢)8.770s (-2.8%)0.689s42.25x
💻 LocalNitro8.688s (-0.7%)9.021s (-2.7%)0.333s42.42x
💻 LocalNext.js (Turbopack)8.781s (+10.3% 🔺)9.518s (+11.8% 🔺)0.737s42.45x
🌐 MongoDBNext.js (Turbopack)10.072s (+2.5%)10.688s (+3.3%)0.616s32.81x
🐘 PostgresNext.js (Turbopack)⚠️missing----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express2.788s (-8.1% 🟢)3.805s (-11.8% 🟢)1.017s81.00x
▲ VercelNitro3.139s (+9.7% 🔺)4.408s (+4.3%)1.269s71.13x
▲ VercelNext.js (Turbopack)3.562s (+4.1%)5.177s (~)1.615s61.28x

🔍 Observability: Express | Nitro | Next.js (Turbopack)

Stream Benchmarks(includes TTFB metrics)
workflow with stream

💻 Local Development

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
🌐 Redis🥇 Next.js (Turbopack)0.144s (+3.3%)0.999s (~)0.002s (+14.3% 🔺)1.007s (~)0.863s101.00x
💻 LocalNext.js (Turbopack)0.175s (+3.1%)1.002s (~)0.012s (+5.3% 🔺)1.018s (~)0.843s101.21x
💻 LocalNitro0.206s (+4.1%)1.003s (~)0.011s (-1.8%)1.017s (~)0.811s101.43x
💻 LocalExpress0.214s (+5.8% 🔺)1.003s (~)0.011s (-11.0% 🟢)1.016s (~)0.802s101.49x
🐘 PostgresExpress0.221s (+1.7%)0.995s (~)0.002s (+20.0% 🔺)1.013s (~)0.792s101.53x
🐘 PostgresNitro0.227s (~)0.995s (~)0.002s (-11.8% 🟢)1.013s (~)0.785s101.58x
🌐 MongoDBNext.js (Turbopack)0.512s (~)0.939s (~)0.002s (+21.4% 🔺)1.009s (~)0.497s103.56x
🐘 PostgresNext.js (Turbopack)⚠️missing-----

▲ Production (Vercel)

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express1.635s (+0.7%)2.834s (+10.4% 🔺)0.004s (-98.8% 🟢)3.391s (-3.2%)1.755s101.00x
▲ VercelNitro1.795s (+2.5%)2.821s (+2.1%)0.005s (+8.5% 🔺)15.501s (+344.4% 🔺)13.705s101.10x
▲ VercelNext.js (Turbopack)1.875s (-2.4%)3.146s (+11.4% 🔺)0.005s (+10.0% 🔺)3.788s (+7.3% 🔺)1.913s101.15x

🔍 Observability: Express | Nitro | Next.js (Turbopack)

Summary

Fastest Framework by World

Winner determined by most benchmark wins

World🥇 Fastest FrameworkWins
💻 LocalNext.js (Turbopack)6/12
🐘 PostgresNitro6/12
▲ VercelExpress7/12
Fastest World by Framework

Winner determined by most benchmark wins

Framework🥇 Fastest WorldWins
Express🐘 Postgres8/12
Next.js (Turbopack)🌐 Redis11/12
Nitro🐘 Postgres6/12
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

@github-actions

github-actionsBot commented Mar 19, 2026

Copy link
Copy Markdown
Contributor

🧪 E2E Test Results

Some tests failed

Summary

PassedFailedSkippedTotal
✅ ▲ Vercel Production758067825
✅ 💻 Local Development727098825
✅ 📦 Local Production7820118900
✅ 🐘 Local Postgres7820118900
✅ 🪟 Windows720375
❌ 🌍 Community Worlds1185615189
✅ 📋 Other198027225
Total3437564463939

❌ Failed Tests

🌍 Community Worlds (56 failed)

mongodb (3 failed):

  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KM3W149EXRBP2JQ8YWHV71EQ
  • webhookWorkflow | wrun_01KM3W1D4KT16N1020BTJGC7WV
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KM3W6TTAV0JQYYWT69GK93VH

redis (2 failed):

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

turso (51 failed):

  • addTenWorkflow | wrun_01KM3VZXXJVCJ0DTWE9818RY48
  • addTenWorkflow | wrun_01KM3VZXXJVCJ0DTWE9818RY48
  • wellKnownAgentWorkflow (.well-known/agent) | wrun_01KM3W1H6DHQM4G0Y8W1PZSC6N
  • should work with react rendering in step
  • promiseAllWorkflow | wrun_01KM3W04RS0F2YAJ3QY4ZB9DK6
  • promiseRaceWorkflow | wrun_01KM3W0AHE6ZNQGJVGZ3A6EV1B
  • promiseAnyWorkflow | wrun_01KM3W0CS8GZYCPP4S5K486M6N
  • importedStepOnlyWorkflow | wrun_01KM3W1VM7ZK21W1A9B190D1PH
  • hookWorkflow | wrun_01KM3W0S0QD10W72ZGGFH923RC
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KM3W149EXRBP2JQ8YWHV71EQ
  • webhookWorkflow | wrun_01KM3W1D4KT16N1020BTJGC7WV
  • sleepingWorkflow | wrun_01KM3W1KNH25RWJ35WRPKJ0RQ2
  • parallelSleepWorkflow | wrun_01KM3W1ZKC91HCGB3YCBJGS8FK
  • nullByteWorkflow | wrun_01KM3W237T6SJN9JTY673Z77FN
  • workflowAndStepMetadataWorkflow | wrun_01KM3W25ZEZ7VFKGQQPK2F10XT
  • fetchWorkflow | wrun_01KM3W3414YPD1M7EXWTKW7ASR
  • promiseRaceStressTestWorkflow | wrun_01KM3W37HKJF0C84Y5E7GX8BBZ
  • 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_01KM3W65WVJQB1X9SY2CQQJGXY
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KM3W6TTAV0JQYYWT69GK93VH
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KM3W7G7BBKRBGKT6AZT394SN
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KM3W845HECCJVV9V80TW7VH4
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KM3W8D7JQRRVWQEC7ZCKJJA2
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KM3W8K23860237FV9RSAFBBW
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KM3W8NESQ97M9QGR5HVD0448
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KM3W95E4JVQRQ6VE1NZFHTB2
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KM3W9BM5H2T98ENDATB1GYN0
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KM3W9JFW4EKH8F553XYYSJ5N
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KM3W9SK61E3YQJ40JZSTHP8C
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KM3WA0GYQ4D8JMV16MFHRMS1
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KM3WA7BD94MGA0H4E6SAQ1WT
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KM3WAE4BK57XHPWZ8BR7ZVGD
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KM3WAR19Z6FHJ2ND8H3RAWZP
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KM3WB16YF4VJ5YWQ8B4XX9E1
  • cancelRun - cancelling a running workflow | wrun_01KM3WB85XR7TET4MV424KR8GV
  • cancelRun via CLI - cancelling a running workflow | wrun_01KM3WBHKVK0TKYTT3S3C9DY3A
  • 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_01KM3WBXVR10FZ59Z06QG79G7R
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KM3WCJWV4V9FPZ30J9J3ERY1
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KM3WCX92V0ZH7B7DJY8SZP5X

Details by Category

✅ ▲ Vercel Production
AppPassedFailedSkipped
✅ astro6807
✅ example6807
✅ express6807
✅ fastify6807
✅ hono6807
✅ nextjs-turbopack7302
✅ nextjs-webpack7302
✅ nitro6807
✅ nuxt6807
✅ sveltekit6807
✅ vite6807
✅ 💻 Local Development
AppPassedFailedSkipped
✅ astro-stable6609
✅ express-stable6609
✅ fastify-stable6609
✅ hono-stable6609
✅ 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
❌ mongodb5233
✅ redis-dev302
❌ redis5323
✅ turso-dev302
❌ turso4513
✅ 📋 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: success
  • Local Dev: failure
  • Local Prod: success
  • Local Postgres: success
  • Windows: success

Check the workflow run for details.

@VaguelySerious
VaguelySerious merged commit dffe5c9 into mainMar 23, 2026
102 of 105 checks passed
@VaguelySerious
VaguelySerious deleted the lucas/dse-2322-re-exports branch March 23, 2026 18:52
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)
...
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.

2 participants

@Ralph-20@VaguelySerious