-
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
v13.11.0 proposal #32185
v13.11.0 proposal #32185
Conversation
Align with the MaybeLocal<> API contract PR-URL: #31946 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
Remove convenience function for internal assertions. It is only used once. Signed-off-by: Rich Trott <rtrott@gmail.com> PR-URL: #32057 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
Cover an previously uncovered exception possible in the internal start function for FSWatcher. Signed-off-by: Rich Trott <rtrott@gmail.com> PR-URL: #32057 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
Make the cipher/decipher/hash/hmac update() methods ignore the input encoding when the input is a buffer. This is the documented behavior but some inputs were rejected, notably when the specified encoding is 'hex' and the buffer has an odd length (because a _string_ with an odd length is never a valid hex string.) The sign/verify update() methods work okay because they use different validation logic. Fixes: #31751 PR-URL: #31766 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Introduce the SocketAddress utility class. The QUIC implementation makes extensive use of this for handling of socket addresses. It was separated out to make it generically reusable throughout core Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: #32070 Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Denys Otrishko <shishugi@gmail.com>
update my personal email PR-URL: #32026 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Matheus Marchini <mat@mmarchini.me> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
thefourtheye has a considerable history of contributions to Node.js. They have not been active much of late, and the TSC Charter has a section about activity indicating that moving to Emeritus at this time is the thing to do. Thanks for all you've done to make Node.js fantastic, thefourtheye, and hope to see you around again soon! PR-URL: #32059 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
These very small values can cause crashes/exceptions to occur on some systems because most time is spent in V8 GC or in parts of node core that are not being tested (e.g. streams). PR-URL: #31816 Reviewed-By: James M Snell <jasnell@gmail.com>
Our documentation uses em dashes inconsistently. They are treated inconsistently typographically too. (For example, they are sometimes surrounded by spaces and sometimes not.) They are also often confused with ordinary hyphens such as in the CHANGELOG, where they are inadvertently mixed together in a single list. The difference is not obvious in the raw markdown but is very noticeable when rendered, appearing to be a typographical error (which it in fact is). The em dash is never needed. There are always alternatives. Remove em dashes entirely. PR-URL: #32080 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
The nghttp2 and nghttp3 (used in the QUIC implementation) share nearly identical structs for header handling. However, they differ enough that they need to be handled slightly different in each case. This PR includes some elements introduced in the QUIC PR separated out to make them independently reviewable, and updates the http2 implementation to use the shared utilities. Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: #32069 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
PR-URL: #32085 Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Fix removeListener when eventName type is 'symbol'. ```js const EventEmitter = require('events'); const myEmitter = new EventEmitter(); const sym = Symbol('symbol'); const fn = () => { }; myEmitter.on(sym, fn); myEmitter.on('removeListener', (...args) => { console.log('removeListener'); console.log(args, args[0] === sym, args[1] === fn); }); myEmitter.removeAllListeners() ``` When the listener's eventName type is 'symbol' and removeListener is called with no parameters, removeListener should be emitted. PR-URL: #31847 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Shelley Vohr <codebytere@gmail.com> Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Whether and when a socket is destroyed or not after a timeout is up to the user. This leaves an edge case where a socket that has emitted 'timeout' might be re-used from the free pool. Even if destroy is called on the socket, it won't be removed from the freelist until 'close' which can happen several ticks later. Sockets are removed from the free list on the 'close' event. However, there is a delay between calling destroy() and 'close' being emitted. This means that it possible for a socket that has been destroyed to be re-used from the free list, causing unexpected failures. PR-URL: #32000 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Denys Otrishko <shishugi@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
V8 is about to increase the max TypedArray length to 2**32-1, which Node inherits as Buffer.kMaxLength. Some tests relied on values greater than the previous max length (2**31-1) to throw errors; this updates those tests for the new max length. PR-URL: #32114 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
Refs: nodejs/node-v8#119 PR-URL: #32113 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
This commit adds a WASI option allowing the __wasi_proc_exit() function to return an exit code instead of forcefully terminating the process. PR-URL: #32101 Fixes: #32093 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Rename two idnetifiers that were snake_case rather than camelCase. Signed-off-by: Rich Trott <rtrott@gmail.com> PR-URL: #32120 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com>
The process.on('exit', ...) checks duplicate the work of `common.mustCall()` and are superfluous. Remove them. Signed-off-by: Rich Trott <rtrott@gmail.com> PR-URL: #32120 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com>
PR-URL: #32121 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
PR-URL: #32132 Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
This commit documents the bigint option to fs.watchFile(), which has been supported since v10.5.0. PR-URL: #32128 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
../src/node_http_common.h:497:8: warning: 'MemoryInfo' overrides a member function but is not marked 'override' [-Winconsistent-missing-override] void MemoryInfo(MemoryTracker* tracker) const { PR-URL: #32126 Refs: #32069 Reviewed-By: Denys Otrishko <shishugi@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
../src/node_http_common-inl.h:126:7: warning: field 'token_' will be initialized after field 'name_' [-Wreorder] : token_(other.token_), PR-URL: #32126 Refs: #32069 Reviewed-By: Denys Otrishko <shishugi@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Added a section for "Self-referencing a package using its name" that documents importing a package's own exports (this was missed when adding the feature). PR-URL: #31680 Reviewed-By: Jan Krems <jan.krems@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Geoffrey Booth <webmaster@geoffreybooth.com>
PR-URL: #31694 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Although these `using`s can derived from other header files, it will be better to be self-contained. PR-URL: #32117 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
This adds `const char*` based APIs to KVStore to avoid multiple string conversions (char -> Utf8 -> Local -> char etc.) when possible. PR-URL: #31773 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: #31773 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Test test-net-dns-error.js causes assertion failure on SunOS, test expects ENOTFOUND, but OS returns EAI_FAIL. Maximum length of a host name is 63 characters. Test test-net-dns-error.js makes a connection attempt to invalid host name (longer than maximum). Such connection attempt on SunOS returns permanent failure (EAI_FAIL) as invalid hostname won't be ever resolved. PR-URL: #31780 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #32147 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
PR-URL: #32152 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Wrap reused read_wrap in a unique async resource to ensure that executionAsyncResource() is not ambiguous. PR-URL: #31972 Refs: #30959 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
PR-URL: #31952 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
We might not have sufficient privileges to signal the child process so don't make assumptions about the return value of `uv_process_kill()`. Example: node -e 'child_process.spawnSync("sudo", ["ls"], { maxBuffer: 1 })' No test because: 1. The test needs to run as root (can't invoke sudo), and 2. The parent needs to drop privileges but can't, because then the child process won't have sufficient privileges. Fixes: #31747 PR-URL: #31768 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com>
Use `StringBytes::InlineDecoder` to decode strings inputs in C++ land instead of decoding them to buffers in JS land before passing them on to the C++ layer. This is what the other update() methods already did. PR-URL: #31767 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Factor out the common logic into a template function. Removes approximately six instances of copy/pasted code. PR-URL: #31767 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Both http and https modules have server.timeout property in public API. This commit adds documentation section and test for server.timeout in http2 module, so it becomes consistent with http and https. Also improves description of callback argument in documentation for server.setTimeout(). PR-URL: #31693 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
http1 objects are coupled with their corresponding res/req and cannot be treated independently as normal streams. Add a special exception for this in the pipeline cleanup. Fixes: #32184 Backport-PR-URL: #32212 PR-URL: #32197 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
User might still want to be able to use the writable side of src. This is in the case where e.g. the Duplex input is not directly connected to its output. Such a case could happen when the Duplex is reading from a socket and then echos the data back on the same socket. Backport-PR-URL: #32212 PR-URL: #32198 Refs: 4d93e10#commitcomment-37751035 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
7e20f41
to
973bc30
Compare
Notable changes: * async_hooks: - add sync enterWith to ALS (Stephen Belanger) #31945 * cli: - allow --jitless V8 flag in NODE\_OPTIONS (Andrew Neitsch) #32100 * fs: - return first folder made by mkdir recursive (Benjamin Coe) #31530 * n-api: - define release 6 (Gabriel Schulhof) #32058 * src: - create a getter for kernel version (Juan José Arboleda) #31732 * wasi: - add returnOnExit option (Colin Ihrig) #32101 PR-URL: #32185
973bc30
to
4a53612
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Notable changes: * async_hooks: - add sync enterWith to ALS (Stephen Belanger) #31945 * cli: - allow --jitless V8 flag in NODE\_OPTIONS (Andrew Neitsch) #32100 * fs: - return first folder made by mkdir recursive (Benjamin Coe) #31530 * n-api: - define release 6 (Gabriel Schulhof) #32058 * src: - create a getter for kernel version (Juan José Arboleda) #31732 * wasi: - add returnOnExit option (Colin Ihrig) #32101 PR-URL: #32185
@MylesBorins Is there anything still holding up the AIX releases? (They're listed as coming soon in nodejs/nodejs.org#3014 and aren't uploaded to https://nodejs.org/dist/v13.11.0/ yet.) |
Honestly the build didn't work last night, I kicked it off again and
haven't checked yet. Doing so rn
…On Thu, Mar 12, 2020, 1:08 PM Richard Lau ***@***.***> wrote:
@MylesBorins <https://github.com/MylesBorins> Is there anything still
holding up the AIX releases? (They're listed as coming soon in
nodejs/nodejs.org#3014 <nodejs/nodejs.org#3014>
and aren't uploaded to https://nodejs.org/dist/v13.11.0/ yet.)
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#32185 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AADZYV745I77DK3SSKHTWWLRHEJJVANCNFSM4LFJTFCA>
.
|
@richardlau I kicked off the build again and AIX is just not building. |
EDIT: screenshot above is a little off, it was actually the next AIX condition further down that I changed, but its good enough to give a sense for history as to what I hacked around with. I think that was the issue, I changed the
from https://ci-release.nodejs.org/job/iojs+release/5736/nodes=aix71-ppc64/console will match. @MylesBorins can you try again? |
2020-03-11, Version 13.11.0 (Current), @MylesBorins
Notable Changes
Commits
478f1e7e13
] - async_hooks: avoid resource reuse by FileHandle (Gerhard Stoebich) #319724d5981be96
] - (SEMVER-MINOR) async_hooks: add sync enterWith to ALS (Stephen Belanger) #319453befe80c4f
] - async_hooks: fix ctx loss after nested ALS calls (Andrey Pechkurov) #32085ddb882439f
] - benchmark: remove special test entries (Ruben Bridgewater) #317555d92cec12d
] - benchmark: addtest
andall
options and improve errors" (Ruben Bridgewater) #31755e11f38cbab
] - benchmark: refactor helper into a class (Ruben Bridgewater) #3175531ec44302a
] - benchmark: remove problematic tls params (Brian White) #31816079bb31b29
] - build: remove empty line on node.gyp file (Juan José Arboleda) #31952fe34da84de
] - build: add mjs extension to lint-js (Nick Schonning) #32145d66daa5661
] - build: support android build on ndk version equal or above 23 (forfun414) #315213c06316679
] - build: workaround for gclient python3 issues (Matheus Marchini) #3214064135249e5
] - build: allow use of system-installed brotli (André Draszik) #32046f07d423d16
] - build: allow passing multiple libs to pkg_config (André Draszik) #320467c739aa386
] - build: enable backtrace when V8 is built for PPC and S390x (Michaël Zasso) #32113e1347b411a
] - cli: allow --jitless V8 flag in NODE_OPTIONS (Andrew Neitsch) #32100ce686c03ae
] - crypto: optimize sign.update() and verify.update() (Ben Noordhuis) #31767a727b13343
] - crypto: make update(buf, enc) ignore encoding (Ben Noordhuis) #31766893e9183b5
] - doc: include the error type in the request.resolve doc (Joe Pea) #32152af73ed632c
] - doc: clear up child_process command resolution (Denys Otrishko) #32091fa78aa4a60
] - doc: clarify windows specific behaviour (Sam Roberts) #320795bc51612b9
] - doc: improve Buffer documentation (Anna Henningsen) #3208635bea0798e
] - doc: add support encoding link on string_decoder.md (himself65) #319113fa57ee0c2
] - doc: add entry forAsyncHook
class (Harshitha KP) #3186538329bd438
] - doc: prevent tables from shrinking page (David Gilbertson) #31859bc1e3575d4
] - doc: change worker.takeHeapSnapshot to getHeapSnapshot (Gerhard Stoebich) #320617de4dfba79
] - doc: remove personal pronoun usage in policy.md (Rich Trott) #32142618b389b6a
] - doc: remove personal pronoun usage in fs.md (Rich Trott) #32142fa99fb2eac
] - doc: remove personal pronoun usage in errors.md (Rich Trott) #321422d39369ee5
] - doc: remove personal pronoun usage in addons.md (Rich Trott) #3214202ebc81e94
] - doc: revise tools/icu/README.md (Rich Trott) #3213650c5eb49ab
] - doc: link setRawMode() from signal docs (Anna Henningsen) #3208897965f518c
] - doc: document self-referencing a package name (Gil Tayar) #31680a79b8fa6f8
] - doc: document fs.watchFile() bigint option (Colin Ihrig) #321282e5f81f69c
] - doc: fix broken links in benchmark README (Rich Trott) #3212150094de274
] - doc: remove em dashes (Rich Trott) #320805f12595e00
] - doc: update email address in authors (Yael Hermon) #3202677e5b509a9
] - doc,test: add server.timeout property to http2 public API (Andrey Pechkurov) #316934c2e4d1747
] - esm: remove unused parameter on module.instantiate (himself65) #3214755486bceb9
] - events: fix removeListener for Symbols (zfx) #3184794f3eed229
] - (SEMVER-MINOR) fs: make fs.read params optional (Lucas Holmquist) #314027eed9d6bcc
] - fs: fix WriteStream autoClose order (Robert Nagy) #31790ff58854dbe
] - (SEMVER-MINOR) fs: return first folder made by mkdir recursive (Benjamin Coe) #315301c4f4cc436
] - fs: fix writeFile[Sync] for non-seekable files (Alba Mendez) #32006c106a857a9
] - fs: fix valid id range on chown, lchown, fchown (himself65) #316941ffa9f388f
] - http: fix socket re-use races (Robert Nagy) #3200049a07f7932
] - http, async_hooks: remove unneeded reference to wrapping resource (Gerhard Stoebich) #32054897b1d2e5e
] - lib: move isLegalPort to validators, refactor (James M Snell) #31851607ac90906
] - lib: improve value validation utils (Denys Otrishko) #31480c0ba6ec560
] - meta: move thefourtheye to TSC Emeritus (Rich Trott) #32059710c9051e3
] - n-api: define release 6 (Gabriel Schulhof) #32058e83671c3c4
] - src: DRY crypto Update() methods (Ben Noordhuis) #31767025f658fa6
] - src: fix spawnSync CHECK when SIGKILL fails (Ben Noordhuis) #317682248ba760b
] - src: fix missing extra ca in tls.rootCertificates (Eric Bickle) #32075fa376f420c
] - src: fix -Wmaybe-uninitialized compiler warning (Ben Noordhuis) #31809c3aa3e70f0
] - src: remove unused include from node_file.cc (Ben Noordhuis) #31809d8c927b5f1
] - Revert "src: keep main-thread Isolate attached to platform during Dispose" (Anna Henningsen) #31853625d8f7007
] - src: discard tasks posted to platform TaskRunner during shutdown (Anna Henningsen) #3185355a8ca8ee4
] - src: elevate v8 namespace (RamanandPatil) #320411e9a2516df
] - src: use C++ style for struct with initializers (Sam Roberts) #321346aa797b546
] - src: implement per-process native Debug() printer (Joyee Cheung) #318845127c700d0
] - src: refactor debug category parsing (Joyee Cheung) #318842388a40f56
] - src: make aliased_buffer.h self-contained (Joyee Cheung) #31884258a80d3cc
] - (SEMVER-MINOR) src: create a getter for kernel version (Juan José Arboleda) #31732cba75c5cf4
] - src: handle NULL env scenario (Harshitha KP) #31899cc27846fb9
] - src: simplify node_worker.cc using new KVStore API (Denys Otrishko) #31773296f35b888
] - src: improve KVStore API (Denys Otrishko) #31773bd756883a7
] - src: add missing namespace using statements in node_watchdog.h (legendecas) #32117e9f9d076e9
] - src: fix -Wreorder compiler warning (Colin Ihrig) #321267b9b578652
] - src: fix -Winconsistent-missing-override warning (Colin Ihrig) #321264ac1ce1071
] - src: introduce node_sockaddr (James M Snell) #3207031e4a0d7ac
] - src: Handle bad callback in asyc_wrap (Harshitha KP) #31946a03777096e
] - src,http2: introduce node_http_common (James M Snell) #32069fab8c83253
] - stream: avoid destroying writable source (Robert Nagy) #3219866fe2d90ff
] - stream: avoid destroying http1 objects (Robert Nagy) #321970a00552122
] - stream: do not swallow errors with async iterators and pipeline (Matteo Collina) #32051f2636598e8
] - stream: eos make const state const (Robert Nagy) #320314b04bf89ad
] - stream: re-use legacy destroyer (Robert Nagy) #313167ce1cc93ce
] - stream: simplify pipeline (Robert Nagy) #313169d1b1a3fbd
] - stream: simplify Writable.write (Robert Nagy) #311461e05ddf406
] - stream: improve writable.write() performance (Brian White) #3162490a4d438cb
] - stream: combine properties using defineProperties (antsmartian) #311874640ea24bd
] - stream: don't destroy final readable stream in pipeline (Robert Nagy) #321102585b814b0
] - stream: add comments to pipeline implementation (Robert Nagy) #32042ceca1c3a4f
] - test: improve test-fs-existssync-false.js (himself65) #3188384197eaae0
] - test: mark test-timers-blocking-callback flaky on osx (Myles Borins) #321894589863518
] - test: always skip vm-timeout-escape-queuemicrotask (Denys Otrishko) #31980188f1d275f
] - test: improve test-debug-usage (Rich Trott) #3214192cc406baf
] - test: refactor all benchmark tests to use the new test option (Ruben Bridgewater) #317556f9f2c5de4
] - test: warn when inspector process crashes (Matheus Marchini) #321336a9654a7a9
] - test: increase test timeout to prevent flakiness (Ruben Bridgewater) #31716862cd2b49d
] - test: use index.js if package.json "main" is empty (Ben Noordhuis) #320403d64c9eba6
] - test: changed function to arrow function (ProdipRoy89) #320456545d1a55d
] - test: allow EAI_FAIL in test-net-dns-error.js (Vita Batrla) #317801428de8ee6
] - test: add WASI test for path_link() (Colin Ihrig) #32132da7349d908
] - test: remove superfluous checks in test-net-reconnect-error (Rich Trott) #3212074edcc5dd9
] - test: apply camelCase in test-net-reconnect-error (Rich Trott) #321208e435687bb
] - test: update tests for larger Buffers (Jakob Kummerow) #3211483e9a3ea59
] - test: add coverage for FSWatcher exception (Rich Trott) #3205789987b3a9f
] - test: remove common.expectsInternalAssertion (Rich Trott) #3205735d0569356
] - tools: enable no-useless-backreference lint rule (Colin Ihrig) #31400d3c4210ea0
] - tools: enable default-case-last lint rule (Colin Ihrig) #31400814bb4a35d
] - tools: update ESLint to 7.0.0-alpha.2 (Colin Ihrig) #31400cac1d01cad
] - tools: update ESLint to 7.0.0-alpha.1 (Colin Ihrig) #31400c70cfd2ba6
] - tools: update ESLint to 7.0.0-alpha.0 (Colin Ihrig) #31400bb41383bdc
] - tools: use per-process native Debug() printer in mkcodecache (Joyee Cheung) #31884eaf6723804
] - vm: refactor value validation with internal/validators.js (Denys Otrishko) #31480dd83bd266d
] - (SEMVER-MINOR) wasi: add returnOnExit option (Colin Ihrig) #32101