') + ')', '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 #3436 · vercel/workflow · GitHub
Skip to content

Version Packages - #3436

Merged
VaguelySerious merged 1 commit into
stablefrom
changeset-release/stable
Aug 11, 2026
Merged

Version Packages#3436
VaguelySerious merged 1 commit into
stablefrom
changeset-release/stable

Conversation

@github-actions

@github-actionsgithub-actionsBot commented Aug 10, 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/astro@4.0.17

Patch Changes

  • Updated dependencies []:
    • @workflow/builders@4.1.7
    • @workflow/rollup@4.0.17
    • @workflow/vite@4.0.17

@workflow/builders@4.1.7

Patch Changes

@workflow/cli@4.3.6

Patch Changes

  • Updated dependencies [e822a6a, 6f301ba, 86bc000]:
    • @workflow/core@4.8.2
    • @workflow/builders@4.1.7
    • @workflow/web@4.1.18

@workflow/core@4.8.2

Patch Changes

  • #3372e822a6a Thanks @ar-tama! - Fix Date subclassing inside workflow functions. The deterministic Date override in the workflow VM now forwards new.target via Reflect.construct, so subclasses like TZDate from @date-fns/tz keep their identity, methods, and fields. Calling Date() without new now returns the (fixed) time string per spec, instead of a Date object.

  • #31396f301ba Thanks @pranaygp! - Deliver step results, wait completions and hook payloads in strict event-log order relative to one another, preventing replay divergence (CORRUPTED_EVENT_LOG) when a step completion is adjacent in the log to a wait_completed or hook_received that a concurrent branch is awaiting.

  • #343986bc000 Thanks @VaguelySerious! - Stop reporting replay divergence for an event the workflow is still on its way to consuming, by waiting for in-flight step and hook deliveries instead of a fixed delay

@workflow/nest@4.0.18

Patch Changes

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

@workflow/next@4.1.6

Patch Changes

@workflow/nitro@4.1.8

Patch Changes

  • Updated dependencies [e822a6a, 6f301ba, 86bc000]:
    • @workflow/core@4.8.2
    • @workflow/builders@4.1.7
    • @workflow/web@4.1.18
    • @workflow/rollup@4.0.17
    • @workflow/vite@4.0.17

@workflow/nuxt@4.0.18

Patch Changes

  • Updated dependencies []:
    • @workflow/nitro@4.1.8

@workflow/rollup@4.0.17

Patch Changes

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

@workflow/sveltekit@4.0.17

Patch Changes

  • Updated dependencies []:
    • @workflow/builders@4.1.7
    • @workflow/rollup@4.0.17
    • @workflow/vite@4.0.17

@workflow/vite@4.0.17

Patch Changes

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

@workflow/vitest@4.0.18

Patch Changes

  • Updated dependencies [e822a6a, 6f301ba, 86bc000]:
    • @workflow/core@4.8.2
    • @workflow/builders@4.1.7
    • @workflow/rollup@4.0.17

@workflow/web-shared@4.1.18

Patch Changes

workflow@4.8.2

Patch Changes

  • Updated dependencies [e822a6a, 6f301ba, 86bc000]:
    • @workflow/core@4.8.2
    • @workflow/cli@4.3.6
    • @workflow/next@4.1.6
    • @workflow/nitro@4.1.8
    • @workflow/typescript-plugin@4.0.3
    • @workflow/astro@4.0.17
    • @workflow/nest@4.0.18
    • @workflow/rollup@4.0.17
    • @workflow/sveltekit@4.0.17
    • @workflow/nuxt@4.0.18

@workflow/world-testing@4.1.17

Patch Changes

@workflow/web@4.1.18

@github-actions
github-actionsBot requested review from a team and ijjk as code ownersAugust 10, 2026 23:15
@vercel

vercelBot commented Aug 10, 2026

Copy link
Copy Markdown
Contributor

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

ProjectDeploymentActionsUpdated (UTC)
example-nextjs-workflow-turbopackReadyReadyPreviewAug 11, 2026 2:19am
example-nextjs-workflow-webpackReadyReadyPreviewAug 11, 2026 2:19am
example-workflowReadyReadyPreviewAug 11, 2026 2:19am
workbench-astro-workflowReadyReadyPreviewAug 11, 2026 2:19am
workbench-express-workflowReadyReadyPreviewAug 11, 2026 2:19am
workbench-fastify-workflowReadyReadyPreviewAug 11, 2026 2:19am
workbench-hono-workflowReadyReadyPreviewAug 11, 2026 2:19am
workbench-nestjs-workflowReadyReadyPreviewAug 11, 2026 2:19am
workbench-nitro-workflowReadyReadyPreviewAug 11, 2026 2:19am
workbench-nuxt-workflowReadyReadyPreviewAug 11, 2026 2:19am
workbench-python-workflowErrorErrorAug 11, 2026 2:19am
workbench-sveltekit-workflowReadyReadyPreviewAug 11, 2026 2:19am
workbench-tanstack-start-workflowReadyReadyPreviewAug 11, 2026 2:19am
workbench-vite-workflowReadyReadyPreviewAug 11, 2026 2:19am
workflow-swc-playgroundReadyReadyPreviewAug 11, 2026 2:19am
workflow-tarballsReadyReadyPreviewAug 11, 2026 2:19am
workflow-webReadyReadyPreviewAug 11, 2026 2:19am
1 Skipped Deployment
ProjectDeploymentActionsUpdated (UTC)
workflow-docsSkippedSkippedAug 11, 2026 2:19am

@github-actions
github-actionsBotforce-pushed the changeset-release/stable branch from 1d70df3 to cc2895dCompareAugust 11, 2026 00:47
@github-actions
github-actionsBotforce-pushed the changeset-release/stable branch from cc2895d to 44e5409CompareAugust 11, 2026 02:16
@github-actions

github-actionsBot commented Aug 11, 2026

Copy link
Copy Markdown
ContributorAuthor

🧪 E2E Test Results

Some tests failed

Summary

PassedFailedSkippedTotal
✅ ▲ Vercel Production10770781155
✅ 💻 Local Development11740861260
✅ 📦 Local Production11740861260
✅ 🐘 Local Postgres11740861260
✅ 🪟 Windows10500105
❌ 🌍 Community Worlds821029193
✅ 📋 Other594036630
Total53801023815863

❌ Failed Tests

🌍 Community Worlds (102 failed)

redis (19 failed):

  • hookWorkflow | wrun_01KZRZ4CX80XTM45M6TEMPVY8W
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KZRZ4KGF3VY4ZXP88R4G7H33
  • parallelStepsThenWebhookWorkflow - no hook_conflict from same-tick replay race | wrun_01KZRZ4WK88B730BY91GNWA15S
  • sleepingWorkflow | wrun_01KZRZ5RZ3R8HHC22WT2YN8CK5
  • 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
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KZRZCQHT3RVVJ3QVXN8AFFZ7
  • hookGetConflictWorkflow - awaiting hook.getConflict() registers hook without payload | wrun_01KZRZD1J6MJR2KHEY8KXNP58F
  • hookGetConflictThenStepParallelWorkflow - hook.getConflict() continuation step runs alongside other steps | wrun_01KZRZD8F5TDGBJYRVABDY4CX8
  • hookGetConflictWorkflow - hook.getConflict() resolves with the conflicting run when token is already registered | wrun_01KZRZDPDVATFJZSTWX6BH6VZJ
  • hookClaimOnlyMutexWorkflow - hook works as a pure run mutex without payload data | wrun_01KZRZEGBE120382NK561R64NG
  • hookAdoptOwnerResultWorkflow - duplicate adopts the owner result via conflict.returnValue | wrun_01KZRZEMA5AKWPB3KBF0JS92CV
  • hookSignalOwnerWorkflow - duplicate forwards its payload to the owner via resumeHook | wrun_01KZRZETXSVW7NFGXHRWBZY903
  • hookSupersedeOwnerWorkflow - duplicate cancels the owner and claims the released token | wrun_01KZRZEZMV3VG68RZGQV9CY0EC
  • resume-or-start route pattern - resumeHook retried after start() reaches the new run | wrun_01KZRZF6VTWTTRDY24F58NA9T4
  • pages router sleepingWorkflow via pages router
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KZRZKYWPVFGK13QX5KC90DKA

turso (83 failed):

  • addTenWorkflow | wrun_01KZRZ3EPE5DKX0DF1GFC7SWZ7
  • addTenWorkflow | wrun_01KZRZ3EPE5DKX0DF1GFC7SWZ7
  • deploymentId: 'latest' is a no-op in non-Vercel worlds
  • wellKnownAgentWorkflow (.well-known/agent) | wrun_01KZRZ3VH86XKNYG4MRGDESMB4
  • should work with react rendering in step
  • promiseAllWorkflow | wrun_01KZRZ3MA6YNA9XX7WCGAJDRWN
  • promiseRaceWorkflow | wrun_01KZRZ3QQBK65C5E9TSZP871JW
  • promiseAnyWorkflow | wrun_01KZRZ3SVATJAW8F0VHH8TFG9P
  • importedStepOnlyWorkflow | wrun_01KZRZ46BJ9AKDAQQ39KRGKR5R
  • readableStreamWorkflow | wrun_01KZRZ3W123ADPE5WK0ETX8VCN
  • hookWorkflow | wrun_01KZRZ4CX80XTM45M6TEMPVY8W
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KZRZ4KGF3VY4ZXP88R4G7H33
  • webhookWorkflow | wrun_01KZRZ4QQBH79QYKT0MSATAM37
  • parallelStepsThenWebhookWorkflow - no hook_conflict from same-tick replay race | wrun_01KZRZ4WK88B730BY91GNWA15S
  • sleepingWorkflow | wrun_01KZRZ5RZ3R8HHC22WT2YN8CK5
  • parallelSleepWorkflow | wrun_01KZRZ66MME54DP4GNHW35Z82B
  • sleepWinsRaceWorkflow | wrun_01KZRZ69Y87X53X5R4PNPGH3DR
  • stepWinsRaceWorkflow | wrun_01KZRZ6D6HHBSRTF6M2BN81FTM
  • nullByteWorkflow | wrun_01KZRZ6GE3MP8TPM8E12RJJDCT
  • workflowAndStepMetadataWorkflow | wrun_01KZRZ6JNYRVFYRCJZYV0A9W5J
  • 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_01KZRZ8T02XWXT5BP8GCK10E95
  • writableForwardedFromWorkflowWorkflow | wrun_01KZRZ97D664Y884AT15G07CSE
  • writableForwardedFromStepWorkflow | wrun_01KZRZ9BKF3F4CA6SKK7GPNJYV
  • fetchWorkflow | wrun_01KZRZ9F4QVPJ2Y90KQ8MTSGG0
  • promiseRaceStressTestWorkflow | wrun_01KZRZ9JHBE6RXXYCDG681XVSG
  • 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 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_01KZRZCE4V89VX72A03DPQVMAQ
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KZRZCQHT3RVVJ3QVXN8AFFZ7
  • hookGetConflictWorkflow - awaiting hook.getConflict() registers hook without payload | wrun_01KZRZD1J6MJR2KHEY8KXNP58F
  • 'hookGetConflictWithPriorStepWorkflow' - hook.getConflict() does not block step execution | wrun_01KZRZD3X2QSBQ22YVHDWWTG8R
  • 'hookGetConflictWithParallelStepWorkfl…' - hook.getConflict() does not block step execution | wrun_01KZRZD68CM60JSH187R7J6X7R
  • hookGetConflictThenStepParallelWorkflow - hook.getConflict() continuation step runs alongside other steps | wrun_01KZRZD8F5TDGBJYRVABDY4CX8
  • hookGetConflictWorkflow - hook.getConflict() resolves with the conflicting run when token is already registered | wrun_01KZRZDPDVATFJZSTWX6BH6VZJ
  • hookClaimOnlyMutexWorkflow - hook works as a pure run mutex without payload data | wrun_01KZRZEGBE120382NK561R64NG
  • hookAdoptOwnerResultWorkflow - duplicate adopts the owner result via conflict.returnValue | wrun_01KZRZEMA5AKWPB3KBF0JS92CV
  • hookSignalOwnerWorkflow - duplicate forwards its payload to the owner via resumeHook | wrun_01KZRZETXSVW7NFGXHRWBZY903
  • hookSupersedeOwnerWorkflow - duplicate cancels the owner and claims the released token | wrun_01KZRZEZMV3VG68RZGQV9CY0EC
  • resume-or-start route pattern - resumeHook retried after start() reaches the new run | wrun_01KZRZF6VTWTTRDY24F58NA9T4
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KZRZFD87QDMZENCNQXVMVZWW
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KZRZFY58S8W21DVE0GRT5QPX
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KZRZG534XDB88PR9M5G0CEXC
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KZRZG9G6HYSCNAG50G6ETRW0
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KZRZGBKGX0E8WK1JKEHYA462
  • 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_01KZRZGR15DT4D1JMYNQ77AV1P
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KZRZGW9V8DYGRFB16VTFAJB2
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KZRZH1X5QSMMMXMZJ81ZAMAX
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KZRZH7F03BXYPQQ9XJ0JPA5B
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KZRZHCSM006ZC2E71Q0J9E4J
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KZRZHKFTAD2X0YJ5YXGS8SPJ
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KZRZHS083X29NH6AYR0EENFK
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KZRZJ37KMF7A057ZTPHMF7Q6
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KZRZJ9NTQP9VC9TE5JGYM9TV
  • cancelRun - cancelling a running workflow | wrun_01KZRZJF1E76PX85ZFB3KHJ3SZ
  • cancelRun via CLI - cancelling a running workflow | wrun_01KZRZJJX7RRC09SY8C5H0FDC8
  • 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_01KZRZJR42XZVGJPSKMRNRPARN
  • hookWithSleepFinalStepWorkflow - step only on final payload | wrun_01KZRZK3875HG3ZJ3DN74YT9Z7
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KZRZKAH87BTK3GT0H60P0NFF
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KZRZKN25BKAWVRZCPR9FGCAN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KZRZKTEGM605CYZ0QT3A20HT
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KZRZKWHZ2DZG41G03225W2B7
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KZRZKYWPVFGK13QX5KC90DKA

Details by Category

✅ ▲ Vercel Production
AppPassedFailedSkipped
✅ astro9708
✅ example9708
✅ express9708
✅ fastify9708
✅ hono9708
✅ nextjs-turbopack10203
✅ nextjs-webpack10203
✅ nitro9708
✅ nuxt9708
✅ sveltekit9708
✅ vite9708
✅ 💻 Local Development
AppPassedFailedSkipped
✅ astro-stable9906
✅ express-stable9906
✅ fastify-stable9906
✅ hono-stable9906
✅ nextjs-turbopack-canary86019
✅ nextjs-turbopack-stable10500
✅ nextjs-webpack-canary86019
✅ nextjs-webpack-stable10500
✅ nitro-stable9906
✅ nuxt-stable9906
✅ sveltekit-stable9906
✅ vite-stable9906
✅ 📦 Local Production
AppPassedFailedSkipped
✅ astro-stable9906
✅ express-stable9906
✅ fastify-stable9906
✅ hono-stable9906
✅ nextjs-turbopack-canary86019
✅ nextjs-turbopack-stable10500
✅ nextjs-webpack-canary86019
✅ nextjs-webpack-stable10500
✅ nitro-stable9906
✅ nuxt-stable9906
✅ sveltekit-stable9906
✅ vite-stable9906
✅ 🐘 Local Postgres
AppPassedFailedSkipped
✅ astro-stable9906
✅ express-stable9906
✅ fastify-stable9906
✅ hono-stable9906
✅ nextjs-turbopack-canary86019
✅ nextjs-turbopack-stable10500
✅ nextjs-webpack-canary86019
✅ nextjs-webpack-stable10500
✅ nitro-stable9906
✅ nuxt-stable9906
✅ sveltekit-stable9906
✅ vite-stable9906
✅ 🪟 Windows
AppPassedFailedSkipped
✅ nextjs-turbopack10500
❌ 🌍 Community Worlds
AppPassedFailedSkipped
✅ mongodb-dev403
✅ redis-dev403
❌ redis67190
✅ turso-dev403
❌ turso3830
✅ 📋 Other
AppPassedFailedSkipped
✅ e2e-local-dev-nest-stable9906
✅ e2e-local-dev-tanstack-start-stable9906
✅ e2e-local-postgres-nest-stable9906
✅ e2e-local-postgres-tanstack-start-stable9906
✅ e2e-local-prod-nest-stable9906
✅ e2e-local-prod-tanstack-start-stable9906

📋 View full workflow run

@VaguelySerious
VaguelySerious merged commit 444c259 into stableAug 11, 2026
93 of 97 checks passed
@VaguelySerious
VaguelySerious deleted the changeset-release/stable branch August 11, 2026 18:01
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

@VaguelySerious