April 15, 2024
·
1887 commits
to master
since this release
@whatwg-node/server@0.9.33
Patch Changes
-
#1246
4717be5Thanks @ardatan! - Ensure unique context objects are sent per each request.For example in CloudFlare Workers,
fetchreceivesenvandctx, andenvis 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.