-
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
v15.1.0 release proposal #35948
v15.1.0 release proposal #35948
Conversation
This patch adds a --heapsnapshot-near-heap-limit CLI option that takes heap snapshots when the V8 heap is approaching the heap size limit. It will try to write the snapshots to disk before the program crashes due to OOM. PR-URL: #33010 Refs: #27552 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Original commit message: parser: better error message for await+tla Bug: v8:9344, v8:6513 Change-Id: I1854e483515e7da99192367b6764a0ec7c8b41d9 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2411687 Reviewed-by: Marja Hölttä <marja@chromium.org> Commit-Queue: Gus Caplan <snek@chromium.org> Cr-Commit-Position: refs/heads/master@{#70099} Refs: v8/v8@4263f8a PR-URL: #35650 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
Collect Windows and C++ coverage. Configure codecov so that comments are more concise and are only left when coverage varies. PR-URL: #35670 Fixes: #35696 Refs: #35653 Refs: #35646 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
Add an v8.takeCoverage() API that allows the user to write the coverage started by NODE_V8_COVERAGE to disk on demand. The coverage can be written multiple times during the lifetime of the process, each time the execution counter will be reset. When the process is about to exit, one last coverage will still be written to disk. Also refactors the internal profiler connection code so that we use the inspector response id to identify the profile response instead of using an ad-hoc flag in C++. PR-URL: #33807 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Ben Coe <bencoe@gmail.com>
Add a v8.stopCoverage() API to stop the coverage collection started by NODE_V8_COVERAGE - this would be useful in conjunction with v8.takeCoverage() if the user don't want to emit the coverage at the process exit but still want to collect it on demand at some point. PR-URL: #33807 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Ben Coe <bencoe@gmail.com>
PR-URL: #35712 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
PR-URL: #35710 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
PR-URL: #35750 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Guy Bedford <guybedford@gmail.com>
PR-URL: #35719 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
https://github.com/cpplint/cpplint/releases/tag/1.5.0 PR-URL: #35719 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
Cherry-pick 12c8b4d Original commit message: This commit is a suggestion for adding a rule for NULL usages in the code base. This will currently report a number of errors which could be ignored using // NOLINT (readability/null_usage) PR-URL: #17373 Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Refs: 12c8b4d Cherry-pick fc81e80 Original commit message: Update cpplint.py to check for inline headers when the corresponding header is already included. PR-URL: #21521 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Refs: fc81e80 Cherry-pick cbc3dd9 Original commit message: src, tools: add check for left leaning pointers This commit adds a rule to cpplint to check that pointers in the code base lean to the left and not right, and also fixes the violations reported. PR-URL: #21010 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Refs: cbc3dd9 Cherry-pick 9029981 Original commit message: tools: fix cpplint.py header rules THIS COMMIT SHOULD GO WITH THE NEXT. IT WILL FIND NEW LINT. PR-URL: #26306 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Refs: 9029981 Cherry-pick 0a25ace Original commit message: tools: move cpplint configuration to .cpplint PR-URL: #27098 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Refs: 0a25ace Cherry-pick afa9a72 Original commit message: tools: refloat update link to google styleguide for cpplint This commit updates two old links to Google's C++ styleguide which currently result in a 404 when accessed. PR-URL: #30876 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Refs: afa9a72 Cherry-pick e23bf8f Original commit message: tools,src: refloat forbid usage of v8::Persistent `v8::Persistent` comes with the surprising catch that it requires manual cleanup. `v8::Global` doesn’t, making it easier to use, and additionally provides move semantics. New code should always use `v8::Global`. PR-URL: #31018 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> PR-URL: #35569 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> PR-URL: #35719 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Only imports has the experimental status right now but technically all ESM related features are currently experimental. The list also doesn't appear to be in any specific order so I've grouped the experimental features together. PR-URL: #35741 Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Ujjwal Sharma <ryzokuken@disroot.org>
PR-URL: #35745 Reviewed-By: Jan Krems <jan.krems@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Ujjwal Sharma <ryzokuken@disroot.org> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
Fix duplicate logic in stream destroy as the same logic is being shared across methods and thus can be encapsulated into a single method. PR-URL: #35727 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
PR-URL: #35515 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Christian Clauss <cclauss@me.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
* Make the 7 instances of breakOnSigint text blocks consistent. * Use present tense. * Use kbd element for keystrokes. * Minor style edits. PR-URL: #35692 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Signed-off-by: Lee, Bonggi <iyabong@gmail.com> PR-URL: #34964 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
PR-URL: #35683 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ben Coe <bencoe@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
The debug sprintf doesn't support %.* specifiers Fixes: #35688 PR-URL: #35694 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ricky Zhou <0x19951125@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com>
Fixes: #35740 Refs: #31553 Refs: #32953 Refs: #33991 Refs: #34001 Refs: #34055 Refs: #34962 Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com> Co-authored-by: Trivikram Kamat <trivikr.dev@gmail.com> Co-authored-by: Rich Trott <rtrott@gmail.com> PR-URL: #34002 Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Masashi Hirano <shisama07@gmail.com> Reviewed-By: Pranshu Srivastava <rexagod@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Allow the user to update the server settings after using http2.createSecureServer() or after using http2.createServer(). Fixes: #35353 PR-URL: #35383 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Denys Otrishko <shishugi@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
Reinject the data already received from the TLS socket when the HTTP2 client is attached with a delay Fixes: #35475 PR-URL: #35678 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Alba Mendez <me@alba.sh> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
We reinject when the sockets has already waiting data, remarked by @mildsunrise Co-authored-by: Alba Mendez <me@alba.sh> PR-URL: #35678 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Alba Mendez <me@alba.sh> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
example code added to the process.setgroups() API doc property in process.md PR-URL: #35738 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
PR-URL: #35437 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Using the variable name in the comment and justifying the type seems redundant to me and instead it should defined the entity which it is acting, like in our case it is acting as a flag to control the flow in streams. PR-URL: #35728 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
PR-URL: #35764 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Remove note indicating that the APIs can change at any time. This module migrated from Experimental to Stable 6 years ago (in io.js 1.4.2). PR-URL: #35774 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
@vsemozhetbyt I'm escalating that issue to the npm team and will lyk |
PR-URL: #35806 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Replace the OpenSSLBuffer utility with ByteSource and remove OpenSSLBuffer. Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: #35663 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Adding a new benchmark for testing the performance of loading available public modules. PR-URL: #35816 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Avoid using class fields in the benchmark tools since they are not available in Node 10. This can be reverted when Node 10 reaches EOL. PR-URL: #35817 Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Mary Marchini <oss@mmarchini.me>
The active worker check compared the time from sending message till response arrived from worker with the complete time the worker was running till it responses to the spin request. If sending back the message is slow for some reason the test fails. Adapt the test to compare the time seen inside the worker with the time read from main thread. PR-URL: #35891 Fixes: #35844 Refs: #35886 Refs: #35664 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
PR-URL: #35896 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Decide the return status of writeOrBuffer before calling stream.write which can reset state.length Add unit test for #35926 Refs: #35926 PR-URL: #35941 Fixes: #35926 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Fixes: #35898 PR-URL: #35914 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Notable changes: child_process: * (SEMVER-MINOR) add ChildProcess 'spawn' event (Matthew Francis Brunetti) #35369 dns: * (SEMVER-MINOR) add setLocalAddress to Resolver (Josh Dague) #34824 http: * (SEMVER-MINOR) report request start and end with diagnostics_channel (Stephen Belanger) #34895 http2: * (SEMVER-MINOR) add updateSettings to both http2 servers (Vincent Boivin) #35383 lib: * (SEMVER-MINOR) create diagnostics_channel module (Stephen Belanger) #34895 src: * (SEMVER-MINOR) add --heapsnapshot-near-heap-limit option (Joyee Cheung) #33010 v8: * (SEMVER-MINOR) implement v8.stopCoverage() (Joyee Cheung) #33807 * (SEMVER-MINOR) implement v8.takeCoverage() (Joyee Cheung) #33807 worker: * (SEMVER-MINOR) add eventLoopUtilization() (Trevor Norris) #35664 PR-URL: #35948
a90fdc1
to
2291e07
Compare
I made an update based on the new commits on master. @nodejs/release PTAL |
/cc @ljharb
|
Thanks; give me an hour and I’ll have is-core-module updated to recognize that module (thanks @Qard for inspect-js/is-core-module#1) |
@nodejs/release can I have at least one review? |
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.
LGTM
v2.1.0 of |
Notable changes: child_process: * (SEMVER-MINOR) add ChildProcess 'spawn' event (Matthew Francis Brunetti) #35369 dns: * (SEMVER-MINOR) add setLocalAddress to Resolver (Josh Dague) #34824 http: * (SEMVER-MINOR) report request start and end with diagnostics_channel (Stephen Belanger) #34895 http2: * (SEMVER-MINOR) add updateSettings to both http2 servers (Vincent Boivin) #35383 lib: * (SEMVER-MINOR) create diagnostics_channel module (Stephen Belanger) #34895 src: * (SEMVER-MINOR) add --heapsnapshot-near-heap-limit option (Joyee Cheung) #33010 v8: * (SEMVER-MINOR) implement v8.stopCoverage() (Joyee Cheung) #33807 * (SEMVER-MINOR) implement v8.takeCoverage() (Joyee Cheung) #33807 worker: * (SEMVER-MINOR) add eventLoopUtilization() (Trevor Norris) #35664 PR-URL: #35948
2020-11-04, Version 15.1.0 (Current), @targos
Notable Changes
Diagnostics channel (experimental module)
diagnostics_channel
is a new experimental module that provides an API to create named channels to report arbitrary message data for diagnostics purposes.With
diagnostics_channel
, Node.js core and module authors can publish contextual data about what they are doing at a given time. This could be the hostname and query string of a mysql query, for example. Just create a named channel withdc.channel(name)
and callchannel.publish(data)
to send the data to any listeners to that channel.Channels are like one big global event emitter but are split into separate objects to ensure they get the best performance. If nothing is listening to the channel, the publishing overhead should be as close to zero as possible. Consuming channel data is as easy as using
channel.subscribe(listener)
to run a function whenever a message is published to that channel.The data captured can be used to provide context for what an app is doing at a given time. This can be used for things like augmenting tracing data, tracking network and filesystem activity, logging queries, and many other things. It's also a very useful data source for diagnostics tools to provide a clearer picture of exactly what the application is doing at a given point in the data they are presenting.
Contributed by Stephen Belanger #34895.
New child process
'spawn'
eventInstances of
ChildProcess
now emit a new'spawn'
event once the child process has spawned successfully.If emitted, the
'spawn'
event comes before all other events and before any data is received viastdout
orstderr
.The
'spawn'
event will fire regardless of whether an error occurs within the spawned process.For example, if
bash some-command
spawns successfully, the'spawn'
event will fire, thoughbash
may fail to spawnsome-command
.This caveat also applies when using
{ shell: true }
.Contributed by Matthew Francis Brunetti #35369.
Set the local address for DNS resolution
It is now possible to set the local IP address used by a
Resolver
instance to send its requests.This allows programs to specify outbound interfaces when used on multi-homed
systems.
The resolver will use the v4 local address when making requests to IPv4 DNS servers, and the v6 local address when making requests to IPv6 DNS servers.
Contributed by Josh Dague #34824.
Control V8 coverage at runtime
The
v8
module includes two new methods to control the V8 coverage started by theNODE_V8_COVERAGE
environment variable.With
v8.takeCoverage()
, it is possible to write a coverage report to disk on demand. This can be done multiple times during the lifetime of the process, and the execution counter will be reset on each call.When the process is about to exit, one last coverage will still be written to disk, unless
v8.stopCoverage()
was invoked before.The
v8.stopCoverage()
method allows to stop the coverage collection, so that V8 can release the execution counters and optimize code.Contributed by Joyee Cheung #33807.
Analyze Worker's event loop utilization
Worker
instances now have aperformance
property, with a singleeventLoopUtilization
method that can be used to gather information about the worker's event loop utilization between the'online'
and'exit'
events.The method works the same way as
perf_hooks
eventLoopUtilization()
.Contributed by Trevor Norris #35664.
Take a V8 heap snapshot just before running out of memory (experimental)
With the new
--heapsnapshot-near-heap-limit=max_count
experimental command line flag, it is now possible to automatically generate a heap snapshot when the V8 heap usage is approaching the heap limit.count
should be a non-negative integer (in which case Node.js will write no more thanmax_count
snapshots to disk).When generating snapshots, garbage collection may be triggered and bring the heap usage down, therefore multiple snapshots may be written to disk before the Node.js instance finally runs out of memory. These heap snapshots can be compared to determine what objects are being allocated during the time consecutive snapshots are taken.
Generating V8 snapshots takes time and memory (both memory managed by the V8 heap and native memory outside the V8 heap). The bigger the heap is, the more resources it needs. Node.js will adjust the V8 heap to accommondate the additional V8 heap memory overhead, and try its best to avoid using up all the memory avialable to the process.
Contributed by Joyee Cheung #33010.
Commits
Semver-minor commits
8169902b40
] - (SEMVER-MINOR) child_process: add ChildProcess 'spawn' event (Matthew Francis Brunetti) #35369548f91af2c
] - (SEMVER-MINOR) dns: add setLocalAddress to Resolver (Josh Dague) #34824f861733bac
] - (SEMVER-MINOR) http: report request start and end with diagnostics_channel (Stephen Belanger) #34895883ed4b7f1
] - (SEMVER-MINOR) http2: add updateSettings to both http2 servers (Vincent Boivin) #35383b38a43d5d9
] - (SEMVER-MINOR) lib: create diagnostics_channel module (Stephen Belanger) #34895a7f37bc725
] - (SEMVER-MINOR) src: add --heapsnapshot-near-heap-limit option (Joyee Cheung) #330107bfa872013
] - (SEMVER-MINOR) v8: implement v8.stopCoverage() (Joyee Cheung) #3380715ffed5319
] - (SEMVER-MINOR) v8: implement v8.takeCoverage() (Joyee Cheung) #33807221e28311f
] - (SEMVER-MINOR) worker: add eventLoopUtilization() (Trevor Norris) #35664Semver-patch commits
d95013f399
] - assert,repl: enable ecmaVersion 2021 in acorn parser (Michaël Zasso) #35827b11c7378e3
] - build: fix lint-js-fix target (Antoine du Hamel) #35927a5fa849631
] - build: add vcbuilt test-doc target (Antoine du Hamel) #3570834281cdaba
] - build: turn off Codecov comments (bcoe) #35800a9c09246bb
] - build: add license-builder GitHub Action (Tierney Cyren) #357124447ff1162
] - build,tools: gitHub Actions: use Node.js Fermium (Antoine du Hamel) #35840273e147017
] - build,tools: add lint-js-doc target (Antoine du Hamel) #357080ebf44b466
] - crypto: pass empty passphrases to OpenSSL properly (Tobias Nießen) #35914644c416389
] - crypto: rename check to createJob (Daniel Bevenius) #3585879a8fb62e6
] - crypto: fixup scrypt regressions (James M Snell) #35821abd7c9447c
] - crypto: fix webcrypto ECDH JWK import (Filip Skokan) #35855d3f1cde908
] - deps: upgrade npm to 7.0.8 (Myles Borins) #3595355adee0947
] - deps: upgrade npm to 7.0.7 (Luigi Pinca) #359085cb77f2e79
] - deps: upgrade to cjs-module-lexer@1.0.0 (Guy Bedford) #359281303a1fca8
] - deps: update to cjs-module-lexer@0.5.2 (Guy Bedford) #3590120accb08fa
] - deps: upgrade to cjs-module-lexer@0.5.0 (Guy Bedford) #3587152a77db759
] - deps: update acorn to v8.0.4 (Michaël Zasso) #35791e0a1541260
] - deps: update to cjs-module-lexer@0.4.3 (Guy Bedford) #35745894419c1f4
] - deps: V8: backport 4263f8a5e8e0 (Brian 'bdougie' Douglas) #35650564aadedac
] - doc,src,test: revise C++ code for linter update (Rich Trott) #357197c8b5e5e0e
] - errors: do not call resolve on URLs with schemes (bcoe) #359031cdfaa80f8
] - events: add a few tests (Benjamin Gruenbaum) #35806f08e2c0213
] - events: make abort_controller event trusted (Benjamin Gruenbaum) #35811438d9debfd
] - events: make eventTarget.removeAllListeners() return this (Luigi Pinca) #35805b6b7a3b86a
] - http: lazy create IncomingMessage.headers (Robert Nagy) #3528186ed87b6b7
] - http2: fix reinjection check (Momtchil Momtchev) #356785833007eb0
] - http2: reinject data received before http2 is attached (Momtchil Momtchev) #35678cfe61b8714
] - http2: remove unsupported %.* specifier (Momtchil Momtchev) #35694d2f574b5be
] - lib: let abort_controller target be EventTarget (Daijiro Wachi) #35869b1e531a70b
] - lib: use primordials when calling methods of Error (Antoine du Hamel) #358370f5a8c55c2
] - module: runtime deprecate subpath folder mappings (Guy Bedford) #35747d16e2fa69a
] - n-api: napi_make_callback emit async init with resource of async_context (legendecas) #329300c17dbd201
] - n-api: revert change to finalization (Michael Dawson) #35777fb7196434e
] - src: remove redundant OpenSSLBuffer (James M Snell) #35663c9225789d3
] - src: remove ERR prefix in WebCryptoKeyExportStatus (Daniel Bevenius) #356394128eefcb3
] - src: remove ignore GCC -Wcast-function-type for v8 (Daniel Bevenius) #357684b8b5fee6a
] - src: use MaybeLocal.ToLocal instead of IsEmpty (Daniel Bevenius) #3571601d7c46776
] - Revert "src: ignore GCC -Wcast-function-type for v8.h" (Daniel Bevenius) #357582868f52a5c
] - stream: fix regression on duplex end (Momtchil Momtchev) #3594170c41a830d
] - stream: remove redundant context from comments (Yash Ladha) #3572888eb6191e4
] - stream: fix duplicate logic in stream destroy (Yash Ladha) #35727a41e3ebc3a
] - timers: correct explanation in comment (Turner Jabbour) #35437ee15142fef
] - tls: allow reading data into a static buffer (Andrey Pechkurov) #35753102d7dfe02
] - zlib: test BrotliCompress throws invalid arg value (raisinten) #35830Documentation commits
7937fbe3bc
] - doc: update tables in README files for linting changes (Rich Trott) #35905c5b94220c5
] - doc: temporarily disable list-item-bullet-indent (Nick Schonning) #3564759b36af8d5
] - doc: disable no-undefined-references workarounds (Nick Schonning) #35647eb55462a75
] - doc: adjust table alignment for remark v13 (Nick Schonning) #356470ac4a6ab16
] - doc: update crypto.createSecretKey history (Ben Turner) #358744899998855
] - doc: move bnoordhuis to emeritus (Ben Noordhuis) #35865337bfcf614
] - doc: add on statement in the APIs docs (Pooja D.P) #356109703219fdb
] - doc: fix a typo in CHANGELOG_V15 (Takuya Noguchi) #35804c14889bcc1
] - doc: move ronkorving to emeritus (Rich Trott) #358288c2b17926c
] - doc: recommend test-doc instead of lint-md (Antoine du Hamel) #357080580258449
] - doc: fix reference to googletest test fixture (Tobias Nießen) #35813d291e3abd9
] - doc: stabilize packages features (Myles Borins) #357425e8d821b4c
] - doc: add conditional example for setBreakpoint() (Chris Opperwall) #358238074f69f82
] - doc: make small improvements to REPL doc (Rich Trott) #358084e76a3c106
] - doc: update MessagePort documentation for EventTarget inheritance (Anna Henningsen) #358393db4354cc8
] - doc: use case-sensitive in the example (Pooja D.P) #35624b07f4a3f7a
] - doc: consolidate and clarify breakOnSigInt text (Rich Trott) #35787c2e6a4b081
] - doc: fix _construct example params order (Alejandro Oviedo) #357906513a589fe
] - doc: add a subsystems header in pull-requests.md (Pooja D.P) #35718c365867c60
] - doc: fix typo in BUILDING.md (raisinten) #358076211ffd2f7
] - doc: add require statement in the example (Pooja D.P) #355547b3743d8dd
] - doc: modified memory set statement set size (Pooja D.P) #35517afbe23d800
] - doc: use kbd element in readline doc prose (Rich Trott) #35737c0a4fac040
] - doc: fix a typo in CHANGELOG_V12 (Shubham Parihar) #357860e9acf83f7
] - doc: fix header level in fs.md (ax1) #35771f49afb5e10
] - doc: remove stability warning in v8 module doc (Rich Trott) #35774368ae952b2
] - doc: mark optional parameters in timers.md (Vse Mozhe Buty) #35764f6aa7c82c5
] - doc: add a example code to API doc property (Pooja D.P) #3573855b7a6cea3
] - doc: document changes for\*/promises
alias modules (ExE Boss) #340024b7708a316
] - doc: update console.error example (Lee, Bonggi) #34964292b529dfa
] - doc: add missing link in Node.js 14 Changelog (Antoine du Hamel) #35782890b03ecd6
] - doc: improve text for breakOnSigint (Rich Trott) #356921892532ee8
] - doc: this prints replaced with this is printed (Pooja D.P) #355156590f8cb4a
] - doc: update package.json field definitions (Myles Borins) #35741f269c6cbe2
] - doc: add Installing Node.js header in BUILDING.md (Pooja D.P) #3571005a888a8c3
] - doc,esm: document experimental warning removal (Antoine du Hamel) #35750092c6c4f8f
] - doc,test: update v8 method doc and comment (Rich Trott) #35795Other commits
76ebae4c05
] - benchmark: make the benchmark tool work with Node 10 (Joyee Cheung) #358179b549c1691
] - benchmark: add startup benchmark for loading public modules (Joyee Cheung) #358165d61e3db4b
] - test: add missing ref comments to parallel.status (Rich Trott) #35896231af88001
] - test: correct test-worker-eventlooputil (Gerhard Stoebich) #35891da612dfc20
] - test: integrate abort_controller tests from wpt (Daijiro Wachi) #3586966ad4be2c1
] - test: add test to fs/promises setImmediate (tyankatsu) #35852830b789299
] - test: mark test-worker-eventlooputil flaky (Myles Borins) #358867691b673dc
] - test: mark test-http2-respond-file-error-pipe-offset flaky (Myles Borins) #35883de3dcd7356
] - test: fix reference to WPT testharness.js (Tobias Nießen) #358148958af4aa0
] - test: add onerror test cases to policy (Daijiro Wachi) #35797dd3cbb455a
] - test: add upstream test cases to encoding (Daijiro Wachi) #3579476991c039f
] - test: add upstream test cases to urlsearchparam (Daijiro Wachi) #35792110ef8aa50
] - test: refactor coverage logic (bcoe) #357670c5e8ed651
] - test: add additional deprecation warning tests for rmdir recursive (Ian Sutherland) #3568311eca36e83
] - test: add windows and C++ coverage (Benjamin Coe) #35670fd027cd61a
] - tools: bump remark-lint-preset-node to 2.0.0 (Rich Trott) #35905c09fdba786
] - tools: refloat 7 Node.js patches to cpplint.py (Rich Trott) #358663955ccd305
] - tools: bump cpplint to 1.5.1 (Rich Trott) #35866a07d1af4ea
] - tools: update ESLint to 7.12.1 (cjihrig) #35799d20b318c58
] - tools: update ESLint to 7.12.0 (cjihrig) #3579931753ec8aa
] - tools: add msvc /P output to .gitignore (Jiawen Geng) #35735afb3e24cb0
] - tools: add update-npm script (Myles Borins) #3582266da122d46
] - tools: refloat 7 Node.js patches to cpplint.py (Rich Trott) #35719042d4dd71c
] - tools: bump cpplint to 1.5.0 (Rich Trott) #35719