Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
deps: update undici to 4.16.0
PR-URL: #42414 Backport-PR-URL: #42727 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Rich Trott <rtrott@gmail.com>
- Loading branch information
Showing
with
124 additions
and 77 deletions.
- +2 −0 deps/undici/src/docs/api/Dispatcher.md
- +1 −1 deps/undici/src/lib/balanced-pool.js
- +1 −1 deps/undici/src/lib/client.js
- +1 −1 deps/undici/src/lib/core/connect.js
- +3 −3 deps/undici/src/lib/core/util.js
- +7 −11 deps/undici/src/lib/fetch/dataURL.js
- +2 −0 deps/undici/src/lib/fetch/file.js
- +7 −7 deps/undici/src/lib/fetch/index.js
- +1 −0 deps/undici/src/lib/fetch/request.js
- +2 −3 deps/undici/src/lib/fetch/util.js
- BIN deps/undici/src/lib/llhttp/llhttp.wasm
- +1 −1 deps/undici/src/lib/llhttp/llhttp.wasm.js
- BIN deps/undici/src/lib/llhttp/llhttp_simd.wasm
- +1 −1 deps/undici/src/lib/llhttp/llhttp_simd.wasm.js
- +11 −2 deps/undici/src/lib/mock/mock-agent.js
- +21 −14 deps/undici/src/lib/mock/mock-interceptor.js
- +14 −4 deps/undici/src/lib/mock/mock-utils.js
- +2 −2 deps/undici/src/lib/pool-base.js
- +7 −7 deps/undici/src/lib/pool-stats.js
- +2 −2 deps/undici/src/lib/proxy-agent.js
- +5 −3 deps/undici/src/package.json
- +1 −1 deps/undici/src/types/mock-interceptor.d.ts
- +32 −13 deps/undici/undici.js
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -20,7 +20,7 @@ const kFactory = Symbol('factory') | ||
| const kOptions = Symbol('options') | ||
|
|
||
| function defaultFactory (origin, opts) { | ||
| return new Pool(origin, opts) | ||
| } | ||
|
|
||
| class BalancedPool extends PoolBase { | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -8,6 +8,7 @@ const util = require('../core/util') | ||
| const { | ||
| isValidHTTPToken, | ||
| EnvironmentSettingsObject, | ||
| sameOrigin, | ||
| toUSVString | ||
| } = require('./util') | ||
| const { | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.