') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); Version Packages by github-actions[bot] · Pull Request #3697 · vercel/workflow · GitHub
Skip to content

Version Packages - #3697

Merged
karthikscale3 merged 1 commit into
stablefrom
changeset-release/stable
Aug 25, 2026
Merged

Version Packages#3697
karthikscale3 merged 1 commit into
stablefrom
changeset-release/stable

Conversation

@github-actions

@github-actionsgithub-actionsBot commented Aug 20, 2026

Copy link
Copy Markdown
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to stable, this PR will be updated.

Releases

@workflow/world@4.5.0

Minor Changes

Patch Changes

  • #2888699e01e Thanks @ctgowrie! - Use the active queue namespace when re-enqueuing workflow runs during world startup recovery.

@workflow/world-local@4.4.0

Minor Changes

  • #29144c93a5f Thanks @karthikscale3! - Add WORKFLOW_LOCAL_RECOVER_ACTIVE_RUNS env var as a fallback for the recoverActiveRuns option, so re-enqueueing of pending/running runs on startup can be disabled without a custom world module.

Patch Changes

  • #2888699e01e Thanks @ctgowrie! - Use the active queue namespace when re-enqueuing workflow runs during world startup recovery.

  • #21520fd781a Thanks @pranaygp! - Reduce local sequential-step replay I/O with bounded recent-event and storage-directory caches.

  • #37625fa20ea Thanks @karthikscale3! - Accept and send an optional runId when listing events by correlation ID

  • Updated dependencies [699e01e, 5fa20ea]:

    • @workflow/world@4.5.0
    • @workflow/errors@4.2.1

@workflow/ai@4.2.1

Patch Changes

  • #19329a9945d Thanks @VaguelySerious! - Reduce DurableAgent step boundary payload by reconstructing StepResult outside the step instead of inside.

  • Updated dependencies [608769d]:

    • workflow@4.8.5

@workflow/astro@4.0.20

Patch Changes

  • Updated dependencies []:
    • @workflow/builders@4.1.10
    • @workflow/rollup@4.0.20
    • @workflow/vite@4.0.20

@workflow/builders@4.1.10

Patch Changes

@workflow/cli@4.3.9

Patch Changes

@workflow/core@4.8.5

Patch Changes

  • #36755556b4c Thanks @TooTallNate! - Step-argument serialization failures now fail the step with a catchable error (via a step_failed event, like a step-body failure) instead of failing the run from outside the workflow, and when uncaught they fail the run immediately as a USER_ERROR rather than retrying until max queue deliveries.

  • #3552cd9343b Thanks @AndrewBarba! - Preserve event-log order when adjacent hook payloads resume independent workflow branches.

  • #3554608769d Thanks @VaguelySerious! - Fix a replay-determinism gap where branch wake order — and therefore step correlation ids — could depend on how much of the event log an invocation had loaded, corrupting runs under concurrent replays (CORRUPTED_EVENT_LOG).

  • #3564853a316 Thanks @alangenfeld! - Verify stream tail when the reconnecting framed reader receives an EOF to ensure it is due to stream completion (and not other world-side behavior)

  • Updated dependencies [4c93a5f, 699e01e, 0fd781a, 5fa20ea]:

    • @workflow/world-local@4.4.0
    • @workflow/world@4.5.0
    • @workflow/world-vercel@4.7.1
    • @workflow/errors@4.2.1

@workflow/nest@4.0.21

Patch Changes

  • Updated dependencies []:
    • @workflow/builders@4.1.10

@workflow/next@4.1.9

Patch Changes

@workflow/nitro@4.1.11

Patch Changes

@workflow/nuxt@4.0.21

Patch Changes

  • Updated dependencies [2cf8838]:
    • @workflow/nitro@4.1.11

@workflow/rollup@4.0.20

Patch Changes

  • Updated dependencies []:
    • @workflow/builders@4.1.10

@workflow/sveltekit@4.0.20

Patch Changes

  • Updated dependencies []:
    • @workflow/builders@4.1.10
    • @workflow/rollup@4.0.20
    • @workflow/vite@4.0.20

@workflow/vite@4.0.20

Patch Changes

  • Updated dependencies []:
    • @workflow/builders@4.1.10

@workflow/vitest@4.0.21

Patch Changes

@workflow/web@4.1.21

Patch Changes

@workflow/web-shared@4.1.21

Patch Changes

workflow@4.8.5

Patch Changes

  • #3554608769d Thanks @VaguelySerious! - Fix a replay-determinism gap where branch wake order — and therefore step correlation ids — could depend on how much of the event log an invocation had loaded, corrupting runs under concurrent replays (CORRUPTED_EVENT_LOG).

  • Updated dependencies [5556b4c, cd9343b, 608769d, 2cf8838, 853a316]:

    • @workflow/core@4.8.5
    • @workflow/nitro@4.1.11
    • @workflow/cli@4.3.9
    • @workflow/next@4.1.9
    • @workflow/typescript-plugin@4.0.3
    • @workflow/errors@4.2.1
    • @workflow/nuxt@4.0.21
    • @workflow/astro@4.0.20
    • @workflow/nest@4.0.21
    • @workflow/rollup@4.0.20
    • @workflow/sveltekit@4.0.20

@workflow/world-postgres@4.3.5

Patch Changes

  • #3575e0328a8 Thanks @shin4141! - Commit step entities and their step_created events atomically.

  • #2888699e01e Thanks @ctgowrie! - Use the active queue namespace when re-enqueuing workflow runs during world startup recovery.

  • #29832ced7cc Thanks @joeyhotz! - Throw EntityConflictError when a run_created event targets a run that already exists, instead of resolving with no run. This matches world-local and world-vercel, and stops start() from throwing Missing 'run' in server response for 'run_created' event when the resilient start path wins the race.

  • #37625fa20ea Thanks @karthikscale3! - Accept and send an optional runId when listing events by correlation ID

  • Updated dependencies [4c93a5f, 699e01e, 0fd781a, 5fa20ea]:

    • @workflow/world-local@4.4.0
    • @workflow/world@4.5.0
    • @workflow/errors@4.2.1

@workflow/world-testing@4.1.20

Patch Changes

@workflow/world-vercel@4.7.1

Patch Changes

@github-actions
github-actionsBot requested review from a team and ijjk as code ownersAugust 20, 2026 18:45
@vercel

vercelBot commented Aug 20, 2026

Copy link
Copy Markdown
Contributor

The latest updates on your projects. Learn more about Vercel for GitHub.

ProjectDeploymentActionsUpdated (UTC)
example-nextjs-workflow-turbopackReadyReadyPreview, v0Aug 25, 2026 2:40pm
example-nextjs-workflow-webpackReadyReadyPreview, v0Aug 25, 2026 2:40pm
example-workflowReadyReadyPreview, v0Aug 25, 2026 2:40pm
workbench-astro-workflowReadyReadyPreview, v0Aug 25, 2026 2:40pm
workbench-express-workflowReadyReadyPreview, v0Aug 25, 2026 2:40pm
workbench-fastify-workflowReadyReadyPreview, v0Aug 25, 2026 2:40pm
workbench-hono-workflowReadyReadyPreview, v0Aug 25, 2026 2:40pm
workbench-nestjs-workflowReadyReadyPreview, v0Aug 25, 2026 2:40pm
workbench-nitro-workflowReadyReadyPreview, v0Aug 25, 2026 2:40pm
workbench-nuxt-workflowReadyReadyPreview, v0Aug 25, 2026 2:40pm
workbench-python-workflowErrorErrorv0Aug 25, 2026 2:40pm
workbench-sveltekit-workflowReadyReadyPreview, v0Aug 25, 2026 2:40pm
workbench-tanstack-start-workflowReadyReadyPreview, v0Aug 25, 2026 2:40pm
workbench-vite-workflowReadyReadyPreview, v0Aug 25, 2026 2:40pm
workflow-swc-playgroundReadyReadyPreview, v0Aug 25, 2026 2:40pm
workflow-tarballsReadyReadyPreview, v0Aug 25, 2026 2:40pm
workflow-webReadyReadyPreview, v0Aug 25, 2026 2:40pm
1 Skipped Deployment
ProjectDeploymentActionsUpdated (UTC)
workflow-docsSkippedSkippedv0Aug 25, 2026 2:40pm

@github-actions
github-actionsBotforce-pushed the changeset-release/stable branch from 4ad4183 to 2bbc709CompareAugust 21, 2026 19:48
@github-actions
github-actionsBotforce-pushed the changeset-release/stable branch from e3c7042 to c4aa852CompareAugust 24, 2026 22:03
@github-actions

github-actionsBot commented Aug 24, 2026

Copy link
Copy Markdown
ContributorAuthor

🧪 E2E Test Results

Some tests failed

Summary

PassedFailedSkippedTotal
✅ ▲ Vercel Production10990781177
✅ 💻 Local Development11980861284
✅ 📦 Local Production11980861284
✅ 🐘 Local Postgres11980861284
✅ 🪟 Windows10700107
❌ 🌍 Community Worlds831059197
✅ 📋 Other606036642
Total54891053815975

❌ Failed Tests

🌍 Community Worlds (105 failed)

redis (20 failed):

  • hookWorkflow is not resumable via public webhook endpoint | wrun_01M0WNTK3Y5CZZFH4WK2G6MFK9
  • parallelStepsThenWebhookWorkflow - no hook_conflict from same-tick replay race | wrun_01M0WNTXBJB419F7M8NDXCZ52G
  • sleepingWorkflow | wrun_01M0WNVYF2RFTCJN0JY882YRBS
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • error handling serialization failures step-argument serialization failure is catchable in workflow code
  • error handling serialization failures uncaught step-argument serialization failure fails the run as USER_ERROR without redelivery retries
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01M0WP4FN4NRM4GMB6R2J9JHBV
  • hookGetConflictWorkflow - awaiting hook.getConflict() registers hook without payload | wrun_01M0WP4XD8WEAVC80Y5V1NF104
  • hookGetConflictThenStepParallelWorkflow - hook.getConflict() continuation step runs alongside other steps | wrun_01M0WP55GYQJ6TCVYY3H38BN31
  • hookGetConflictWorkflow - hook.getConflict() resolves with the conflicting run when token is already registered | wrun_01M0WP5K0S0C14E5J1JYFG4Q90
  • hookClaimOnlyMutexWorkflow - hook works as a pure run mutex without payload data | wrun_01M0WP6EZYXM5M9SE1FD7H8PH4
  • hookAdoptOwnerResultWorkflow - duplicate adopts the owner result via conflict.returnValue | wrun_01M0WP6JGRQQ8FAF9MWZT57A6B
  • hookSignalOwnerWorkflow - duplicate forwards its payload to the owner via resumeHook | wrun_01M0WP6SD5W71AG6CANE5W7S09
  • hookSupersedeOwnerWorkflow - duplicate cancels the owner and claims the released token | wrun_01M0WP6XNSKMNZH3VH7D6XTJPC
  • resume-or-start route pattern - resumeHook retried after start() reaches the new run | wrun_01M0WP77NWXZ2HYQ4R9PW59QJ1
  • pages router sleepingWorkflow via pages router
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01M0WPD457TRN6CZHEPTHPQX8C

turso (85 failed):

  • addTenWorkflow | wrun_01M0WNSCJ32HXQQH40YMZ66MWB
  • addTenWorkflow | wrun_01M0WNSCJ32HXQQH40YMZ66MWB
  • deploymentId: 'latest' is a no-op in non-Vercel worlds
  • wellKnownAgentWorkflow (.well-known/agent) | wrun_01M0WNSNCTYBNREBW3K19KGT3J
  • should work with react rendering in step
  • promiseAllWorkflow | wrun_01M0WNSN7B4Z8WER6AB2QPC4N4
  • promiseRaceWorkflow | wrun_01M0WNSV1XACAFAKFD46KV7E7C
  • promiseAnyWorkflow | wrun_01M0WNSXBYC4PC1HRTNGFMXHWJ
  • importedStepOnlyWorkflow | wrun_01M0WNT1EP6BBK23XD1JAM0DY2
  • readableStreamWorkflow | wrun_01M0WNSZQ9XEY93GV6Z5WS4WXE
  • hookWorkflow | wrun_01M0WNTBYB67VX39AQGBZ0F088
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01M0WNTK3Y5CZZFH4WK2G6MFK9
  • webhookWorkflow | wrun_01M0WNTQF0KKKJVZX4A5JJ8DAK
  • parallelStepsThenWebhookWorkflow - no hook_conflict from same-tick replay race | wrun_01M0WNTXBJB419F7M8NDXCZ52G
  • sleepingWorkflow | wrun_01M0WNVYF2RFTCJN0JY882YRBS
  • parallelSleepWorkflow | wrun_01M0WNWE3KST20FPE2JK4NWG5E
  • sleepWinsRaceWorkflow | wrun_01M0WNWHPGKM8PAFFRKSG18WTT
  • stepWinsRaceWorkflow | wrun_01M0WNWNBQXWWS6ETXPJ0WWS3Z
  • nullByteWorkflow | wrun_01M0WNWS3NNY0GPNKXSV78RMZE
  • workflowAndStepMetadataWorkflow | wrun_01M0WNWVK69HDD4KYCT0NEAJW0
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01M0WNZ9J1M3DXXVKFP9MXQ5EP
  • writableForwardedFromWorkflowWorkflow | wrun_01M0WNZPG2SC79E1VGWR78JEYE
  • writableForwardedFromStepWorkflow | wrun_01M0WNZSKXXPP12EW17XKXG597
  • fetchWorkflow | wrun_01M0WNZW80QG4DV2NTHM31P41F
  • promiseRaceStressTestWorkflow | wrun_01M0WNZZTBGXYJ4C953XH43B2F
  • 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()
  • error handling serialization failures step-argument serialization failure is catchable in workflow code
  • error handling serialization failures uncaught step-argument serialization failure fails the run as USER_ERROR without redelivery retries
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01M0WP42F3GMXPKQH00C7B8PWY
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01M0WP4FN4NRM4GMB6R2J9JHBV
  • hookGetConflictWorkflow - awaiting hook.getConflict() registers hook without payload | wrun_01M0WP4XD8WEAVC80Y5V1NF104
  • 'hookGetConflictWithPriorStepWorkflow' - hook.getConflict() does not block step execution | wrun_01M0WP502WDMPHPVN0R3TTQA83
  • 'hookGetConflictWithParallelStepWorkfl…' - hook.getConflict() does not block step execution | wrun_01M0WP52VCMPGAE5NCXXZBKD5W
  • hookGetConflictThenStepParallelWorkflow - hook.getConflict() continuation step runs alongside other steps | wrun_01M0WP55GYQJ6TCVYY3H38BN31
  • hookGetConflictWorkflow - hook.getConflict() resolves with the conflicting run when token is already registered | wrun_01M0WP5K0S0C14E5J1JYFG4Q90
  • hookClaimOnlyMutexWorkflow - hook works as a pure run mutex without payload data | wrun_01M0WP6EZYXM5M9SE1FD7H8PH4
  • hookAdoptOwnerResultWorkflow - duplicate adopts the owner result via conflict.returnValue | wrun_01M0WP6JGRQQ8FAF9MWZT57A6B
  • hookSignalOwnerWorkflow - duplicate forwards its payload to the owner via resumeHook | wrun_01M0WP6SD5W71AG6CANE5W7S09
  • hookSupersedeOwnerWorkflow - duplicate cancels the owner and claims the released token | wrun_01M0WP6XNSKMNZH3VH7D6XTJPC
  • resume-or-start route pattern - resumeHook retried after start() reaches the new run | wrun_01M0WP77NWXZ2HYQ4R9PW59QJ1
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01M0WP7FYMAFZJ7Y6HKAFACWJH
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01M0WP80F0SK9YA94247RGWYR4
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01M0WP8AKYQQG6W8MMK6DMZ7SV
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01M0WP8GX86VDW36QMHKVYFFJX
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01M0WP8K8VKBHVGFN75RTE2N58
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01M0WP93K0N2656Y6DVH0G328R
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01M0WP99N4ZACW149YHBEF5KB4
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01M0WP9FTVB2X029SN4YKX826X
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01M0WP9P8DVNPS0NDYFPNDVG7J
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01M0WP9W8DB4A1DVHVJX8TC196
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01M0WPA393R65D19REVT3A8M6Y
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01M0WPAANN2AN7BKX5D3ARZ0TQ
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01M0WPAR5JFCB17VPBRZ42KJ7C
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01M0WPB2B509QECSACM0Q82RJ8
  • cancelRun - cancelling a running workflow | wrun_01M0WPB9CYYTV0SMBFP1V9YQMC
  • cancelRun via CLI - cancelling a running workflow | wrun_01M0WPBEN8C55J129QCCEM552W
  • 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_01M0WPBPRVWJFH01XN9FJ95Z2Z
  • hookWithSleepFinalStepWorkflow - step only on final payload | wrun_01M0WPC2T3PRAYK365KFBZXKXP
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01M0WPCCXWTYHS0M52E0NGJWC2
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01M0WPCQS0N97XT24A2JAJDVH6
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01M0WPCZ43J6HC1AP491SBHJ68
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01M0WPD1HXV3WECX151VXQQ1FQ
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01M0WPD457TRN6CZHEPTHPQX8C

Details by Category

✅ ▲ Vercel Production
AppPassedFailedSkipped
✅ astro9908
✅ example9908
✅ express9908
✅ fastify9908
✅ hono9908
✅ nextjs-turbopack10403
✅ nextjs-webpack10403
✅ nitro9908
✅ nuxt9908
✅ sveltekit9908
✅ vite9908
✅ 💻 Local Development
AppPassedFailedSkipped
✅ astro-stable10106
✅ express-stable10106
✅ fastify-stable10106
✅ hono-stable10106
✅ nextjs-turbopack-canary88019
✅ nextjs-turbopack-stable10700
✅ nextjs-webpack-canary88019
✅ nextjs-webpack-stable10700
✅ nitro-stable10106
✅ nuxt-stable10106
✅ sveltekit-stable10106
✅ vite-stable10106
✅ 📦 Local Production
AppPassedFailedSkipped
✅ astro-stable10106
✅ express-stable10106
✅ fastify-stable10106
✅ hono-stable10106
✅ nextjs-turbopack-canary88019
✅ nextjs-turbopack-stable10700
✅ nextjs-webpack-canary88019
✅ nextjs-webpack-stable10700
✅ nitro-stable10106
✅ nuxt-stable10106
✅ sveltekit-stable10106
✅ vite-stable10106
✅ 🐘 Local Postgres
AppPassedFailedSkipped
✅ astro-stable10106
✅ express-stable10106
✅ fastify-stable10106
✅ hono-stable10106
✅ nextjs-turbopack-canary88019
✅ nextjs-turbopack-stable10700
✅ nextjs-webpack-canary88019
✅ nextjs-webpack-stable10700
✅ nitro-stable10106
✅ nuxt-stable10106
✅ sveltekit-stable10106
✅ vite-stable10106
✅ 🪟 Windows
AppPassedFailedSkipped
✅ nextjs-turbopack10700
❌ 🌍 Community Worlds
AppPassedFailedSkipped
✅ mongodb-dev403
✅ redis-dev403
❌ redis68200
✅ turso-dev403
❌ turso3850
✅ 📋 Other
AppPassedFailedSkipped
✅ e2e-local-dev-nest-stable10106
✅ e2e-local-dev-tanstack-start-stable10106
✅ e2e-local-postgres-nest-stable10106
✅ e2e-local-postgres-tanstack-start-stable10106
✅ e2e-local-prod-nest-stable10106
✅ e2e-local-prod-tanstack-start-stable10106

📋 View full workflow run

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.

1 participant

@karthikscale3