April 15, 2024
theguild-bot
released this
15 Apr 11:39
·
652 commits
to master
since this release
@whatwg-node/[email protected]
Patch Changes
-
#1246
4717be5
Thanks @ardatan! - Ensure unique context objects are sent per each request.For example in CloudFlare Workers,
fetch
receivesenv
andctx
, andenv
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.