Skip to content

@cloudflare/[email protected]

Choose a tag to compare

@github-actions github-actions released this 03 Dec 10:37
· 15 commits to main since this release
f43a2d2

Patch Changes

  • #261 b6cc244 Thanks @whoiskatrin! - Add top-level await support for JavaScript code execution

    JavaScript code can now use await at the top level without wrapping in an async IIFE. Variables declared with const, let, or var persist across executions, enabling multi-step workflows like:

    // Execution 1
    const data = await fetch('https://api.example.com').then((r) => r.json());
    
    // Execution 2
    console.log(data); // Works - data persists