Releases: ardatan/whatwg-node
Releases · ardatan/whatwg-node
Release list
June 02, 2026
@whatwg-node/server-plugin-cookies@1.0.7
Patch Changes
-
#3402
bb195f8
Thanks @enisdenjo! - dependencies updates:- Removed dependency
@whatwg-node/server@^0.11.0↗︎
(fromdependencies) - Added dependency
@whatwg-node/server@^0.10.0 || ^0.11.0↗︎
(topeerDependencies)
- Removed dependency
-
#3402
bb195f8
Thanks @enisdenjo! - @whatwg-node/server is a peer dependency
June 02, 2026
@whatwg-node/node-fetch@0.8.6
Patch Changes
- #3203
771cad6
Thanks @renovate! - Add TypeScript 6 compatibility: implement
values()method and[Symbol.asyncDispose]onPonyfillReadableStreamto match the updated
ReadableStreaminterface
@whatwg-node/server@0.11.0
Minor Changes
-
#3399
9d02fd0
Thanks @enisdenjo! - NewuseRequestDeadlineplugin for enforcing
per-request timeoutsAborts the request signal and returns a custom response when the handler takes longer than the
configured timeout.import { createServerAdapter, useRequestDeadline } from '@whatwg-node/server' const adapter = createServerAdapter(myHandler, { plugins: [ useRequestDeadline({ timeout: 5000, response: req => new Response(`Request to ${req.url} timed out`, { status: 504 }) }) ] })
The request's
AbortSignalis aborted when the deadline fires, so handlers that respect it (e.g.
fetchcalls, database queries) are cancelled cooperatively:async function myHandler(req: Request) { // this fetch is cancelled automatically if the deadline fires const data = await fetch('https://slow-api.example.com/data', { signal: req.signal }) return Response.json(await data.json()) }
Patch Changes
- #3376
228b517
Thanks @copilot-swe-agent! - Fix duplicate
transfer-encoding: chunkedheader when using uWebSockets.js. uWebSockets.js automatically adds
this header when streaming viawrite()+end(), so forwarding it from the fetch response
causedchunked, chunkedwhich breaks strict load balancers (e.g. Google Cloud Load Balancer).
@whatwg-node/server-plugin-cookies@1.0.6
Patch Changes
January 06, 2026
November 10, 2025
November 10, 2025
@whatwg-node/fetch@0.10.13
Patch Changes
-
Updated dependencies
[0079afd]:- @whatwg-node/node-fetch@0.8.3
@whatwg-node/node-fetch@0.8.3
Patch Changes
@whatwg-node/server@0.10.16
Patch Changes
November 04, 2025
November 04, 2025
October 09, 2025
September 19, 2025
@whatwg-node/fetch@0.10.11
Patch Changes
- Updated dependencies
[60d41d6]:- @whatwg-node/node-fetch@0.8.0
@whatwg-node/node-fetch@0.8.0
Minor Changes
August 01, 2025
@whatwg-node/fetch@0.10.10
Patch Changes
- #2656
d2ef55c
Thanks @renovate! - Fix TypeScript issues and bump the version
to get performance improvements for all dependent packages - Updated dependencies
[d2ef55c]:- @whatwg-node/node-fetch@0.7.25
@whatwg-node/node-fetch@0.7.25
Patch Changes
- #2656
d2ef55c
Thanks @renovate! - Fix TypeScript issues and bump the version
to get performance improvements for all dependent packages