Skip to content

April 15, 2024

Compare
Choose a tag to compare
@theguild-bot theguild-bot released this 15 Apr 11:39
· 72 commits to master since this release
6bc7ed9

@whatwg-node/server@0.9.33

Patch Changes

  • #1246 4717be5 Thanks @ardatan! - Ensure unique context objects are sent per each request.

    For example in CloudFlare Workers,
    fetch receives env and ctx, and env is shared across requests. That causes the server receives the same context object for each request.
    Now the server creates a new context object for each request, even if the first argument is the same. Before, it always takes the first argument as the context object, then merges the following arguments into it.