-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V16.18.0 proposal #44886
V16.18.0 proposal #44886
Conversation
Review requested:
|
Hey! Sorry for the delay; as you may see, the branch-diff output was quite large. This proposal is failing in the "test-doc" job; due to #44477 not being part of this proposal and #44588 being included. This is the === release test-deprecation-codes ===
Path: doctool/test-deprecation-codes
node:internal/process/esm_loader:97
internalBinding('errors').triggerUncaughtException(
^
AssertionError [ERR_ASSERTION]: Ill-formed or out-of-order deprecation code.
at <anonymous> (/home/juanarbol/GitHub/node/doc/api/deprecations.md:3156:1)
at testHeading (file:///home/juanarbol/GitHub/node/tools/doc/deprecationCodes.mjs:27:12)
at file:///home/juanarbol/GitHub/node/tools/doc/deprecationCodes.mjs:87:5
at ModuleJob.run (node:internal/modules/esm/module_job:193:25)
at async Promise.all (index 0)
at async ESMLoader.import (node:internal/modules/esm/loader:526:24)
at async loadESM (node:internal/process/esm_loader:91:5)
at async handleMainPromise (node:internal/modules/run_main:65:12) {
generatedMessage: false,
code: 'ERR_ASSERTION',
actual: 'DEP0167: ',
expected: 'DEP0166: ',
operator: 'strictEqual'
} I have no idea what to do with this case. It would be fantastic if anyone can give me a picture or something! On the other hand, exceptional thanks to the back-porters! You all were faster than me in preparing the release (@MoLow, impressive); sadly, I postponed this release by three days, and I could not include all of them. |
Notable changes: * doc: deprecate modp1, modp2, and modp5 groups (Tobias Nießen) #44588 * http: throw error on content-length mismatch (sidwebworks) #44378 * lib: add diagnostics channel for process and worker (theanarkh) #44045 * os: add machine method (theanarkh) #44416 * report: expose report public native apis (Chengzhong Wu) #44255 * src: expose environment RequestInterrupt api (Chengzhong Wu) #44362 * stream: add `ReadableByteStream.tee()` (Daeyeon Jeong) #44505 * util: add `maxArrayLength` option to Set and Map (Kohei Ueno) #43576 PR-URL: #44886
6e39a62
to
67ad2ee
Compare
I need to rebase to repair the linter; I will do that tomorrow. The changelog will be the same, it is just a cosmetic change and it will change almost all the commit SHAs :/ |
In the commit for #44588 that adds the DEP0167 deprecation amend
(see the line for DEP0159 Line 3055 in 5fc9d3c
Amending the commit will allow the tests to pass for that commit and avoids the tests being broken in one commit and then fixed up later. |
@juanarbol #44872 is good to be included (it fails CI for the same, unknown to me, reasons as this will). |
Notable changes: * doc: deprecate modp1, modp2, and modp5 groups (Tobias Nießen) #44588 * http: throw error on content-length mismatch (sidwebworks) #44378 * lib: add diagnostics channel for process and worker (theanarkh) #44045 * os: add machine method (theanarkh) #44416 * report: expose report public native apis (Chengzhong Wu) #44255 * src: expose environment RequestInterrupt api (Chengzhong Wu) #44362 * stream: add `ReadableByteStream.tee()` (Daeyeon Jeong) #44505 * util: add `maxArrayLength` option to Set and Map (Kohei Ueno) #43576 PR-URL: #44886
67ad2ee
to
07230b6
Compare
That's what I did! Thank you! That fixes everything! |
|
|
CI: https://ci.nodejs.org/job/node-test-pull-request/47095/ Note: v8-CI is not required; there are no changes in v8 for this release. |
We run all WPT from one subset in the same process using workers. As the number of the tests grow, it can take longer to run some of the subsets, but it's still overall faster than running them in different processes. This patch increases the timeout for WPT to prevent the test from failing because it takes longer to run (even though it would still complete at some point). Refs: nodejs/reliability#371 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> PR-URL: #44574 Backport-PR-URL: #44872
61a4a52
to
071e35b
Compare
Notable changes: assert: add `getCalls` and `reset` to callTracker (Moshe Atlow) #44191 crypto: allow zero-length secret KeyObject (Filip Skokan) #44201 crypto: allow zero-length IKM in HKDF and in webcrypto PBKDF2 (Filip Skokan) #44201 doc: deprecate modp1, modp2, and modp5 groups (Tobias Nießen) #44588 http: make idle http parser count configurable (theanarkh) #43974 http: throw error on content-length mismatch (sidwebworks) #44378 lib: add diagnostics channel for process and worker (theanarkh) #44045 net,tls: pass a valid socket on `tlsClientError` (Daeyeon Jeong) #44021 net: add local family (theanarkh) #43975 report: expose report public native apis (Chengzhong Wu) #44255 src: expose environment RequestInterrupt api (Chengzhong Wu) #44362 stream: add `ReadableByteStream.tee()` (Daeyeon Jeong) #44505 test_runner: add before/after/each hooks (Moshe Atlow) #43730 util: add `maxArrayLength` option to Set and Map (Kohei Ueno) #43576 PR-URL: #44886
Notable changes: assert: add `getCalls` and `reset` to callTracker (Moshe Atlow) #44191 crypto: allow zero-length secret KeyObject (Filip Skokan) #44201 crypto: allow zero-length IKM in HKDF and in webcrypto PBKDF2 (Filip Skokan) #44201 doc: deprecate modp1, modp2, and modp5 groups (Tobias Nießen) #44588 http: make idle http parser count configurable (theanarkh) #43974 http: throw error on content-length mismatch (sidwebworks) #44378 lib: add diagnostics channel for process and worker (theanarkh) #44045 net,tls: pass a valid socket on `tlsClientError` (Daeyeon Jeong) #44021 net: add local family (theanarkh) #43975 report: expose report public native apis (Chengzhong Wu) #44255 src: expose environment RequestInterrupt api (Chengzhong Wu) #44362 stream: add `ReadableByteStream.tee()` (Daeyeon Jeong) #44505 test_runner: add before/after/each hooks (Moshe Atlow) #43730 util: add `maxArrayLength` option to Set and Map (Kohei Ueno) #43576 PR-URL: #44886
071e35b
to
90af1d6
Compare
Notable changes: assert: add `getCalls` and `reset` to callTracker (Moshe Atlow) #44191 crypto: allow zero-length secret KeyObject (Filip Skokan) #44201 crypto: allow zero-length IKM in HKDF and in webcrypto PBKDF2 (Filip Skokan) #44201 doc: deprecate modp1, modp2, and modp5 groups (Tobias Nießen) #44588 http: make idle http parser count configurable (theanarkh) #43974 http: throw error on content-length mismatch (sidwebworks) #44378 lib: add diagnostics channel for process and worker (theanarkh) #44045 net,tls: pass a valid socket on `tlsClientError` (Daeyeon Jeong) #44021 net: add local family (theanarkh) #43975 report: expose report public native apis (Chengzhong Wu) #44255 src: expose environment RequestInterrupt api (Chengzhong Wu) #44362 stream: add `ReadableByteStream.tee()` (Daeyeon Jeong) #44505 test_runner: add before/after/each hooks (Moshe Atlow) #43730 util: add `maxArrayLength` option to Set and Map (Kohei Ueno) #43576 PR-URL: #44886
Notable changes: assert: add `getCalls` and `reset` to callTracker (Moshe Atlow) nodejs/node#44191 crypto: allow zero-length secret KeyObject (Filip Skokan) nodejs/node#44201 crypto: allow zero-length IKM in HKDF and in webcrypto PBKDF2 (Filip Skokan) nodejs/node#44201 doc: deprecate modp1, modp2, and modp5 groups (Tobias Nießen) nodejs/node#44588 http: make idle http parser count configurable (theanarkh) nodejs/node#43974 http: throw error on content-length mismatch (sidwebworks) nodejs/node#44378 lib: add diagnostics channel for process and worker (theanarkh) nodejs/node#44045 net,tls: pass a valid socket on `tlsClientError` (Daeyeon Jeong) nodejs/node#44021 net: add local family (theanarkh) nodejs/node#43975 report: expose report public native apis (Chengzhong Wu) nodejs/node#44255 src: expose environment RequestInterrupt api (Chengzhong Wu) nodejs/node#44362 stream: add `ReadableByteStream.tee()` (Daeyeon Jeong) nodejs/node#44505 test_runner: add before/after/each hooks (Moshe Atlow) nodejs/node#43730 util: add `maxArrayLength` option to Set and Map (Kohei Ueno) nodejs/node#43576 PR-URL: nodejs/node#44886
Notable changes: assert: add `getCalls` and `reset` to callTracker (Moshe Atlow) nodejs/node#44191 crypto: allow zero-length secret KeyObject (Filip Skokan) nodejs/node#44201 crypto: allow zero-length IKM in HKDF and in webcrypto PBKDF2 (Filip Skokan) nodejs/node#44201 doc: deprecate modp1, modp2, and modp5 groups (Tobias Nießen) nodejs/node#44588 http: make idle http parser count configurable (theanarkh) nodejs/node#43974 http: throw error on content-length mismatch (sidwebworks) nodejs/node#44378 lib: add diagnostics channel for process and worker (theanarkh) nodejs/node#44045 net,tls: pass a valid socket on `tlsClientError` (Daeyeon Jeong) nodejs/node#44021 net: add local family (theanarkh) nodejs/node#43975 report: expose report public native apis (Chengzhong Wu) nodejs/node#44255 src: expose environment RequestInterrupt api (Chengzhong Wu) nodejs/node#44362 stream: add `ReadableByteStream.tee()` (Daeyeon Jeong) nodejs/node#44505 test_runner: add before/after/each hooks (Moshe Atlow) nodejs/node#43730 util: add `maxArrayLength` option to Set and Map (Kohei Ueno) nodejs/node#43576 PR-URL: nodejs/node#44886
2022-10-12, Version 16.18.0 'Gallium' (LTS), @juanarbol
Notable changes
1cc050eaa8
] - (SEMVER-MINOR) assert: addgetCalls
andreset
to callTracker (Moshe Atlow) #44191e5c9975f11
] - (SEMVER-MINOR) crypto: allow zero-length secret KeyObject (Filip Skokan) #44201317cd051ce
] - (SEMVER-MINOR) crypto: allow zero-length IKM in HKDF and in webcrypto PBKDF2 (Filip Skokan) #44201f80bdc5ef3
] - (SEMVER-MINOR) doc: deprecate modp1, modp2, and modp5 groups (Tobias Nießen) #445888398e98b1b
] - (SEMVER-MINOR) http: make idle http parser count configurable (theanarkh) #439742cd2f56962
] - (SEMVER-MINOR) http: throw error on content-length mismatch (sidwebworks) #443786be761e8a9
] - (SEMVER-MINOR) lib: add diagnostics channel for process and worker (theanarkh) #440451400796cef
] - (SEMVER-MINOR) net,tls: pass a valid socket ontlsClientError
(Daeyeon Jeong) #44021092239a7f1
] - (SEMVER-MINOR) net: add local family (theanarkh) #43975381e11e18e
] - (SEMVER-MINOR) report: expose report public native apis (Chengzhong Wu) #442552ba547aa5b
] - (SEMVER-MINOR) src: expose environment RequestInterrupt api (Chengzhong Wu) #443626ed3367155
] - (SEMVER-MINOR) stream: addReadableByteStream.tee()
(Daeyeon Jeong) #445050fbedac6ce
] - (SEMVER-MINOR) test_runner: add before/after/each hooks (Moshe Atlow) #4373070563b53c5
] - (SEMVER-MINOR) util: addmaxArrayLength
option to Set and Map (Kohei Ueno) #43576Commits
1cc050eaa8
] - (SEMVER-MINOR) assert: addgetCalls
andreset
to callTracker (Moshe Atlow) #441912e87cdd1e6
] - benchmark: fix startup benchmark (Evan Lucas) #4472729c0f9ef30
] - benchmark: add stream destroy benchmark (SindreXie) #44533f01bb58c1e
] - bootstrap: update comments in bootstrap/node.js (Joyee Cheung) #44726db151e182f
] - bootstrap: stop delaying instantiation of maps in per-context scripts (Darshan Sen) #42934f700074c57
] - buffer: fixatob
input validation (Austin Kelleher) #42662e10095a759
] - build: update timezone-update.yml (Alex) #44717bec2ede687
] - build: remove redundant entry in crypto (Jiawen Geng) #446047b3a2c3353
] - build: rewritten the Android build system (BuShe Pie) #44207e96bb14942
] - build: add --libdir flag to configure (Stephen Gallagher) #443612a4491b34d
] - build: added NINJA env to customize ninja binary (Jeff Dickey) #44293aaad7a64b4
] - build: enable pointer authentication for branch protection on arm64 (Jeremiah Gowdy) #43200041bb54143
] - build: add workflow to label flaky-test platform (Rafael Gonzaga) #4404258d85c1109
] - build: optimized and fixed building configuration to Android (BuShe) #440165cd8b7bc8b
] - build: allow test-internet on forks if not scheduled (Rich Trott) #440739698be9347
] - build: skip test-internet run on forks (Rich Trott) #4405425e6f48e4a
] - child_process: remove lookup of undefined property (Colin Ihrig) #44766a3bdd07321
] - cluster: fix cluster rr distribute error (theanarkh) #44202317cd051ce
] - (SEMVER-MINOR) crypto: allow zero-length IKM in HKDF and in webcrypto PBKDF2 (Filip Skokan) #44201e5c9975f11
] - (SEMVER-MINOR) crypto: allow zero-length secret KeyObject (Filip Skokan) #442017e705d8d74
] - crypto: fix webcrypto deriveBits validations (Filip Skokan) #441737ad2a268b9
] - crypto: fix webcrypto EC key namedCurve validation errors (Filip Skokan) #441722c938d73ff
] - crypto: fix webcrypto operation errors to be OperationError (Filip Skokan) #44171a6e2cb40a6
] - crypto: fix webcrypto generateKey() AES key length validation error (Filip Skokan) #441707e07cce24b
] - crypto: use EVP_PKEY_CTX_set_dsa_paramgen_q_bits when available (David Benjamin) #445611fc6394741
] - crypto: restrict PBKDF2 args to signed int (Tobias Nießen) #445759a52ee7577
] - crypto: handle invalid prepareAsymmetricKey JWK inputs (Filip Skokan) #444757100baee40
] - crypto: use actual option name in error message (Tobias Nießen) #44455579e066c3a
] - crypto: add digest name to INVALID_DIGEST errors (Tobias Nießen) #44468566d80f622
] - crypto: improve RSA-PSS digest error messages (Tobias Nießen) #44307f717c1e06a
] - debugger: decrease timeout used to wait for the port to be free (Joyee Cheung) #443590f2fcaf771
] - deps: update to ngtcp2 0.8.1 and nghttp3 0.7.0 (Tobias Nießen) #446221a8aada69d
] - deps: update corepack to 0.14.1 (Node.js GitHub Bot) #44704e4f18b4f34
] - deps: update ngtcp2 update instructions (Tobias Nießen) #4461921b5ab1494
] - deps: upgrade npm to 8.19.2 (npm team) #44632916b319e7a
] - deps: update to uvwasi 0.0.13 (Colin Ihrig) #4452467cbbcc902
] - deps: update corepack to 0.14.0 (Node.js GitHub Bot) #445099f14dc1a8f
] - deps: update Acorn to v8.8.0 (Michaël Zasso) #444371811a6aaa8
] - deps: update icu tzdata to 2022b (Matías Zúñiga) #442830c4953cbd1
] - deps: update undici to 5.9.1 (Node.js GitHub Bot) #443198a921fea74
] - deps: upgrade npm to 8.19.1 (npm team) #44486763a63c14b
] - deps: update corepack to 0.13.0 (Node.js GitHub Bot) #44318fdb699c84a
] - deps: upgrade npm to 8.18.0 (npm team) #442632a44872f96
] - deps: update corepack to 0.12.3 (Node.js GitHub Bot) #4422948967e4b34
] - deps: upgrade npm to 8.17.0 (npm team) #442050484122f71
] - deps: update undici to 5.8.2 (Node.js GitHub Bot) #44187e404ac7eed
] - deps: update undici to 5.8.1 (Node.js GitHub Bot) #441589a5ee5e9e3
] - deps: update corepack to 0.12.2 (Node.js GitHub Bot) #441593657cb277b
] - deps: remove unnecessary file (Brian White) #44133d66a807596
] - deps: upgrade npm to 8.16.0 (npm team) #44119ec998be61c
] - deps: upgrade npm to 8.15.1 (npm team) #44013e9e856ae95
] - deps: upgrade base64 to dc6a41ce36e (Brian White) #440328ea9a71b15
] - deps,src: use SIMD for normal base64 encoding (Brian White) #39775969a12be4b
] - doc: remove "currently" and comma splice from child_process.md (Rich Trott) #447895e4a2e94a1
] - doc: mention git node backport (RafaelGSS) #44764618c9c8260
] - doc: ensure to revert node_version changes (Rafael Gonzaga) #44760e0fe11c189
] - doc: fix description fornapi_get_cb_info()
inn-api.md
(Daeyeon Jeong) #44761895719da65
] - doc: fix v16.17.1 security release changelog (Ruy Adorno) #44759fe832a0647
] - doc: update the deprecation for exit code to clarify its scope (Daeyeon Jeong) #447143872abd9a6
] - doc: update guidance for adding new modules (Michael Dawson) #44576f381a1e86a
] - doc: add registry number for Electron 22 (Keeley Hammond) #447488d3cb6c08a
] - doc: include code examples for webstreams consumers (Lucas Santos) #443879e83c00e0b
] - doc: mention where to push security commits (RafaelGSS) #44691bc9f8d24ce
] - doc: remove extra space on threadpool usage (Connor Burton) #447343e38ba53cc
] - doc: make legacy banner slightly less bright (Rich Trott) #446650f88588f52
] - doc: improve building doc for Windows Powershell (Brian Muenzenmeyer) #446255ee0127540
] - doc: maintain only one list of MODP groups (Tobias Nießen) #446446881ecb0e2
] - doc: add legendecas to TSC list (Michael Dawson) #446623614f5ace3
] - doc: remove comma in README.md (Taha-Chaudhry) #44599c9af43616c
] - doc: use serial comma in report docs (Daeyeon Jeong) #44608ff9ef61646
] - doc: use serial comma in stream docs (Daeyeon Jeong) #4460990eaae3ef1
] - doc: remove empty line in YAML block (Claudio Wunder) #44617f80bdc5ef3
] - (SEMVER-MINOR) doc: deprecate modp1, modp2, and modp5 groups (Tobias Nießen) #445889fac6dd1c1
] - doc: remove old OpenSSL ENGINE constants (Tobias Nießen) #4458953543c6d81
] - doc: fix heading levels for test runner hooks (Fabian Meyer) #446032084ad61a7
] - doc: fix errors in http.md (Luigi Pinca) #44587cc55e84ddc
] - doc: fix vm.Script createCachedData example (Chengzhong Wu) #444878187f03834
] - doc: mention how to get commit release (Rafael Gonzaga) #44572d068978933
] - doc: fix link inprocess.md
(Antoine du Hamel) #445940747facb63
] - doc: do not use weak MODP group in example (Tobias Nießen) #44585e26d95ef9a
] - doc: remove ebpf from supported tooling list (Rafael Gonzaga) #445499d24c7a8c7
] - doc: emphasize that createCipher is never secure (Tobias Nießen) #445386d881b8611
] - doc: document attribute Script.cachedDataRejected (Chengzhong Wu) #44451d846e5bac5
] - doc: move policy docs to the permissions scope (Rafael Gonzaga) #442225c721a33c3
] - doc: add performance note to--enable-source-maps
docs (Saurabh Daware) #438171998bc80b5
] - doc: fix release guide example consistency (Ruy Adorno) #443857b691729b1
] - doc: note on release guide to updatemain
branch (Ruy Adorno) #443847ec097fa99
] - doc: mention cherry-pick edge-case on release (RafaelGSS) #444084a4025181c
] - doc: fix spacing issue in--build-snapshot
help text (Shohei YOSHIDA) #44435a5906a09dc
] - doc: apply scroll-margin-top to h2, h3 elements (metonym) #444140e99139df4
] - doc: use serial comma in addons docs (Tobias Nießen) #444828ea3e6f839
] - doc: do not use "Returns:" for crypto.constants (Tobias Nießen) #44481a1dbe4bc79
] - doc: add history for net.createServer() options (Luigi Pinca) #44326eb90d650d4
] - doc: fix typo in test runner code examples (Moshe Atlow) #4435117c5b978a5
] - doc: add daeyeon to collaborators (Daeyeon Jeong) #44355c1458063ee
] - doc: fix style of n-api.md (theanarkh) #44377cf60c6bc74
] - doc: add missing imports in events sample code (Brian Evans) #4433789e5ac9676
] - doc: add missing parenthesis in TLSSocket section (Tobias Nießen) #445125ac344b2a2
] - doc: fix optionality of callback arg of checkPrime (Tobias Nießen) #4431187cc487e28
] - doc: fix typo (Hana) #442625978eb1ae8
] - doc: add TypeScript execution requirements (Michael Dawson) #4403042948364e2
] - doc: add cola119 to collaborators (cola119) #442486196bcedd0
] - doc: improved building doc for Android (BuShe) #44166afe6c87bb5
] - doc: add MoLow to collaborators (Moshe Atlow) #4421482ff3dabc5
] - doc: update tags in adding-new-napi-api.md (Chengzhong Wu) #4419016d6d45ee8
] - doc: fix typo in diagnostics_channel (Evan Lucas) #44199ed1d0c9203
] - doc: add Retry CI in collaborator guide (Livia Medeiros) #441301022ece43f
] - doc: remove unused code in call tracker example (Colin Ihrig) #441270c95d45410
] - doc: add theanarkh to collaborators (theanarkh) #4413197ad1a0f03
] - doc: clarify tls.tlsSocket.getCipher().version (Adam Majer) #440869e10ee70a3
] - doc: update repository list in onboarding doc (Rich Trott) #440893171d55ef8
] - doc: add ErickWendel to collaborators (Erick Wendel) #44088c9c2114a75
] - doc: update collaborator email (Ruy Adorno) #440441f9246a24f
] - doc: copyedittest.md
(Antoine du Hamel) #4406176e9cf2a46
] - doc: add kvakil to triagers (Keyhan Vakil) #439965a34c575ad
] - doc: clarify part of onboarding guide regarding adding to teams (Darshan Sen) #440245d3b8ab2d6
] - doc: fix code examples incrypto.md
(Antoine du Hamel) #44053e59c095b23
] - doc: claim ABI version for Electron 21 (Keeley Hammond) #4403488b0d406ac
] - doc: remove old reference from crypto/README.md (Tobias Nießen) #4401258c97216ee
] - doc: add missing env vars to man page (cola119) #43492c07159215d
] - doc: list supported MODP groups explicitly (Tobias Nießen) #43986be2feec1f0
] - doc: fix typo in packages.md (Dominic Saadi) #440059f7a728168
] - doc: fix typos intest.md
(Antoine du Hamel) #4399721a29d4584
] - doc: add missing test runner option (Moshe Atlow) #439896758c63eba
] - doc,crypto: cleanup removed pbkdf2 behaviours (Filip Skokan) #44733891c4e742f
] - doc,inspector: document changes of inspector.close (Chengzhong Wu) #446284308d95d1d
] - doc,report: document special filenames (Chengzhong Wu) #4425789c837a48d
] - doc,worker: document resourceLimits overrides (Keyhan Vakil) #439928f6bd5a402
] - doc,worker: deprecate--trace-atomics-wait
(Keyhan Vakil) #440939593c37984
] - errors: refactor to use optional chaining (SindreXie) #441847cead5968e
] - esm: fix duplicated test (Geoffrey Booth) #447795d33dfd787
] - esm: do not bind loader hook functions (Antoine du Hamel) #44122ec7bf32350
] - esm: move package config helpers (Geoffrey Booth) #4396742a91e36dd
] - esm,loader: tidy ESMLoader internals (Jacob Smith) #44701d4e9384ccb
] - events: use bitset to save memory (Basit Chonka) #4370014ec52b949
] - fs: don't hard code name in validatePosition() (Colin Ihrig) #4476783cf979a0d
] - fs: fix typo in mkdir example (SergeyTsukanov) #44791bbbb4460ee
] - fs: remove unused option infs.fstatSync()
(Livia Medeiros) #44613bf217f8029
] - fs: add encoding parameter to benchmarks (Yagiz Nizipli) #442781308e68a16
] - gyp: libnode for ios app embedding (chexiongsheng) #442102cee039070
] - http: disable chunked encoding when OBS fold is used (Paolo Insogna) #3412cd2f56962
] - (SEMVER-MINOR) http: throw error on content-length mismatch (sidwebworks) #443788398e98b1b
] - (SEMVER-MINOR) http: make idle http parser count configurable (theanarkh) #43974fa6183fc7e
] - http: add max for http keepalive (theanarkh) #442172f87ba4e03
] - http: trace http request / response (theanarkh) #441025f406a3a53
] - http: reuse socket only when it is drained (ywave620) #439024e49d5d1b4
] - inspector: expose inspector.close on workers (Chengzhong Wu) #44489c736927b0b
] - inspector: prevent integer overflow in open() (Tobias Nießen) #44367a021f1974a
] - lib: fix reference leak (falsandtru) #444996be761e8a9
] - (SEMVER-MINOR) lib: add diagnostics channel for process and worker (theanarkh) #44045ac8d2de3b0
] - lib: resetRegExp
statics before running user code (Antoine du Hamel) #437414968ebfbe1
] - lib: refactorvalidateInt32
andvalidateUint32
(mawaregetsuka) #43071acff743113
] - lib: makevalidateObject
less affected by prototype tampering (Antoine du Hamel) #4292959be5f89ca
] - lib: use safePromise
alternatives when available (Antoine du Hamel) #434769dad4b0d11
] - lib: add diagnostics channel and perf hooks detail (Danielle Adams) #43984a99e2368ea
] - lib: refactor to avoid prototype pollution (Antoine du Hamel) #43474121c54718d
] - lib: fix diagnostics channel (theanarkh) #44154594d9436c3
] - lib: pass env variables to child process on z/OS (alexcfyung) #422559c656c89fc
] - lib: add missing env vars to --help (cola119) #434923aaa4109a0
] - lib: addPromise
methods toavoid-prototype-pollution
lint rule (Antoine du Hamel) #43849debf7301aa
] - lib,test: fix bug in InternalSocketAddress (Tobias Nießen) #44618c1d1ed5ae4
] - meta: update AUTHORS (Node.js GitHub Bot) #44777fe91711ed5
] - meta: add mailmap entry for dnlup (Rich Trott) #44716b9deb1e84d
] - meta: update AUTHORS (Node.js GitHub Bot) #447053564da1c94
] - meta: move dnlup to emeriti (dnlup) #44667af5d49f186
] - meta: update test_runner in label-pr-config (Shrujal Shah) #446157ac9bafd10
] - meta: update AUTHORS (Node.js GitHub Bot) #44591aa68a31804
] - meta: update AUTHORS (Node.js GitHub Bot) #44511edb0851539
] - meta: update AUTHORS (Node.js GitHub Bot) #444224bdd4a3641
] - meta: update AUTHORS (Node.js GitHub Bot) #44321dc5478ad12
] - meta: updateweb streams
in label-pr-config (Daeyeon Jeong) #44235d535190086
] - meta: update AUTHORS (Node.js GitHub Bot) #4423124e3ad069d
] - meta: update AUTHORS (Node.js GitHub Bot) #441611924d897ad
] - meta: add codeowner for src/node_snapshot* (Chengzhong Wu) #441131988be9acf
] - meta: update AUTHORS (Node.js GitHub Bot) #44065261e5acc6b
] - meta: shorten PowerShell snippet for bug-report template (NicoNekoru) #440111bb394e691
] - module: open stat/readPackage to mutations (Maël Nison) #44537b665171911
] - module: protect against prototype mutation (Antoine du Hamel) #44007092239a7f1
] - (SEMVER-MINOR) net: add local family (theanarkh) #439754e0710c3a3
] - net: remove unused callback (theanarkh) #442041400796cef
] - (SEMVER-MINOR) net,tls: pass a valid socket ontlsClientError
(Daeyeon Jeong) #44021adae66cbd4
] - node-api: add deprecation code of uncaught exception (Chengzhong Wu) #44624f38987edcc
] - node-api: avoid calling virtual methods in base's dtor (Chengzhong Wu) #444245b5d95d312
] - node-api: cleanup redundant static modifiers (Chengzhong Wu) #443018f3e8bb1fd
] - (SEMVER-MINOR) os: add machine method (theanarkh) #444163cb28bdde0
] - path: change basename() argument from ext to suffix (Rich Trott) #447747c5ce59dba
] - perf_hooks: fix gc elapsed time (theanarkh) #440580e2c2064bb
] - report: get stack trace with cross origin contexts (Chengzhong Wu) #443985355a46840
] - report: fix missing section javascriptHeap on OOMError (Chengzhong Wu) #44398381e11e18e
] - (SEMVER-MINOR) report: expose report public native apis (Chengzhong Wu) #4425530cfe0a156
] - report: print javascript stack on fatal error (Chengzhong Wu) #44242779761d914
] - report: add queue info for udp (theanarkh) #44345ff34d48d70
] - report: skip report if uncaught exception is handled (Chengzhong Wu) #442083e8569cfbc
] - src: remove ParseIP() in cares_wrap.cc (Tobias Nießen) #44771916f2c5783
] - src: avoid using v8 on Isolate termination (Santiago Gimeno) #446694f056b57e9
] - src: remove <unistd.h> from node_os.cc (Tobias Nießen) #4466824172ca6fe
] - src: avoid copy when creating Blob (Tobias Nießen) #44616eda1f4531a
] - src: make ReqWrap weak (Rafael Gonzaga) #44074ea2957fe77
] - src: make NearHeapLimitCallback() more robust (Joyee Cheung) #44581eaf2ffc23a
] - src: dump isolate stats when process exits (daomingq) #4453449cf3459d1
] - src: rename misleading arg in ClientHelloParser (Tobias Nießen) #445002ba547aa5b
] - (SEMVER-MINOR) src: expose environment RequestInterrupt api (Chengzhong Wu) #4436270662f4058
] - src: fix cppgc incompatibility in v8 (Shelley Vohr) #4352191ef427d2d
] - src: nest namespace report in namespace node (Chengzhong Wu) #44069e7d30b4b49
] - src: use a typed array internally for process._exiting (Darshan Sen) #43883d76e7e4e84
] - src: improve error handling in CloneSSLCerts (Tobias Nießen) #44410cae9c5d5c3
] - src: fix incorrect comments in crypto (Tobias Nießen) #44470c0875d1f00
] - src: avoid casting std::trunc(... / ...) to size_t (Tobias Nießen) #444678f3ed25e08
] - src: add error handling touv_uptime
call (Juan José Arboleda) #44386c7713f19de
] - src: remove base64_select_table and base64_table (Tobias Nießen) #44425a3dc7e18ed
] - src: fix uv_err_name memory leak (theanarkh) #44421a711080061
] - src: make Endianness an enum class (Tobias Nießen) #44411aa80826651
] - src: fix ssize_t error from nghttp2.h (Darshan Sen) #443936b8ed279fd
] - src: trace fs async api (theanarkh) #44057dd08d6cc57
] - src: simplify and optimize GetOpenSSLVersion() (Tobias Nießen) #443954c27d77e5c
] - src: simplify ECDH::GetCurves() (Tobias Nießen) #44309a6ce1de833
] - src: remove KeyObjectData::symmetric_key_len_ (Tobias Nießen) #44346f0d841fd7d
] - src: fix multiple format string bugs (Tobias Nießen) #443142f3502f345
] - src: make minor improvements to SecureBuffer (Tobias Nießen) #44302525fbfd122
] - src: use imported namespaces innode_contextify.cc
(Juan José) #44299ac2edbcd8c
] - src: refactor to avoid using a moved object (Tobias Nießen) #44269b186684b22
] - src: extract common context embedder tag checks (Chengzhong Wu) #442588195c8108c
] - src: avoid copying BaseObjectPtrs in loop (Tobias Nießen) #44270c045faf1ea
] - src: fix --heapsnapshot-near-heap-limit error hint (Chengzhong Wu) #442164ee8ac3b6b
] - src: prevent copying ArrayBufferViewContents (Keyhan Vakil) #440918f5fd2f06c
] - src: fix to use replacement character (Kohei Ueno) #4399978c846265f
] - src: fix typo in src/README.md (Anna Henningsen) #44009ec1645b1f0
] - src: fix regression that a source marker is lost (cola119) #430860c01922ff7
] - src: remove dead code in base64_encode (Tobias Nießen) #4397928911e21b6
] - src,buffer: remove unused chars_written parameter (Keyhan Vakil) #4409237010cb862
] - src,fs: refactor duplicated code in fs.readdir (Daeyeon Jeong) #432041635503704
] - src,test: fix typos (SADIK KUZU) #44110ffb1c85784
] - stream: refactor use es2020 statement (SindreXie) #445336ed3367155
] - (SEMVER-MINOR) stream: addReadableByteStream.tee()
(Daeyeon Jeong) #4450514c7f4a290
] - test: update WPT runner (Filip Skokan) #434554368acd01a
] - test: don't clobber RegExp.$_ on startup (Ben Noordhuis) #448645854abc176
] - test: use async/await in test-debugger-auto-resume (samyuktaprabhu) #44675a7666abe31
] - test: migrated from Promise chains to Async/Await (Rathi N Das) #446745bed2d1f46
] - test: change promises to async/await in test-debugger-backtrace.js (Juliet Zhang) #44677f630881f9b
] - test: use async/await in test-debugger-sb-before-load (Hope Olaidé) #44697fada3a2ce7
] - test: add extra tests for basename with ext option (Connor Burton) #447729386c8581c
] - test: refactor to async/await (Divya Mohan) #44694af2aa5be45
] - test: modify test-debugger-custom-port.js to use async-await (Priya Shastri) #44680e9e130925c
] - test: update test-debugger-breakpoint-exists.js to use async/await (Archana Kamath) #44682510365a036
] - test: use async/await in test-debugger-preserve-breaks (poorvitusam) #446962baa3c3ce5
] - test: use async/await in test-debugger-profile (surbhirjain) #44684ffc4fadf5e
] - test: change the promises to async/await in test-debugger-exec-scope.js (Ankita Khiratkar) #446858b8d18ab4e
] - test: verify napi_remove_wrap with napi_delete_reference (Chengzhong Wu) #44754863361928e
] - test: change promises to async/await (Madhulika Sharma) #446832e3aa39c94
] - test: use async/await in test-debugger-invalid-args (Nupur Chauhan) #44678095cb7eba1
] - test: update test-debugger-low-level to use await/async (Meghana Ramesh) #446882752d7c22a
] - test: check that sysconf returns a positive value (Tobias Nießen) #44666fc1edaf0d7
] - test: change promise to async/await in debugger-watcher (“Pooja) #44687aae8ff6ace
] - test: fix test-performance-measure (smitley) #44637f13e06ab85
] - test: improve lib/readline.js coverage (MURAKAMI Masahiko) #42686a46dd370d7
] - test: fixtest-repl
not validating leaked globals properly (Antoine du Hamel) #4464031f809acca
] - test: ignore stale process cleanup failures on Windows (Joyee Cheung) #44480370b0ec5a1
] - test: use python3 instead of python (Luigi Pinca) #4454588dfd50079
] - test: fix DebugSymbolsTest.ReqWrapList on PPC64LE (Daniel Bevenius) #44341371804752a
] - test: add more cases for parse-encoding (Tony Gorez) #444270c76e01876
] - test: split report OOM tests (Joyee Cheung) #443895af3a5d37e
] - test: avoid race in file write stream handle tests (Joyee Cheung) #44380edb3335ff2
] - test: deflake child process exec timeout tests (Joyee Cheung) #44390c3429ab2e3
] - test: make the vm timeout escape tests more lenient (Joyee Cheung) #44433b5901a0c26
] - test: split heap prof tests (Joyee Cheung) #44388a139f5d4e0
] - test: fix multiple incorrect mustNotCall() uses (Tobias Nießen) #440226990833a4c
] - test: raise sleep times in child process tests (Joyee Cheung) #44375b2b9de98a2
] - test: remove duplicate test (Luigi Pinca) #44313c397bb93ad
] - test: make tmpdir.js importable from esm (Geoffrey Booth) #4432203b8cb8c4c
] - test: deflake test-diagnostics-channel-net (Keyhan Vakil) #4414473cd9dd860
] - test: add coverage for invalid RSA-PSS digests (Tobias Nießen) #44271003ab59fcc
] - test: move "errors" test to "parallel" (Michaël Zasso) #442334485adeaeb
] - test: mark connection leak test flaky on IBM i (Richard Lau) #442158725a87fd9
] - test: usemustSucceed
instead ofmustCall
withassert.ifError
(MURAKAMI Masahiko) #4419641ea42bd82
] - test: update hr-time web platform tests (Yagiz Nizipli) #44100dd4db8e724
] - test: update console web platform tests (Yagiz Nizipli) #44100940e31784e
] - test: move tests with many workers to sequential (Keyhan Vakil) #4413903c0819dd9
] - test: deflake gc-http-client tests by restricting number of requests (Nick Sia) #441463d0a3fe246
] - test: move test-vm-break-on-sigint to sequential (Keyhan Vakil) #441404cfa9bac90
] - test: remove test-http-client-response-timeout flaky designation (Luigi Pinca) #441452f036c857e
] - test: s390x z15 accelerated zlib fixes (Adam Majer) #441175ed4f431cf
] - test: tune down parallelism for some flaky tests (Keyhan Vakil) #44090ec7b932945
] - test: fixinternet/test-inspector-help-page
(Daeyeon Jeong) #44025dff6615bbe
] - test: remove test-gc-http-client-timeout from flaky list (Feng Yu) #439716c3228361b
] - test: reduce loop times for preventing test from timeout (theanarkh) #43981a33daadc41
] - test: fix test-cluster-concurrent-disconnect (Daeyeon Jeong) #43961e009a35d6e
] - test: change misleading variable name (Tobias Nießen) #4399072fb0133f5
] - test: usecommon.mustNotMutateObjectDeep()
in fs tests (LiviaMedeiros) #438194ebb3ef508
] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #442239a469bef2c
] - test_runner: include stack of uncaught exceptions (Moshe Atlow) #4461456dc4b3848
] - test_runner: fix test runner hooks failure stack (Moshe Atlow) #44284cefb0586d8
] - test_runner: refactor to use more primordials (Antoine du Hamel) #4406264b07a9d14
] - test_runner: verbous error when entire test tree is canceled (Moshe Atlow) #44060bfdee2597a
] - test_runner: empty pending tests queue post running (Moshe Atlow) #440590fbedac6ce
] - (SEMVER-MINOR) test_runner: add before/after/each hooks (Moshe Atlow) #437306ad7a86af6
] - test_runner: fix top leveldescribe
queuing (Moshe Atlow) #43998a2881b7a85
] - test_runner: graceful termination on--test
only (Moshe Atlow) #4397772a8faa087
] - test_runner: validateconcurrency
option (Antoine du Hamel) #439768118fc2980
] - tls: fix out-of-bounds read in ClientHelloParser (Tobias Nießen) #44580b53ea08d7b
] - tls: remove SecureContext setFreeListLength (Tobias Nießen) #44300c35a0713b0
] - tls: use OpenSSL constant for client random size (Tobias Nießen) #44305e4b4b370a1
] - tls: use logical OR operator (Mohammed Keyvanzadeh) #4423618e1766346
] - tools: increase timeout of running WPT (Joyee Cheung) #44574006d7f1f2a
] - tools: refactor deprecated format in no-unescaped-regexp-dot (Madhuri) #44763c6289d632a
] - tools: update eslint-check.js to object style (andiemontoyeah) #44706b06a78e85d
] - tools: update eslint to 8.24.0 (Node.js GitHub Bot) #44778ce3397223b
] - tools: update lint-md-dependencies to rollup@2.79.1 (Node.js GitHub Bot) #447761079c8099d
] - tools: add update-llhttp.sh (Paolo Insogna) #446520b3f49c749
] - tools: fix typo in update-nghttp2.sh (Luigi Pinca) #44664d190e716ad
] - tools: add timezone update workflow (Lenvin Gonsalves) #43988b6c232f288
] - tools: update eslint to 8.23.1 (Node.js GitHub Bot) #446392c0d9ffb65
] - tools: update lint-md-dependencies to @rollup/plugin-node-resolve@14.1.0 (Node.js GitHub Bot) #44638f05ce2bff5
] - tools: update lint-md-dependencies to @rollup/plugin-node-resolve@14.0.1 (Node.js GitHub Bot) #44590657fa792f4
] - tools: increase timeout of running WPT (Joyee Cheung) #44574602ecaa42f
] - tools: fix shebang to use python3 by default (Himself65) #44531bad8ecc27f
] - tools: update lint-md-dependencies to rollup@2.79.0 (Node.js GitHub Bot) #44510255023f80a
] - tools: don't use f-strings in test.py (Santiago Gimeno) #44407b3629daad7
] - tools: update doc to unist-util-visit@4.1.1 (Node.js GitHub Bot) #443702891d9fd0a
] - tools: update eslint to 8.23.0 (Node.js GitHub Bot) #444190bf57df711
] - tools: update lint-md-dependencies to rollup@2.78.1 (Node.js GitHub Bot) #443209391ebdc0d
] - tools: update ESLint to 8.22.0 (Luigi Pinca) #44243df49c426f6
] - tools: update lint-md-dependencies to rollup@2.78.0 (Node.js GitHub Bot) #44244e42227ad3e
] - tools: update lint-md-dependencies to rollup@2.77.3 (Node.js GitHub Bot) #442301b6d294e78
] - tools: update eslint to 8.21.0 (Node.js GitHub Bot) #44162f3dcaaf087
] - tools: update lint-md-dependencies to @rollup/plugin-commonjs@22.0.2 (Node.js GitHub Bot) #441605d5971cda7
] - tools: update undici CPE in vuln checking script (Facundo Tuesca) #44128606b0a08a8
] - tools: update lint-md-dependencies to rollup@2.77.2 (Node.js GitHub Bot) #440648a8c7cf6b5
] - tools: add verbose flag to find-inactive-collaborators (Rich Trott) #43964cb6b57f777
] - trace_events: add example (theanarkh) #43253be863b7a97
] - tty: fix TypeError when stream is closed (Antoine du Hamel) #43803a08cdead0b
] - typings: add JSDoc forinternal/validators
(Yagiz Nizipli) #44181a6a655de35
] - util: increase robustness with primordials (Jordan Harband) #4121270563b53c5
] - (SEMVER-MINOR) util: addmaxArrayLength
option to Set and Map (Kohei Ueno) #435760beedb7f1c
] - v8: add setHeapSnapshotNearHeapLimit (theanarkh) #444208d259e6086
] - win: fix fs.realpath.native for long paths (StefanStojanovic) #44536