Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
753c981
Add opt-in QuickJS WASM VM engine (WORKFLOW_VM=quickjs) with full eve…
TooTallNate Jul 22, 2026
adb3d0e
QuickJS engine: AbortController, setAttributes, terminal drain, turbo…
TooTallNate Jul 22, 2026
6be76e2
QuickJS engine: hook.getConflict support, cross-run writable forwardi…
TooTallNate Jul 22, 2026
9d2530e
QuickJS engine: stream framing round-trip, bound step proxies, webhoo…
TooTallNate Jul 22, 2026
c57127d
Apply biome fixes to QuickJS engine files
TooTallNate Jul 22, 2026
ff400af
Address review feedback: anchor source-map strip to end-of-input, use…
TooTallNate Jul 22, 2026
5d4c578
CI: include generated QuickJS source assets in shared e2e build artif…
TooTallNate Jul 22, 2026
24017cc
Fix same-token hook ordering and conflicted-hook disposal in the Quic…
TooTallNate Jul 23, 2026
ad80ba8
CI: run both VM engines across all frameworks and worlds; label jobs …
TooTallNate Jul 23, 2026
2bd67b9
Fix stack overflow stripping inline source maps from webpack dev bund…
TooTallNate Jul 23, 2026
2a082dd
e2e: poll step listings until analytics rows include attempt (optiona…
TooTallNate Jul 23, 2026
0518e1c
e2e: use --withData to force storage-backed step listings for attempt…
TooTallNate Jul 23, 2026
6336b47
Sort imports in QuickJS serialization files (biome organizeImports)
TooTallNate Jul 31, 2026
2f3434d
QuickJS engine: resolve the run's full payload-key capability so seal…
TooTallNate Jul 31, 2026
1ff0ed9
Address review: crypto/process parity, loud Intl guards, lazy engine …
TooTallNate Jul 31, 2026
fe96bca
QuickJS engine: implement resilient resumeHook (hookInput materializa…
TooTallNate Jul 31, 2026
4506623
QuickJS engine: inline step execution via live-VM continuation loop +…
TooTallNate Jul 22, 2026
b232778
Address review: exclusive inline step claims, self-write requeue, in-…
TooTallNate Jul 31, 2026
8f88b5e
Merge origin/main (post-#3048) into quickjs-vm-perf; address review t…
TooTallNate Aug 4, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions packages/core/src/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1945,6 +1945,16 @@ export function workflowEntrypoint(
maxEventsLimit,
namespace,
nextTraceCarrier,
// Inline-step ownership plumbing: redeliveries of
// this message drive crash recovery for steps an
// earlier invocation claimed inline (see the
// backstop pass in the entrypoint's loop), and
// the message id is stamped as `ownerMessageId`
// on inline lazy step claims so wake replays
// defer to the in-flight body instead of
// requeueing the step.
deliveryAttempt: metadata.attempt,
ownerMessageId: metadata.messageId,
});
if (quickjsResult?.timeoutSeconds !== undefined) {
// Use `reinvoke` rather than returning
Expand Down
Loading
Loading