Releases: ardatan/whatwg-node
Releases · ardatan/whatwg-node
January 06, 2026
@whatwg-node/[email protected]
Patch Changes
- #2963
99e6722
Thanks @renovate! - Write string directly while sending
request body tonode:http'sOutgoingMessage.
@whatwg-node/[email protected]
Patch Changes
November 10, 2025
November 10, 2025
@whatwg-node/[email protected]
Patch Changes
-
Updated dependencies
[0079afd]:- @whatwg-node/[email protected]
@whatwg-node/[email protected]
Patch Changes
@whatwg-node/[email protected]
Patch Changes
-
Updated dependencies
[0079afd]:- @whatwg-node/[email protected]
November 04, 2025
@whatwg-node/[email protected]
Patch Changes
-
c9b2c87
Thanks @ardatan! - Do not override existing `user-agent` -
Updated dependencies
[c9b2c87]:- @whatwg-node/[email protected]
@whatwg-node/[email protected]
Patch Changes
@whatwg-node/[email protected]
Patch Changes
-
c9b2c87
Thanks @ardatan! - Do not override existing `user-agent` -
Updated dependencies
[c9b2c87]:- @whatwg-node/[email protected]
November 04, 2025
@whatwg-node/[email protected]
Patch Changes
October 09, 2025
@whatwg-node/[email protected]
Patch Changes
- #2821
93f2932
Thanks @ardatan! - Fix handling multipleset-cookieheaders
correctly withuWebSockets.jsintegration
@whatwg-node/[email protected]
Patch Changes
September 19, 2025
@whatwg-node/[email protected]
Patch Changes
- Updated dependencies
[60d41d6]:- @whatwg-node/[email protected]
@whatwg-node/[email protected]
Minor Changes
August 01, 2025
@whatwg-node/[email protected]
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/[email protected]
@whatwg-node/[email protected]
Patch Changes
- #2656
d2ef55c
Thanks @renovate! - Fix TypeScript issues and bump the version
to get performance improvements for all dependent packages
@whatwg-node/[email protected]
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/[email protected]
July 29, 2025
@whatwg-node/[email protected]
Patch Changes
-
#2643
941e5ce
Thanks @ardatan! - In case of iterator cancellation, ensure the
response stream a.k.a.IncomingMessageis properly closed.const response = await fetch('http://localhost:3000/stream') for await (const chunk of response.body) { console.log('Received chunk:', chunk) if (chunk === 'stop') { console.log('Stopping stream') // In case of `break` which calls the `iterator.return()`, we need to ensure the stream is closed properly. break } }