-
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
v10.5.0 proposal #21400
v10.5.0 proposal #21400
Conversation
This allows validation of integers that are not int32 or uint32. PR-URL: #20851 Fixes: #20844 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Backport-PR-URL: #21171 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
This commit adds validation to the length parameter of fs.truncate(). Prior to this commit, passing a non-number would trigger a CHECK() in the binding layer. Backport-PR-URL: #21171 PR-URL: #20851 Fixes: #20844 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Backport-PR-URL: #21171 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
The length used by ftruncate() is 64 bits in the binding layer. This commit removes the 32 bit restriction in the JS layer. Backport-PR-URL: #21171 PR-URL: #20851 Fixes: #20844 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Backport-PR-URL: #21171 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
- Introduce the `validateAndMaskMode` validator that validates `mode_t` arguments and mask them with 0o777 if they are 32-bit unsigned integer or octal string to be more consistent with POSIX APIs. - Use the validator in fs APIs and process.umask for consistency. - Add tests for 32-bit unsigned modes larger than 0o777. PR-URL: #20636 Fixes: #20498 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Backport-PR-URL: #21172
- On Windows only the write permission (read-only bit) can be manipulated, and there is no distinction among owner, group or others. - mkdir on Windows does not support the mode argument. PR-URL: #20636 Fixes: #20498 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Backport-PR-URL: #21172
This drops exporting duplicate methods that accept FileHandle as the first argument (to mirror callback-based methods accepting 'fd'). Those methods were not adding actual value to the API because all of those are already present as FileHandle methods, and they would probably be confusing to the new users and making docs harder to read. Also, the API was a bit inconsistent and lacked .close(handle). Fixes: #20548 PR-URL: #20559 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Backport-PR-URL: #21172
This commit adds minimum and maximum value checks to the validateInt32() validator. PR-URL: #20588 Fixes: #20498 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Weijia Wang <starkwang@126.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Backport-PR-URL: #21172
This commit validates the fd parameters to fs.fchmod{Sync} as int32s instead of uint32s because they are ints in the binding layer. PR-URL: #20588 Fixes: #20498 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Weijia Wang <starkwang@126.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Backport-PR-URL: #21172
PR-URL: #20917 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Backport-PR-URL: #21172
Update reference to read `hostname` instead of `host` for consistency. Also update function signature to use `hostname` rather than `host` PR-URL: #20933 Refs: #20892 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Backport-PR-URL: #21172
This commit allows permission bits higher than 0o777 to go through the API (e.g. `S_ISVTX`=`0o1000`, `S_ISGID`=`0o2000`, `S_ISUID`=`0o4000`). Also documents that these bits are not exposed through `fs.constants` and their behaviors are platform-specific, so the users need to use them on their own risk. PR-URL: #20975 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Backport-PR-URL: #21172
Before this commit, when the user calls methods on a closed or errored fs event watcher, they could hit a crash since the FSEventWrap in C++ land may have already been destroyed with the internal pointer set to nullptr. This commit makes sure that the user cannot hit crashes like that, instead the methods calling on a closed watcher will be noops. Also explicitly documents that the watchers should not be used in `close` and `error` event handlers. PR-URL: #20985 Fixes: #20738 Fixes: #20297 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Ron Korving <ron@ronkorving.nl> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Backport-PR-URL: #21172
PR-URL: #20998 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Backport-PR-URL: #21172
`wrap_template` is no longer used since we've switched to v8::Private. PR-URL: #21127 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Clean up once all references to an `Isolate*` are gone from the `NodePlatform`, rather than waiting for the `PerIsolatePlatformData` struct to be deleted since there may be cyclic references between that struct and the individual tasks. PR-URL: #20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
Currently the following compiler warnings are generated: In file included from ../src/node_platform.cc:1: ../src/node_platform.h:83:16: warning: private field 'isolate_' is not used [-Wunused-private-field] v8::Isolate* isolate_; ^ 1 warning generated. This commit removes these unused private member. PR-URL: #20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
Remove one extra closing state and use a smart pointer for deleting `HandleWrap`s. PR-URL: #20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
This makes the property “more” hidden when exposing a `HandleWrap` as public API, e.g. for upcoming `MessagePort`s. PR-URL: #20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
Implement `MessagePort` and `MessageChannel` along the lines of the DOM classes of the same names. `MessagePort`s initially support transferring only `ArrayBuffer`s. Thanks to Stephen Belanger for reviewing this change in its original form, to Benjamin Gruenbaum for reviewing the added tests in their original form, and to Olivia Hugger for reviewing the documentation in its original form. Refs: ayojs/ayo#98 PR-URL: #20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
Support passing `MessagePort` instances through other `MessagePort`s, as expected by the `MessagePort` spec. Thanks to Stephen Belanger for reviewing this change in its original PR. Refs: ayojs/ayo#106 PR-URL: #20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
Logic is added to the `MessagePort` mechanism that attaches hidden objects to those instances when they are transferred that track their lifetime and maintain a reference count, to make sure that memory is freed at the appropriate times. Thanks to Stephen Belanger for reviewing this change in its original PR. Refs: ayojs/ayo#106 PR-URL: #20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
Currently the following compiler warnings are generated: ../src/node_messaging.cc:74:16: warning: private field 'env_' is not used [-Wunused-private-field] Environment* env_; ^ ../src/node_messaging.cc:75:12: warning: private field 'msg_' is not used [-Wunused-private-field] Message* msg_; ^ 2 warnings generated. This commit removes these unused private members. PR-URL: #20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
Refs: ayojs/ayo#93 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> PR-URL: #20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
Implement multi-threading support for most of the API. Thanks to Stephen Belanger for reviewing this change in its original form, to Olivia Hugger for reviewing the documentation and some of the tests coming along with it, and to Alexey Orlenko and Timothy Gu for reviewing other parts of the tests. Refs: ayojs/ayo#110 Refs: ayojs/ayo#114 Refs: ayojs/ayo#117 PR-URL: #20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
Refs: ayojs/ayo#113 Reviewed-By: Anna Henningsen <anna@addaleax.net> PR-URL: #20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
Only allow `.js` and `.mjs` extensions to provide future-proofing for file type detection. Refs: ayojs/ayo#117 Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Olivia Hugger <olivia@fastmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> PR-URL: #20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
Provide `stdin`, `stdout` and `stderr` options for the `Worker` constructor, and make these available to the worker thread under their usual names. The default for `stdin` is an empty stream, the default for `stdout` and `stderr` is redirecting to the parent thread’s corresponding stdio streams. PR-URL: #20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
I'm going to do the release tomorrow with @MylesBorins's help. @addaleax Can you help me to write the notable changes for workers? |
Notable changes: TODO PR-URL: #21400
CI: https://ci.nodejs.org/job/node-test-pull-request/15520/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestion for notable changes:
|
Can you add
|
Also
|
Sure, thank you to both of you. Updating now. |
Notable changes: * **crypto**: * Support for `crypto.scrypt()` has been added. [#20816](#20816) * **fs**: * BigInt support has been added to `fs.stat` and `fs.watchFile`. [#20220](#20220) * APIs that take `mode` as arguments no longer throw on values larger than `0o777`. [#20636](#20636) [#20975](#20975) (Fixes: [#20498](#20498)) * Fix crashes in closed event watchers. [#20985](#20985) (Fixes: [#20297](#20297)) * **Worker Threads**: * Support for multi-threading has been added behind the `--experimental-worker` flag in the `worker_threads` module. This feature is *experimental* and may receive breaking changes at any time. [#20876](#20876) PR-URL: #21400
Notable changes: * **crypto**: * Support for `crypto.scrypt()` has been added. [#20816](#20816) * **fs**: * BigInt support has been added to `fs.stat` and `fs.watchFile`. [#20220](#20220) * APIs that take `mode` as arguments no longer throw on values larger than `0o777`. [#20636](#20636) [#20975](#20975) (Fixes: [#20498](#20498)) * Fix crashes in closed event watchers. [#20985](#20985) (Fixes: [#20297](#20297)) * **Worker Threads**: * Support for multi-threading has been added behind the `--experimental-worker` flag in the `worker_threads` module. This feature is *experimental* and may receive breaking changes at any time. [#20876](#20876) PR-URL: #21400
2018-06-20, Version 10.5.0 (Current), @targos
Notable Changes
crypto.scrypt()
has been added. #20816fs.stat
andfs.watchFile
. #20220mode
as arguments no longer throw on values larger than0o777
. #20636 #20975 (Fixes: #20498)--experimental-worker
flag in theworker_threads
module. This featureis experimental and may receive breaking changes at any time. #20876
Commits
a6986fe8b6
] - async_hooks: remove deprecated example (Mathias Buus) #209984b9817bf1e
] - benchmark: disable only the ESLint rule needing it (Rich Trott) #21133ecba1c57b1
] - (SEMVER-MINOR) benchmark: port cluster/echo to worker (Timothy Gu) #2087602adb2d62c
] - (SEMVER-MINOR) build: expose openssl scrypt functions to addons (Ben Noordhuis) #20816c3fbac432f
] - build: install markdown linter for travis (Richard Lau) #21215896017b134
] - build: build addon tests in parallel (Anna Henningsen) #2115576927fc734
] - build: stop distclean from deleting v8 files (Ujjwal Sharma) #21164b044256f2a
] - build: use LC_ALL of C for maximum compatibility (Rich Trott) #2122278c7d666fb
] - build: don't change locale on smartos (Refael Ackermann) #21220c688a00a6d
] - build: fix 'gas_version' check on localized environments (Evandro Oliveira) #2039479b3423fb5
] - build: initial .travis.yml implementation (Anna Henningsen) #21059ea4be72f22
] - child_process: swallow errors in internal communication (Anatoli Papirovski) #211089981220e2a
] - crypto: fix behavior of createCipher in wrap mode (Tobias Nießen) #21287d0cb9cbb35
] - (SEMVER-MINOR) crypto: drop Math.pow(), use static exponentation (Ben Noordhuis) #208162d9c3cc89d
] - (SEMVER-MINOR) crypto: refactor randomBytes() (Ben Noordhuis) #208166262fa44d6
] - (SEMVER-MINOR) crypto: refactor pbkdf2() and pbkdf2Sync() methods (Ben Noordhuis) #20816c9b4592dbf
] - (SEMVER-MINOR) crypto: add scrypt() and scryptSync() methods (Ben Noordhuis) #20816495756264a
] - (SEMVER-MINOR) crypto: DRY type checking (Ben Noordhuis) #20816e4a7e0d28b
] - deps: float ea7abee from openssl / CVE-2018-0732 (Rod Vagg) #212820b90b071c4
] - deps: Upgrade node-inspect to 1.11.5 (Jan Krems) #21055ffc29c12da
] - deps: patch V8 to 6.7.288.46 (Myles Borins) #2126014bb905d18
] - deps: V8: cherry-pick a440efb27f from upstream (Yang Guo) #2102265b9c427ac
] - dns: improve setServers() errors and performance (Jamie Davis) #20445bc20ec0c0f
] - doc: eliminate _you_ from N-API doc (Rich Trott) #21382318d6831bf
] - doc: use imperative in COLLABORATOR_GUIDE (Rich Trott) #21340177a7c06a8
] - doc: remove obsolete wiki references from BUILDING (Rich Trott) #2136915023df050
] - doc: add davisjam to collaborators (Jamie Davis) #2127317c21b67ac
] - doc: fix indentation in console.md (Vse Mozhet Byt) #21367ef74368416
] - doc: fix heading of optional console method args (Michaël Zasso) #213114f17841c20
] - doc: use Class Method label consistently (Rich Trott) #213574566ebacf4
] - doc: wrap style guide at 80 characters (Rich Trott) #213616c41f33571
] - doc: wrap pull-requests.md at 80 characters (Rich Trott) #21361b8213f17cc
] - doc: remove linking of url text to url (Rich Trott) #213613f78220c2b
] - doc: correct styling of _GitHub_ in onboarding doc (Rich Trott) #213619e994cb119
] - doc: wrap releases.md at 80 chars (Rich Trott) #21361e00e5e6d5d
] - doc: switch the order of Writable and Readable (Joseph Gordon) #21333e1b571d6b7
] - doc: make Deprecation cycle explanation more brief (Rich Trott) #21303df0f7a3b4d
] - doc: clarify async execute callback usage (Michael Dawson) #21217c5a65594ef
] - doc: move 5 collaborators to emeritus status (Rich Trott) #21272c1d53f86f8
] - doc: update NODE_OPTIONS section in cli.md (Vse Mozhet Byt) #2122913fd09bfa7
] - doc: add build wg info to releases.md (Jon Moss) #212750da910f9a5
] - doc: move Italo A. Casas to Release Emeritus (Myles Borins) #213156f7de0b8d9
] - doc: trim deprecation level definition text (Rich Trott) #21241dd2fc90dcf
] - doc: fix reference to workerData in worker_threads (Jeremiah Senkpiel) #211805e46c16371
] - doc: fix type in stream doc (Aliaksei Tuzik) #2117885dc9ac418
] - doc: add Michaël Zasso to Release team (Michaël Zasso) #211145fa5ab6c48
] - doc: naming function as suggested in addon docs (Tommaso Allevi) #21067fe5d35123b
] - (SEMVER-MINOR) doc: document BigInt support in fs.Stats (Joyee Cheung) #202202c4f80ffba
] - doc: remove spaces around slashes (Rich Trott) #2114072e7e1da2d
] - doc: alphabetize tls options (Rich Trott) #2113906ac81e786
] - doc: streamline errors.md introductory material (Rich Trott) #2113873b8975b41
] - doc: simplify deprecation language (Rich Trott) #211366caa354377
] - (SEMVER-MINOR) doc: explain Worker semantics in async_hooks.md (Anna Henningsen) #208769f9355d6d2
] - doc: fix inconsistent documentation (host vs hostname) (Davis Okoth) #20933a5c571424a
] - doc: document file mode caveats on Windows (Joyee Cheung) #20636a75e44d135
] - esm: ensure require.main for CJS top-level loads (Guy Bedford) #2115004e8f0749e
] - (SEMVER-MINOR) fs: support BigInt in fs.*stat and fs.watchFile (Joyee Cheung) #20220c09bfd81b7
] - fs: do not crash when using a closed fs event watcher (Joyee Cheung) #20985bacb2cb550
] - fs: refactor fs module (James M Snell) #20764db0bb5214a
] - fs: improve fchmod{Sync} validation (cjihrig) #205882ffb9d6b5c
] - fs: drop duplicate API in promises mode (Сковорода Никита Андреевич) #20559fc0b3610e2
] - fs: don't limit ftruncate() length to 32 bits (cjihrig) #20851469baa062e
] - fs: add length validation to fs.truncate() (cjihrig) #208516aade4a765
] - http: remove a pair of outdated comments (Mark S. Everitt) #21214bcaf59c739
] - http2: fix memory leak for uncommon headers (Anna Henningsen) #21336dee250fd77
] - http2: safer Http2Session destructor (Anatoli Papirovski) #21194296fd57324
] - inspector: stop dragging platform pointer (Eugene Ostroukhov)fb71337bdf
] - (SEMVER-MINOR) lib: rename checkIsArrayBufferView() (Ben Noordhuis) #20816f3570f201b
] - (SEMVER-MINOR) lib: replace checkUint() with validateInt32() (Ben Noordhuis) #20816b4b7d368be
] - lib: unmask mode_t values with 0o777 (Joyee Cheung) #2097536e5100a39
] - lib: support ranges in validateInt32() (cjihrig) #205882fe88d2218
] - lib: mask mode_t type of arguments with 0o777 (Joyee Cheung) #20636a0cfb0c9d4
] - lib: add validateInteger() validator (cjihrig) #20851740d9f1a0e
] - lib,src: makeStatWatcher
aHandleWrap
(Anna Henningsen) #21244a657984109
] - lib,src: remove openssl feature conditionals (Ben Noordhuis) #21094653b20b26d
] - loader: remove unused error code in module_job (Gus Caplan) #213545d3dfedca2
] - meta: remove CODEOWNERS (Rich Trott) #21161169bff3e9e
] - n-api: name CallbackBundle function fields (Anna Henningsen) #212401dc9330b3a
] - n-api: improve runtime perf of n-api func call (Kenny Yuan) #210729047c8182c
] - n-api: remove unused napi_env member (Gabriel Schulhof) #2112718c057ab26
] - net: emit 'close' when socket ends before connect (Brett Kiefer) #21290a3fd1cd8ea
] - perf_hooks: remove less useful bootstrap marks (James M Snell) #212478fddf591c5
] - perf_hooks: set bootstrap complete in only one place (James M Snell) #21247fc2956d37a
] - process: backport process/methods file (Michaël Zasso) #2117278ad4e9dde
] - src: remove unused argc var in node_stat_watcher (Daniel Bevenius) #213377fa1344143
] - src: use%zx
in printf for size_t (Anna Henningsen) #21323671346ee8f
] - src: do proper error checking inAsyncWrap::MakeCallback
(Anna Henningsen) #21189aa468abc4c
] - src: unify native symbol inspection code (Anna Henningsen) #21238e92b89a75d
] - src: fix http2 typos (Anatoli Papirovski) #211944f01168414
] - src: do not persist fs_poll handle in stat_watcher (Anatoli Papirovski) #21093685b9b2a6a
] - src: do not persist timer handle in cares_wrap (Anatoli Papirovski) #210934757771db3
] - src: add consistency check to node_platform.cc (Anna Henningsen) #211568e2e16721b
] - src: add node_encoding.cc (James M Snell) #2111239b38754eb
] - src: cleanup beforeExit for consistency (James M Snell) #21113314b47d1cf
] - (SEMVER-MINOR) src: add Env::profiler_idle_notifier_started() (Timothy Gu) #208765209ff9562
] - (SEMVER-MINOR) src: remove unused fields msg_ and env_ (Daniel Bevenius) #208769a734132f9
] - (SEMVER-MINOR) src: make handle onclose property a Symbol (Anna Henningsen) #20876e6f06807b1
] - (SEMVER-MINOR) src: simplify handle closing (Anna Henningsen) #2087665924c70e8
] - (SEMVER-MINOR) src: remove unused fields isolate_ (Daniel Bevenius) #20876de7403f813
] - (SEMVER-MINOR) src: cleanup per-isolate state on platform on isolate unregister (Anna Henningsen) #20876ba17c9e46b
] - src: refactor bootstrap to use bootstrap object (James M Snell) #20917cbdc1fdf44
] - src, tools: add check for left leaning pointers (Daniel Bevenius) #21010935309325b
] - test: fix deprecation warning due to util.print (Tobias Nießen) #21265d7ba75f8aa
] - test: add test to check colorMode type of Console (Masashi Hirano) #212480b00172df8
] - test: removing unnecessary parameter from assert call (djmgit) #21307dea3ac7bff
] - test: improve statwatcher async_hooks test (Anna Henningsen) #21244792335f712
] - test: add workerdata-sharedarraybuffer test (Jeremiah Senkpiel) #21180e8d15cb149
] - test: mark test-inspector-port-zero-cluster flaky (Rich Trott) #21251688bdfef7f
] - test: add crypto check to test-http2-debug (Daniel Bevenius) #212052270ab2a12
] - test: remove string literals from assert.strictEqual() calls (James Kylstra) #21211187951c0fc
] - test: move inspector-stress-http to sequential (Rich Trott) #21227bda34ea203
] - test: check gc does not resurrect the loop (Anatoli Papirovski) #210934d782c4720
] - test: improve assert error messages (Hristijan Gjorgjievski) #211602655c7b194
] - test: mark fs-readfile-tostring-fail flaky for all (Rich Trott) #2117717954c2b01
] - test: improve internal/buffer.js test coverage (Masashi Hirano) #210612ff4704447
] - test: move test-readuint to test-buffer-readuint (Michaël Zasso) #211709c3a7bf076
] - test: make url-util-format engine agnostic (Rich Trott) #211413d8ec8f85c
] - test: make url-parse-invalid-input engine agnostic (Rich Trott) #211320b0370f884
] - test: remove unref in http2 test (Anatoli Papirovski) #2114514a017cf8d
] - test: apply promises API to fourth appendFile test (Rich Trott) #21131aa9dbf666b
] - test: apply promises API to fourth appendFile test (Rich Trott) #21131185b9e45d3
] - test: apply promises API to third appendFile test (Rich Trott) #21131c400448e85
] - test: improve debug output in trace-events test (Rich Trott) #21120a4ad9891e3
] - test: add test for Linux perf (Matheus Marchini) #20783e16036c462
] - test: create new directory v8-updates (Matheus Marchini) #2078393ce63c89f
] - (SEMVER-MINOR) test: add test against unsupported worker features (Timothy Gu) #2087694dcdfb898
] - test: increase coverage for fs.promises.truncate (Masashi Hirano) #20638c9cee63179
] - test,tools: refactor custom ESLint for readability (Rich Trott) #21134ed05d9a821
] - (SEMVER-MINOR) test,tools: enable running tests under workers (Anna Henningsen) #208766285fe94f6
] - tools: do not disablequotes
rule in .eslintrc.js (Rich Trott) #2133898346de08c
] - tools: lint doc/*.md files (Rich Trott) #21361521f8f1d95
] - tools: add BigInt64Array and BigUint64Array to globals (Joyee Cheung) #21255a5c386d1ba
] - tools: add option to use custom template with js2c.py (Shelley Vohr) #211877f70fe83ef
] - tools: add BigInt to globals (Nikolai Vavilov) #212374e742e379b
] - tools: update tooling to work with new macOS CLI … (Rich Trott) #21173ed2b57bcd5
] - tools: remove unused global types from type-parser (Rich Trott) #21135d46446afc5
] - v8: replace Buffer with FastBuffer in deserialize (Ujjwal Sharma) #21196917960e0a1
] - win, build: add documentation support to vcbuild (Bartosz Sosnowski) #1966303fbc9e749
] - (SEMVER-MINOR) worker: rename to worker_threads (Anna Henningsen) #208769ad42b766e
] - (SEMVER-MINOR) worker: improve error (de)serialization (Anna Henningsen) #208766b1a887aa2
] - (SEMVER-MINOR) worker: enable stdio (Anna Henningsen) #20876c97fb91e55
] - (SEMVER-MINOR) worker: restrict supported extensions (Timothy Gu) #20876109c92e8fa
] - (SEMVER-MINOR) worker: initial implementation (Anna Henningsen) #20876d1f372f052
] - (SEMVER-MINOR) worker: addSharedArrayBuffer
sharing (Anna Henningsen) #20876f447acd87b
] - (SEMVER-MINOR) worker: support MessagePort passing in messages (Anna Henningsen) #20876337be58ee6
] - (SEMVER-MINOR) worker: implementMessagePort
andMessageChannel
(Anna Henningsen) #208764a54ebc3bd
] - worker,src: display remaining handles ifuv\_loop\_close
fails (Anna Henningsen) #21238529d24e3e8
] - Revert "workers,trace_events: set thread name for workers" (James M Snell) #21363dfb5cf6963
] - workers,trace_events: set thread name for workers (James M Snell) #21246