undici
undici copied to clipboard
An HTTP/1.1 client, written from scratch for Node.js
Bumps [delay](https://github.com/sindresorhus/delay) from 5.0.0 to 6.0.0. Release notes Sourced from delay's releases. v6.0.0 Breaking Require Node.js 16 b2edac7 This package is now pure ESM. Please read this. Removed the delay.reject()...
Sometimes `fetch` ends up with exception: ``` { cause: { name: "SocketError", code: "UND_ERR_SOCKET", socket: { localAddress: "192.168.1.33", localPort: 12345, remoteAddress: "X.Y.Z.W", remotePort: 443, remoteFamily: "IPv4", timeout: undefined, bytesWritten: 651,...
This: https://github.com/nodejs/undici/blob/af9aaea082267040aa4b3989a69abeb5e8913a27/lib/core/util.js#L461-L471 can now be replaced with: https://github.com/nodejs/undici/blob/af9aaea082267040aa4b3989a69abeb5e8913a27/lib/fetch/util.js#L1030 I think sharing more code between fetch and the rest of undici would be nice, especially now that fetch is supported in...
Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 3.1.0 to 3.1.4. Release notes Sourced from actions/dependency-review-action's releases. 3.1.4 What's Changed Fixed a bug with severity filtering when using the allow_ghsas option: actions/dependency-review-action#623. Updates dependencies: Bump...
Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.6.0 to 2.6.1. Release notes Sourced from step-security/harden-runner's releases. v2.6.1 What's Changed Release v2.6.1 by @varunsh-coder and @h0x0er in step-security/harden-runner#356 This release: Improves the job summary markdown...
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.22.5 to 2.22.8. Changelog Sourced from github/codeql-action's changelog. CodeQL Action Changelog See the releases page for the relevant changes to the CodeQL CLI and language packs. [UNRELEASED]...
Bumps [pkgjs/action](https://github.com/pkgjs/action) from 0.1.7 to 0.1.9. Release notes Sourced from pkgjs/action's releases. v0.1.9 What's Changed Update the runtime and dependencies of the private actions by @dominykas in pkgjs/action#69 chore(deps): update...
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.0 to 4.1.1. Release notes Sourced from actions/checkout's releases. v4.1.1 What's Changed Update CODEOWNERS to Launch team by @joshmgross in actions/checkout#1510 Correct link to GitHub Docs by...
Refs: https://github.com/nodejs/undici/pull/2061#issuecomment-1685395999
## Bug Description When `undici` is run inside `worker_threads` it may prevent the worker from terminating and makes the whole process hang. ## Reproducible By This Node script runs `undici`...