-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
v12.15.0 release proposal #31368
Closed
Closed
v12.15.0 release proposal #31368
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PR-URL: #30863 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
PR-URL: #30840 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Minwoo Jung <[email protected]>
Disable colorMode in test-console-group so that the test will succeed if run without the test runner from the command line. PR-URL: #30886 Reviewed-By: Shelley Vohr <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Add information about what it means when colorMode is set to false. PR-URL: #30887 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
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 <[email protected]> Reviewed-By: David Carlier <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Rich Trott <[email protected]>
Revise compilation/execution support text to keep it shorter, simpler, and hopefully easier to read/understand. PR-URL: #30899 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Jiawen Geng <[email protected]>
doc change for stream.md that 'finish' event should be before writer.end fixes: #30759 PR-URL: #30889 Fixes: #30759 Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Rich Trott <[email protected]>
PR-URL: #30877 Reviewed-By: David Carlier <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Rich Trott <[email protected]>
PR-URL: #30852 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]>
Change '==' to '===' in v8_prof_polyfill.js, punycode.js. PR-URL: #30898 Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: David Carlier <[email protected]> Reviewed-By: Rich Trott <[email protected]>
process.nextTick accepts additional parameters which are passed through to the callback. Use that instead of binding the function to a context. PR-URL: #28131 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
Pass through parameters using setImmediate rather than using Function.prototype.bind to bind the provided context. PR-URL: #28131 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
Don't use Function.prototype.bind where it isn't necessary. Rely on event emitter context instead and on arrow function as class property. PR-URL: #28131 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
PR-URL: #28131 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
PR-URL: #28131 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
This simplifies requires for those using DebugOptions, since debug_options was defined in src/node_options-inl.h and thus embedders would need to require an extra file to do what could trivially be consolidated into one. PR-URL: #30494 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: David Carlier <[email protected]>
OpenSSL uses a macro without typechecking; since C++ does not implicitly cast void* this is needed to conform Node.js to the OpenSSL documentation. PR-URL: #30917 Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Rich Trott <[email protected]>
PR-URL: #30913 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
The return value is not a boolean and even if interpreted as one, it does not indicate whether an exception is pending. For napi_is_exception_pending, the description of the result parameter already explains how to check whether an exception is pending. PR-URL: #30893 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Gabriel Schulhof <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
Prior to this commit, running `node tools/lint-md --help` and `node tools/lint-md --version` resulted in an error. * Use `unified-args` to start processor * Use `unified-args`'s error handler Fixes: #30156 PR-URL: #30216 Reviewed-By: Rich Trott <[email protected]>
PR-URL: #30931 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
test-windows-failed-heap-allocation forces a out of mem crash resulting in a report file. To avoid a leftover in repo the child is started in a tmp folder like in test-report-fatal-error. PR-URL: #30925 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: David Carlier <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Prior to this commit, new contributors were suggested to use a utility to validate commit messages. Although not inaccurate, this utility produces misleading results. * Remove reference to `core-validate-commit` PR-URL: #30922 Reviewed-By: Myles Borins <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Rich Trott <[email protected]>
Adding tests covering promises-related code paths. PR-URL: #30777 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Ben Coe <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
I've been doing a lot of work on-and-off to reduce unnecessary wordiness in our docs. Codify it in the style guide. PR-URL: #30935 Reviewed-By: David Carlier <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: James M Snell <[email protected]>
Fixes: #30953 PR-URL: #30957 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Anatoli Papirovski <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: David Carlier <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Gus Caplan <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: #30945 Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
PR-URL: #30918 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Chengzhong Wu <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: James M Snell <[email protected]>
Refs: #20392 PR-URL: #30564 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Gus Caplan <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: James M Snell <[email protected]>
It could be convenient to trace abnormal exit of the Node.js processes that printing stacktrace on each `process.exit` call with a cli option. This also takes effects on worker threads. PR-URL: #30516 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]>
This makes sure that `util.format('%s', object)` will always call a user defined `toString` function. It was formerly not the case when the object had the function declared on the super class. At the same time this also makes sure that getters won't be triggered accessing the `constructor` property. Backport-PR-URL: #31431 PR-URL: #30343 Fixes: #30333 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Denys Otrishko <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]>
This adds a couple of benchmarks to check different options and code paths. Backport-PR-URL: #31431 PR-URL: #30767 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Denys Otrishko <[email protected]> Reviewed-By: Rich Trott <[email protected]>
This makes sure we do not retrieve the handler in case it's not required. This improves the performance a tiny bit for these cases. Backport-PR-URL: #31431 PR-URL: #30767 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Denys Otrishko <[email protected]> Reviewed-By: Rich Trott <[email protected]>
Backport-PR-URL: #31431 PR-URL: #30767 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Denys Otrishko <[email protected]> Reviewed-By: Rich Trott <[email protected]>
This makes sure that the regular expression matches all built-in objects properly. So far a couple where missed. Backport-PR-URL: #31431 PR-URL: #30768 Fixes: #30183 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
This is only active if the `showHidden` option is truthy. The implementation is a trade-off between accuracy and performance. This will miss properties such as properties added to built-in data types. The goal is mainly to visualize prototype getters and setters such as: class Foo { ownProperty = true get bar() { return 'Hello world!' } } const a = new Foo() The `bar` property is a non-enumerable property on the prototype while `ownProperty` will be set directly on the created instance. The output is similar to the one of Chromium when inspecting objects closer. The output from Firefox is difficult to compare, since it's always a structured interactive output and was therefore not taken into account. Backport-PR-URL: #31431 PR-URL: #30768 Fixes: #30183 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
This removes the special handling to inspect iterable objects with a null prototype. It is now handled together with the regular prototype. Backport-PR-URL: #31431 PR-URL: #30225 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Rich Trott <[email protected]>
Align the inspect output with the one used in the Chrome dev tools. A recent survey outlined that most users prefer to see the number of set and map entries. This should count as well for array sizes. The size is only added to regular arrays in case the constructor is not the default constructor. Typed arrays always indicate their size. Backport-PR-URL: #31431 PR-URL: #31027 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Anto Aravinth <[email protected]>
This makes sure this function stays backwards compatible in case it's accessed through the binding directly. Refs: #29947 (comment) Backport-PR-URL: #31431 PR-URL: #30858 Refs: #30767 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: David Carlier <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
The fast path for the prototype inspection had a bug that caused some prototype properties to be skipped that should in fact be inspected. Backport-PR-URL: #31431 PR-URL: #31113 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Rich Trott <[email protected]>
This makes sure the `generatedMessage` property is always set as expected. This was not the case some `assert.throws` and `assert.rejects` calls. Backport-PR-URL: #31431 PR-URL: #28263 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: James M Snell <[email protected]>
This refactors some code for less duplication. Backport-PR-URL: #31431 PR-URL: #28263 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: James M Snell <[email protected]>
This updates two outdated examples to the current implementation. Backport-PR-URL: #31431 PR-URL: #28263 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: James M Snell <[email protected]>
This makes sure that `AssertionError` links to the correct place in the assert documentation. Backport-PR-URL: #31431 PR-URL: #28263 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: James M Snell <[email protected]>
This adds a new functionality to the assertion module: a dedicated check for regular expressions. So far it's possible to use `assert.ok(regexp.test(string))`. This is not ideal though when it comes to the error message, since it's not possible to know how either of the input values look like. It's just known that the assertion failed. This allows to pass through the regular expression and the input string. The string is then matched against the regular expression and reports a expressive error message in case of a failure. Backport-PR-URL: #31431 PR-URL: #30929 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Stephen Belanger <[email protected]>
MylesBorins
force-pushed
the
v12.15.0-proposal
branch
from
January 30, 2020 23:25
afc0d10
to
7ff1c52
Compare
Notable changes: TODO PR-URL: #31368
MylesBorins
force-pushed
the
v12.15.0-proposal
branch
from
January 30, 2020 23:26
7ff1c52
to
dc5c052
Compare
closing in lieu of #31691 |
targos
added
release
Issues and PRs related to Node.js releases.
and removed
lts
Issues and PRs related to Long Term Support releases.
release-agenda
Issues and PRs to discuss during the meetings of the Release team.
labels
Jun 6, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
2020-02-12, Version 12.16.0 'Erbium' (LTS), @targos
Notable changes
Semver-minor changes
Advanced serialization for IPC
The
child_process
andcluster
modules now support aserialization
optionto change the serialization mechanism used for IPC. The option can have one of
two values:
'json'
(default):JSON.stringify()
andJSON.parse()
are used. This ishow message serialization was done before.
'advanced'
: The serialization API of thev8
module is used. It is based onthe HTML structured clone algorithm
and is able to serialize more built-in JavaScript object types, such as
BigInt
,Map
,Set
etc. as well as circular data structures.Anna Henningsen #30162.
CLI flags
The new
--trace-exit
CLI flag makes Node.js print a stack trace whenever theNode.js environment is exited proactively (i.e. by invoking the
process.exit()
function or pressing Ctrl+C).
legendecas #30516.
The new
--trace-uncaught
CLI flag makes Node.js print a stack trace at thetime of throwing uncaught exceptions, rather than at the creation of the
Error
object, if there is any.
This option is not enabled by default because it may affect garbage collection
behavior negatively.
Anna Henningsen #30025.
The
--disallow-code-generation-from-strings
V8 CLI flag is now whitelisted inthe
NODE_OPTIONS
environment variable.Shelley Vohr #30094.
New crypto APIs
For DSA and ECDSA, a new signature encoding is now supported in addition to the
existing one (DER). The
verify
andsign
methods accept adsaEncoding
option, which can have one of two values:
'der'
(default): DER-encoded ASN.1 signature structure encoding(r, s)
.'ieee-p1363'
: Signature formatr || s
as proposed in IEEE-P1363.Tobias Nießen #29292.
A new method was added to
Hash
:Hash.prototype.copy
. It makes it possible toclone the internal state of a
Hash
object into a newHash
object, allowingto compute the digest between updates:
Ben Noordhuis #29910.
Dependency updates
libuv was updated to 1.34.0. This includes fixes to
uv_fs_copyfile()
anduv_interface_addresses()
and adds two new functions:uv_sleep()
anduv_fs_mkstemp()
.Colin Ihrig #30783.
V8 was updated to 7.8.279.23. This includes performance improvements to object
destructuring, RegExp match failures and WebAssembly startup time.
The official release notes are available at https://v8.dev/blog/v8-release-78.
Michaël Zasso #30109.
New EventEmitter APIs
The new
EventEmitter.on
static method allows to async iterate over events:Matteo Collina #27994.
It is now possible to monitor
'error'
events on anEventEmitter
withoutconsuming the emitted error by installing a listener using the symbol
EventEmitter.errorMonitor
:Gerhard Stoebich #30932.
Using
async
functions with event handlers is problematic, because itcan lead to an unhandled rejection in case of a thrown exception:
The
captureRejections
option in theEventEmitter
constructor or the globalsetting change this behavior, installing a
.then(undefined, handler)
handleron the
Promise
. This handler routes the exception asynchronously to theSymbol.for('nodejs.rejection')
method if there is one, or to the'error'
event handler if there is none.
Setting
EventEmitter.captureRejections = true
will change the default for allnew instances of
EventEmitter
.This is an experimental feature.
Matteo Collina #27867.
Other
bufferSize
option tofs.opendir()
(Anna Henningsen) #30114napi\_detach\_arraybuffer
(legendecas) #29768Commits
67ec97a086
] - (SEMVER-MINOR) assert: implementassert.match()
andassert.doesNotMatch()
(Ruben Bridgewater) #30929881ebce0f3
] - (SEMVER-MINOR) assert: DRY .throws code (Ruben Bridgewater) #28263e938784173
] - (SEMVER-MINOR) assert: fix generatedMessage property (Ruben Bridgewater) #282639da54444dd
] - assert: use for...of (Soar) #309835bd6947d0e
] - (SEMVER-MINOR) assert: fix line number calculation after V8 upgrade (Michaël Zasso) #296941f68004954
] - assert,util: stricter type comparison using deep equal comparisons (Ruben Bridgewater) #30764c6be79a34e
] - async_hooks: ensure proper handling in runInAsyncScope (Anatoli Papirovski) #30965a1555cb276
] - benchmark: add more util inspect and format benchmarks (Ruben Bridgewater) #307674ee5665939
] - benchmark: use let instead of var in dgram (dnlup) #31175b48cfccffa
] - benchmark: add benchmark on async_hooks enabled http server (legendecas) #31100d30911e51b
] - benchmark: use let instead of var in crypto (dnlup) #31135dc8c955fe9
] - benchmark: replace var with let/const in cluster benchmark (dnlup) #31042d5c0e4d8b1
] - benchmark: include writev in benchmark (Robert Nagy) #3106615adbe8d66
] - benchmark: use let instead of var in child_process (dnlup) #310438c3b8e02f0
] - benchmark: add clear connections to secure-pair (Diego Lafuente) #2797113337985f7
] - benchmark: update manywrites back pressure (Robert Nagy) #3097747b53676bd
] - benchmark: use let/const instead of var in buffers (dnlup) #30945ac5de4f4c8
] - benchmark: improve--filter
pattern matching (Matheus Marchini) #2998757f29b71b3
] - bootstrap: use different scripts to setup different configurations (Joyee Cheung) #308628252c06165
] - buffer: release buffers with free callbacks on env exit (Anna Henningsen) #3055183f02c0af8
] - buffer: improve .from() error details (Ruben Bridgewater) #2967567a2a47484
] - build: auto-load ICU data from --with-icu-default-data-dir (Stephen Gallagher) #30825e5e60f5599
] - build: remove (almost) unused macros/constants (Benjamin Coe) #3075535ce8bbaef
] - build: do not build mksnapshot and mkcodecache for --shared (Joyee Cheung) #3064778c46c5b1a
] - build: add --without-node-code-cache configure option (Joyee Cheung) #306478ab748e13a
] - build: don't use -latomic on macOS (Ryan Schmidt) #300994cd459c9bd
] - build: fixes build for some os versions (David Carlier)1811b1a742
] - build: fix missing x64 arch suffix in binary tar name (legendecas) #30877add17b19f4
] - build: on Android, use android log library to print stack traces (Giovanni Campagna) #2938865e67cb671
] - build: fix library version and compile flags on Android (Giovanni Campagna) #2938850f6541e10
] - build: ease DragonFlyBSD build (David Carlier) #30201f5cd6d73fd
] - build: warn upon --use-largepages config option (Gabriel Schulhof) #31103dea40f8c52
] - build: switch realpath to pwd (Benjamin Coe) #310955fcf542faa
] - build: re-introduce --use-largepages as no-op (Gabriel Schulhof)cf3926e310
] - (SEMVER-MINOR) build: reset embedder string to "-node.0" (Michaël Zasso) #3010978cf6d0f89
] - build,win: fix goto exit in vcbuild (João Reis) #309314c317ce4d0
] - (SEMVER-MINOR) child_process,cluster: allow using V8 serialization API (Anna Henningsen) #301627bfc339c47
] - (SEMVER-MINOR) cli: add --trace-exit cli option (legendecas) #30516f3196db13f
] - (SEMVER-MINOR) cli: whitelist new V8 flag in NODE_OPTIONS (Shelley Vohr) #30094e08c008b5d
] - (SEMVER-MINOR) cli: add --trace-uncaught flag (Anna Henningsen) #30025f76f143846
] - cluster: remove unnecessary bind (Anatoli Papirovski) #2813117fc4b093f
] - console: unregister temporary error listener (Robert Nagy) #30852e4b3181f2e
] - crypto: cast oaepLabel to unsigned char* (Shelley Vohr) #309172e06b854b8
] - crypto: automatically manage memory for ECDSA_SIG (Tobias Nießen) #30641f8d3ea987d
] - (SEMVER-MINOR) crypto: add support for IEEE-P1363 DSA signatures (Tobias Nießen) #29292497b59b156
] - (SEMVER-MINOR) crypto: add Hash.prototype.copy() method (Ben Noordhuis) #2991002d72838db
] - deps: V8: cherry-pick 0dfd9ea51241 (Benjamin Coe) #3071309e4182a21
] - deps: V8: cherry-pick d89f4ef1cd62 (Milad Farazmand) #31354678429640c
] - deps: uvwasi: cherry-pick 75b389c (Colin Ihrig) #31076a9d9fdbe5c
] - deps: uvwasi: cherry-pick 64e59d5 (Colin Ihrig) #310765d545d064e
] - deps: update uvwasi (Anna Henningsen) #30745015671dca2
] - deps: V8: cherry-pick b38dfaf3a633 (Matheus Marchini) #308708c5e951eba
] - deps: V8: cherry-pick cc5016e1b702 (Matheus Marchini) #30870c6600d1937
] - (SEMVER-MINOR) deps: upgrade http-parser to v2.9.1 (Sam Roberts) #30473d905d04df2
] - deps: V8: backport a4545db (David Carlier) #3112786d1998f02
] - deps: V8: cherry-pick d406bfd64653 (Sam Roberts) #30819ccf1178331
] - deps: V8: cherry-pick d3a1a5b6c491 (Michaël Zasso) #31005fff116737f
] - (SEMVER-MINOR) deps: upgrade to libuv 1.34.0 (Colin Ihrig) #30783b27b420bc3
] - deps: fix OPENSSLDIR on Windows (Shigeki Ohtsu) #29456fcc4bf9667
] - deps: V8: cherry-pick ca5b0ec (Anna Henningsen) #3070842c456089a
] - deps: V8: backport 777fa98 (Michaël Zasso) #30062512a0cc63c
] - deps: V8: cherry-pick 53e62af (Michaël Zasso) #29898e60dc1dd22
] - (SEMVER-MINOR) deps: patch V8 to be API/ABI compatible with 7.4 (from 7.7) (Michaël Zasso) #29241887ca3b184
] - deps: patch V8 to be API/ABI compatible with 7.4 (from 7.6) (Michaël Zasso) #28955da3459b14e
] - (SEMVER-MINOR) deps: patch V8 to be API/ABI compatible with 7.4 (from 7.5) (Michaël Zasso) #280058a16f80453
] - (SEMVER-MINOR) deps: update V8's postmortem script (Colin Ihrig) #296946e3828ff12
] - deps: V8: cherry-pick a7dffcd767be (Christian Clauss) #30218dced9beef6
] - (SEMVER-MINOR) deps: V8: cherry-pick 0a055086c377 (Michaël Zasso) #30109c5fdb343e4
] - deps: V8: cherry-pick e5dbc95 (Gabriel Schulhof) #30130553afa90ad
] - deps: V8: cherry-pick ed40ab1 (Michaël Zasso) #30064f364b50774
] - (SEMVER-MINOR) deps: V8: cherry-pick 716875d (Myles Borins) #2969443c5b91ffd
] - deps: V8: cherry-pick 35c6d4d (Sam Roberts) #2958523271dd50a
] - deps: V8: cherry-pick deac757 (Benjamin Coe) #2962635ce2f63c1
] - (SEMVER-MINOR) deps: V8: fix linking issue for MSVS (Refael Ackermann) #28016c0e829f766
] - (SEMVER-MINOR) deps: V8: fix BUILDING_V8_SHARED issues (Refael Ackermann) #2737502b54af39f
] - (SEMVER-MINOR) deps: V8: add workaround for MSVC optimizer bug (Refael Ackermann) #28016367620cc5b
] - (SEMVER-MINOR) deps: V8: use ATOMIC_VAR_INIT instead of std::atomic_init (Refael Ackermann) #2737578b1b5ca91
] - (SEMVER-MINOR) deps: V8: forward declaration ofRtl\*FunctionTable
(Refael Ackermann) #273752efd0ec96b
] - (SEMVER-MINOR) deps: V8: patch register-arm64.h (Refael Ackermann) #2737585041b4c9b
] - (SEMVER-MINOR) deps: V8: silence irrelevant warning (Michaël Zasso) #26685cdd763d931
] - (SEMVER-MINOR) deps: V8: un-cherry-pick bd019bd (Refael Ackermann) #26685b28a85d0b3
] - (SEMVER-MINOR) deps: V8: fix filename manipulation for Windows (Refael Ackermann) #28016ec625fb8f8
] - (SEMVER-MINOR) deps: update V8 to 7.8.279.23 (Michaël Zasso) #3010925f2df4538
] - deps,http: http_parser set max header size to 8KB (Matteo Collina) nodejs-private/node-private#143008ac37ee5
] - (SEMVER-MINOR) deps,src: patch V8 to be API/ABI compatible with 7.4 (from 7.8) (Anna Henningsen) #301098b11954470
] - deps,src,test: update to uvwasi 0.0.3 (Colin Ihrig) #3098083f89396e4
] - dgram: test to add and to drop specific membership (A. Volgin) #31047334fcbe210
] - dgram: use for...of (Trivikram Kamat) #309991aeca6d087
] - (SEMVER-MINOR) dgram: add source-specific multicast support (Lucas Pardue) #157355c6a6b8b27
] - (SEMVER-MINOR) doc: makeAssertionError
a link (Ruben Bridgewater) #282636d8a54129d
] - (SEMVER-MINOR) doc: update assert.throws() examples (Ruben Bridgewater) #28263625ed708a6
] - doc: remove extra backtick (Colin Ihrig) #311864bbf584ac8
] - doc: use code markup/markdown in headers (Ruben Bridgewater) #3114942ccf22fb7
] - doc: add note about fs.close() about undefined behavior (Robert Nagy) #30966b1358d3cc0
] - doc: add code example to inspector.url() method (Juan José Arboleda) #29496ec514a6a98
] - doc: deprecate http finished (Robert Nagy) #28679f281946b12
] - doc: update REPL documentation to instantiate the REPL (Ruben Bridgewater) #3092839dbc10134
] - doc: improve explanation of package.json "type" field (Ronald J Kimball) #275167aa77594af
] - doc: clarify role of writable.cork() (Colin Grant) #3044225fb34c754
] - doc: de-duplicate security release processes (Sam Roberts) #3099691e7c14bb6
] - doc: fix createDiffieHellman generator type (Tobias Nießen) #31121cb75f566fd
] - doc: update mode type for mkdir() functions (Colin Ihrig) #31115cd310e1184
] - doc: update mode type for process.umask() (Colin Ihrig) #311155948ff4872
] - doc: update mode type for fs open() functions (Colin Ihrig) #31115a5f1434297
] - doc: update mode type for fchmod() functions (Colin Ihrig) #3111554cbbae66e
] - doc: update parameter type for fsPromises.chmod() (Colin Ihrig) #311156c9bc3cdfa
] - doc: improve dns introduction (Rich Trott) #31090671a5b71a3
] - doc: update parameter type for fs.chmod() (Santosh Yadav) #310855db6758a99
] - doc: add --inspect-publish-uid man page entry (Colin Ihrig) #31077b28b16bf56
] - doc: add --force-context-aware man page entry (Colin Ihrig) #31077f08130ea2b
] - doc: add --enable-source-maps man page entry (Colin Ihrig) #310772aab93e4c8
] - doc: fix anchors and subtitle in BUILDING.md (sutangu) #302965c522dd59a
] - doc: standardize usage of hostname vs. host name (Rich Trott) #31073bbb5707699
] - doc: add unrepresented flags docs for configure (Pranshu Srivastava) #280691f0a1d5bbb
] - doc: improve doc net:server.listen (dev-313) #310642f7bd150f7
] - doc: implement minor improvements to BUILDING.md text (Rich Trott) #31070ea5be29d99
] - doc: avoid using v8::Persistent in addon docs (Anna Henningsen) #310187822eb1520
] - doc: reference worker threads on signal events (legendecas) #3099008186b25f7
] - doc: update message.url example in http.IncomingMessage (Tadao Iseki) #308305537fae526
] - doc: explain napi_run_script (Tobias Nießen) #309189e5d39c56f
] - doc: add "Be direct." to the style guide (Rich Trott) #30935c554c0e430
] - doc: clarify expectations for PR commit messages (Derek Lewis) #309225a8a7a4bb9
] - doc: fix description of N-API exception handlers (Tobias Nießen) #30893690deaa3bd
] - doc: improve doc writable streams: 'finish' event (dev-313) #308892f4615c9f3
] - doc: clarify build support text (Rich Trott) #30899169a3d5550
] - doc: edit colorMode information (Rich Trott) #3088716283b8840
] - doc: fix argument type of setAAD (Tobias Nießen) #308633ac40b933b
] - doc: clarify Tier 2 implications in BUILDING.md (Rich Trott) #30866a8df2e28ac
] - doc: improve doc Http2Stream: FrameError, Timeout and Trailers (dev-313) #303730f0388c680
] - doc: include line/cursor in readline documentation (Jeremy Albright) #3066707ba50a8cf
] - doc: improve napi formatting (Ruben Bridgewater) #307724cb8476bb5
] - doc: add documentation about node_mksnapshot and mkcodecache (Joyee Cheung) #30773ae65f8c3af
] - doc: remove imprecise and redundant testing text (Rich Trott) #307634aac4242dd
] - doc: remove usage of "Node" in favor of "Node.js" (Rich Trott) #307584c1f85b395
] - doc: revise addons introduction for brevity and clarity (Rich Trott) #307561c452f0fcb
] - doc: fix up N-API doc (NickNaso) #30656ffad4369bc
] - doc: adds assert doc for strict mode with pointer to strict equality (Shobhit Chittora) #30486bc23dfe0ce
] - doc: Buffer.toString(): add note about invalid data (Jan-Philip Gehrcke) #30706d60da089d5
] - doc: clarify text about using 'session' event for compatibility (Rich Trott) #307460a34cf569e
] - doc: fix worker.resourceLimits indentation (Daniel Nalborczyk) #30663e1c559ea60
] - doc: fix worker.resourceLimits type (Daniel Nalborczyk) #30664f8cd96ad0c
] - doc: simplify "is recommended" language in assert documentation (Rich Trott) #305583b4b0de25e
] - doc: update http.md mention of socket (Jesse O'Connor) #30155c6b6e3fcb4
] - doc: clarify required flag for extensionless esm (Lucas Azzola) #30657005cad393f
] - doc: avoid proposal syntax in code example (Alex Zherdev) #30685b99eca950d
] - doc: esm: improve dual package hazard docs (Geoffrey Booth) #3034553b398451b
] - doc: fix some recent doc nits (vsemozhetbyt) #303416ac1b13192
] - doc: update outdated commonjs compat info (Geoffrey Booth) #30512d043692d0b
] - doc: update divergent specifier hazard guidance (Geoffrey Booth) #300515679b61585
] - doc: include --experimental-resolve-self in manpage (Guy Bedford) #299780d431352d2
] - doc: update vm.md for link linting (Rich Trott) #299824e8b8bcb76
] - doc: make YAML matter consistent in crypto.md (Rich Trott) #3001631d38643fe
] - doc: fix numbering in require algorithm (Jan Krems) #3011755dc0bc656
] - doc: use code markup/markdown in headers in globals documentation (Rich Trott) #310867602290b14
] - doc: use code markup/markdown in headers in deprecations documentation (Rich Trott) #3108688cdc5155b
] - doc: use code markup/markdown in headers in addons documentation (Rich Trott) #31086805fb8fce6
] - doc: allow <code> in header elements (Rich Trott) #310864087825b5f
] - doc,assert: use code markup/markdown in headers (Rich Trott) #31086be5450c8ad
] - doc,async_hooks: use code markup/markdown in headers (Rich Trott) #31086d68807b3c6
] - doc,benchmark: move benchmark guide to benchmark directory (Rich Trott) #30781c470e6e629
] - doc,buffer: use code markup/markdown in headers (Rich Trott) #31086d56fc6accd
] - doc,child_process: use code markup/markdown in headers (Rich Trott) #310864abe95550e
] - doc,cluster: use code markup/markdown in headers (Rich Trott) #31086b96c411fd8
] - doc,console: use code markup/markdown in headers (Rich Trott) #31086886fa78794
] - doc,crypto: use code markup/markdown in headers (Rich Trott) #310861d8b45f89f
] - doc,dgram: use code markup/markdown in headers (Rich Trott) #310866d712ac5b8
] - doc,dns: use code markup/markdown in headers (Rich Trott) #3108692dd882e37
] - doc,domain: use code markup/markdown in headers (Rich Trott) #31086bde2625824
] - doc,errors: use code markup/markdown in headers (Rich Trott) #310869cddfe231b
] - doc,esm: use code markup/markdown in headers (Rich Trott) #31086078cea8ca8
] - doc,events: use code markup/markdown in headers (Rich Trott) #31086f5e0e20b85
] - doc,fs: use code markup/markdown in headers (Rich Trott) #31086015cb26cc5
] - doc,http: use code markup/markdown in headers (Rich Trott) #310867d9cce6d75
] - doc,http2: use code markup/markdown in headers (Rich Trott) #310866e45e32b9b
] - doc,https: use code markup/markdown in headers (Rich Trott) #3108630ee4ac89a
] - doc,inspector: use code markup/markdown in headers (Rich Trott) #310868be52c448b
] - doc,lib,src,test: rename WASI CLI flag (Colin Ihrig) #309807bfaf502a5
] - doc,module: use code markup/markdown in headers (Rich Trott) #310863d9bf149ca
] - doc,n-api: mark napi_detach_arraybuffer as experimental (legendecas) #30703ca6d6f3e04
] - doc,net: use code markup/markdown in headers (Rich Trott) #31086fcfcd1d0bf
] - doc,os: use code markup/markdown in headers (Rich Trott) #310862fe0f907b2
] - doc,path: use code markup/markdown in headers (Rich Trott) #3108690d067c3f0
] - doc,perf_hooks: use code markup/markdown in headers (Rich Trott) #3108638c6a3faab
] - doc,process: use code markup/markdown in headers (Rich Trott) #310867e71ddfcd7
] - doc,punycode: use code markup/markdown in headers (Rich Trott) #31086cf38b43882
] - doc,querystring: use code markup/markdown in headers (Rich Trott) #31086f521a98939
] - doc,readline: use code markup/markdown in headers (Rich Trott) #31086ce4545bfba
] - doc,repl: use code markup/markdown in headers (Rich Trott) #31086920b8d59a2
] - doc,stream: use code markup/markdown in headers (Rich Trott) #3108637e32431f1
] - doc,string_decoder: use code markup/markdown in headers (Rich Trott) #31086fa6ac14096
] - doc,timers: use code markup/markdown in headers (Rich Trott) #3108686bcf6c25c
] - doc,tls: use code markup/markdown in headers (Rich Trott) #310869ca825192f
] - doc,tty: use code markup/markdown in headers (Rich Trott) #31086c5853452ad
] - doc,url: use code markup/markdown in headers (Rich Trott) #3108632956444e0
] - doc,util: use code markup/markdown in headers (Rich Trott) #310867d2748a85d
] - doc,v8: use code markup/markdown in headers (Rich Trott) #31086b6e892bca9
] - doc,vm: use code markup/markdown in headers (Rich Trott) #31086ee9e8179ab
] - doc,vm,test: remove _sandbox_ from vm documentation (Rich Trott) #31057c51153cebb
] - doc,wasi: use code markup/markdown in headers (Rich Trott) #3108636b3e152da
] - doc,worker: use code markup/markdown in headers (Rich Trott) #310869e43e06b20
] - doc,zlib: use code markup/markdown in headers (Rich Trott) #310861c17f4219d
] - errors: improve ERR_INVALID_ARG_TYPE (Ruben Bridgewater) #296751a0cda1773
] - errors: support prepareSourceMap with source-maps (Benjamin Coe) #31143c10ee5d5aa
] - esm: better error message for unsupported URL (Thomas) #31129b95bb388f6
] - esm: empty ext from pkg type/main doesnt affect format (Bradley Farias) #310210a4cfef7d0
] - esm: make specifier flag clearly experimental (Myles Borins) #30678924a9a8713
] - esm: data URLs should ignore unknown parameters (Bradley Farias) #30593549a58eb11
] - esm: disable non-js exts outside package scopes (Guy Bedford) #30501bd82adb884
] - esm: exit the process with an error if loader has an issue (Michaël Zasso) #30219a0494cfb7b
] - (SEMVER-MINOR) esm: unflag --experimental-exports (Guy Bedford) #29867b6d09e83b9
] - (SEMVER-MINOR) events: add EventEmitter.on to async iterate over events (Matteo Collina) #2799462d3bebbbb
] - (SEMVER-MINOR) events: allow monitoring error events (Gerhard Stoebich) #309324265d57176
] - (SEMVER-MINOR) events: add captureRejection option (Matteo Collina) #278677ef1386d8e
] - fixup: update changelog (Myles Borins)c3daa3e3f5
] - fs: synchronize close with other I/O for streams (Anna Henningsen) #30837fb2253e866
] - fs: retry unlink operations in rimraf (Colin Ihrig) #3056976affb66fd
] - fs: only operate on buffers in rimraf (Colin Ihrig) #3056917a48f11eb
] - fs: use consistent defaults in sync stat functions (Colin Ihrig) #3109791845d8251
] - fs: remove unnecessary bind (Anatoli Papirovski) #2813150afd34237
] - fs: reduce unnecessary sync rimraf retries (Colin Ihrig) #307854e05bf0cc3
] - fs: add synchronous retries to rimraf (Colin Ihrig) #30785e3a0c61726
] - fs: fix existsSync for invalid symlink at win32 (Rongjian Zhang) #305560b88bbdeaa
] - fs: add ENFILE to rimraf retry logic (Colin Ihrig) #3064479e92fb1c1
] - fs: add retryDelay option to rimraf (Colin Ihrig) #306440a33f17c47
] - fs: remove rimraf's emfileWait option (Colin Ihrig) #30644022ecbdc87
] - fs: make rimraf default to 0 retries (Colin Ihrig) #30644dfb86f98bc
] - fs: rename rimraf's maxBusyTries to maxRetries (Colin Ihrig) #30644ba5683ccea
] - (SEMVER-MINOR) fs: addbufferSize
option tofs.opendir()
(Anna Henningsen) #30114725daeb185
] - http: http_outgoing rename var to let and const (telenord) #30284b840eb77c0
] - http: free listeners on free sockets (Robert Nagy) #2925949a9b31615
] - http: use for...of in http library code (Trivikram Kamat) #3095899a09a2e9f
] - (SEMVER-MINOR) http: add captureRejection support to OutgoingMessage (Matteo Collina) #27867cdc33df125
] - (SEMVER-MINOR) http: implement capture rejections for 'request' event (Matteo Collina) #278673a7a3be034
] - (SEMVER-MINOR) http: opt-in insecure HTTP header parsing (Sam Roberts) #30567baece55686
] - http: remove unnecessary bind (Anatoli Papirovski) #28131f24f352213
] - http: improve performance caused by primordials (Lucas Recknagel) #30416c1b73f2e20
] - (SEMVER-MINOR) http: outgoing cork (Robert Nagy) #29053c2757d1a48
] - (SEMVER-MINOR) http: support readable hwm in IncomingMessage (Colin Ihrig) #30135fc29cf9421
] - (SEMVER-MINOR) http: add reusedSocket property on client request (themez) #2971554635f5837
] - http: fix monkey-patching of http_parser (Jimb Esser) #30222f63e440109
] - http2: make HTTP2ServerResponse more streams compliant (Robert Nagy)20a817557e
] - http2: set default enableConnectProtocol to 0 (Yongsheng Zhang) #311742cc0482c46
] - (SEMVER-MINOR) http2: implement capture rection for 'request' and 'stream' events (Matteo Collina) #27867dce435db29
] - http2: remove unnecessary bind from setImmediate (Anatoli Papirovski) #281318d8c05de19
] - http2: forward debug message in debugStreamObj (Denys Otrishko) #30840bb77e6e503
] - http2: track nghttp2-allocated memory in heap snapshot (Anna Henningsen) #30745284f033034
] - http2: use shared memory tracking implementation (Anna Henningsen) #30745f589f4d616
] - http2: streamline OnStreamRead streamline memory accounting (Denys Otrishko) #30351a534058d3c
] - http2: small clean up in OnStreamRead (Denys Otrishko) #30351fb4f71bff7
] - (SEMVER-MINOR) http2: make maximum tolerated rejected streams configurable (Denys Otrishko) #305343bed1fa7da
] - (SEMVER-MINOR) http2: allow to configure maximum tolerated invalid frames (Denys Otrishko) #3053446cb0da9bf
] - (SEMVER-MINOR) http2: replace direct array usage with struct for js_fields_ (Denys Otrishko) #305343fe37e6e2b
] - https: prevent options object from being mutated (Vighnesh Raut) #31151dc521b03a2
] - (SEMVER-MINOR) https: add client support for TLS keylog events (Sam Roberts) #30053a8bf7db040
] - inspector: do not access queueMicrotask from global (Michaël Zasso) #3073269eaff150e
] - lib: move initialization of APIs for changing process state (Anna Henningsen) #311724a1cb3deda
] - lib: do not catch user errors (Ruben Bridgewater) #311594a7e8606f0
] - lib: replace var with let/const (kresimirfranin) #303945dd9fb2ef5
] - lib: further simplify assertions in vm/module (Anna Henningsen) #308154198d9ad9a
] - lib: improve spelling and grammar in comment (David Newman) #310260266d7f7c7
] - lib: change var to let/const (rene.herrmann) #309101c6e2ec744
] - lib: refactor NativeModule (Joyee Cheung) #3085601ea5badbf
] - lib: replace var with let/const (jens-cappelle) #30384248921b58c
] - lib: delay access to CLI option to pre-execution (Joyee Cheung) #307780dd8605425
] - lib: replace Map global by the primordials (Sebastien Ahkrin) #3115502ed713314
] - lib: replace use of Error with primordials (Sebastien Ahkrin) #31163e5b7d64f2d
] - lib: replace Set global by the primordials (Sebastien Ahkrin) #31154869cd531e9
] - lib: replace WeakSet global by the primordials (Sebastien Ahkrin) #3115790196b89dd
] - lib: replace WeakMap global by the primordials (Sebastien Ahkrin) #31158b1550a63b8
] - lib: replace Set.prototype with SetPrototype primordial (Sebastien Ahkrin) #31161f33147bf4d
] - lib: replace Symbol.species by SymbolSpecies (Sebastien Ahkrin) #30950581e83755a
] - lib: replace Symbol.hasInstance by SymbolHasInstance (Sebastien Ahkrin) #309485cfcf6f9d6
] - lib: replace Symbol.asyncIterator by SymbolAsyncIterator (Sebastien Ahkrin) #3094731227e6ecd
] - lib: enforce use of Promise from primordials (Michaël Zasso) #30936b00fcafc9d
] - lib: add TypedArray constructors to primordials (Sebastien Ahkrin) #307407c3ac42ddb
] - lib: replace Symbol.toPrimitive to SymbolToPrimitive primordials (Sebastien Ahkrin) #30905d1702f5866
] - lib: update Symbol.toStringTag by SymbolToStringTag primordial (Sebastien Ahkrin) #30908d4ea392a62
] - lib: enforce use of BigInt from primordials (Michaël Zasso) #3088222df5dc956
] - lib: replace Symbol.iterator by SymbolIterator (Sebastien Ahkrin) #3085954aa3b92df
] - lib: replace every Symbol.for by SymbolFor primordials (Sebastien Ahkrin) #30857c6535c0f1d
] - lib: replace Symbol global by the primordials Symbol (Sebastien Ahkrin) #30737d4d61721d3
] - lib: enforce use of primordial Number (Sebastien Ahkrin) #307005de272cceb
] - lib: use static Number properties from primordials (Michaël Zasso) #306862e81795ab7
] - lib: enforce use of Boolean from primordials (Michaël Zasso) #3069861bb7b918c
] - lib: replace Date.now function by primordial DateNow (Tchoupinax) #3068967de74424f
] - lib: replace ArrayBuffer.isView by primordial ArrayBuffer (Vincent Dhennin) #3069279dd591223
] - lib: enforce use of Array from primordials (Michaël Zasso) #30635ac7bebad27
] - lib: flatten access to primordials (Michaël Zasso) #306109b730ad28a
] - lib: use strict equality comparison (Donggeon Lim) #3089815d48f9fa7
] - lib: add parent to ERR_UNKNOWN_FILE_EXTENSION (qualitymanifest) #30728b743f2c343
] - (SEMVER-MINOR) lib: no need to strip BOM or shebang for scripts (Refael Ackermann) #273756c34ad6c66
] - (SEMVER-MINOR) lib: rework logic of stripping BOM+Shebang from commonjs (Gus Caplan) #277683d4c24d165
] - lib,test: improves ERR_REQUIRE_ESM message (Juan José Arboleda) #3069448e1dfe41e
] - meta: clarify scope of new nodejs.org issue choice (Derek Lewis) #31123db5ec52ea0
] - module: fix check exports issue in cjs module loading (Guy Bedford) #31427616a4ee93a
] - (SEMVER-MINOR) module: unflag conditional exports (Guy Bedford) #31001fae517a0d7
] - module: logical conditional exports ordering (Guy Bedford) #31008cad0402276
] - module: loader getSource, getFormat, transform hooks (Geoffrey Booth) #30986ffc910f9f7
] - module: fix require in node repl (Yongsheng Zhang) #308354de60973f9
] - module: reduce circular dependency of internal/modules/cjs/loader (Joyee Cheung) #30349a91b735381
] - module: fix dynamic import from eval (Corey Farrell) #306242a2ae8ec94
] - module: fixup lint and test regressions (Guy Bedford) #308029696e9edad
] - module: fix specifier resolution algorithm (Rongjian Zhang) #305743d0e33eb94
] - module: unflag resolve self (Guy Bedford) #31002801ea120b6
] - module: self resolve bug fix and esm ordering (Guy Bedford) #310095b4db8e570
] - module: conditional exports import condition (Guy Bedford) #3079969ec9bea62
] - module: ignore resolution failures for inspect-brk (Maël Nison) #30336f0850a310a
] - module: add warnings for experimental flags (Rongjian Zhang) #306177e1f0500e2
] - module: conditional exports with flagged conditions (Guy Bedford) #29978c7adb00b93
] - module: refactor modules bootstrap (Bradley Farias) #29937df867939c2
] - (SEMVER-MINOR) module: resolve self-references (Jan Krems) #29327ea3d4e8b6e
] - (SEMVER-MINOR) n-api: implement napi_is_detached_arraybuffer (Denys Otrishko) #30613b69f2ddea3
] - n-api: keep napi_env alive while it has finalizers (Anna Henningsen) #3114083e225b826
] - (SEMVER-MINOR) n-api: addnapi\_detach\_arraybuffer
(legendecas) #297680638b78ef1
] - net: remove duplicate _undestroy (Robert Nagy) #308335eef00a692
] - (SEMVER-MINOR) net: implement capture rejections for 'connection' event (Matteo Collina) #2786759e2975413
] - perf_hooks: use for...of (Trivikram Kamat) #31049e45edab43c
] - (SEMVER-MINOR) perf_hooks: move perf_hooks out of experimental (legendecas) #3110101bb87650b
] - perf_hooks: remove unnecessary bind (Anatoli Papirovski) #28131732780fa03
] - process: refs --unhandled-rejections documentation in warning message (Antoine du HAMEL) #305649ce788e357
] - process: fix promise catching (Rongjian Zhang) #3095795f332f3d2
] - (SEMVER-MINOR) readline: promote _getCursorPos to public api (Jeremy Albright) #3068712a1191727
] - readline: eagerly load string_decoder (Ruben Bridgewater) #30807d4b41f6de4
] - repl: use better uncaught exceptions indicator (Ruben Bridgewater) #29676521458a6c2
] - repl: fix autocomplete when useGlobal is false (Michaël Zasso) #30883d7972b7b63
] - repl: fix referrer for dynamic import (Corey Farrell) #30609e6397aaff8
] - (SEMVER-MINOR) repl: check for NODE_REPL_EXTERNAL_MODULE (Gus Caplan) #297786f5ced67a8
] - src: accept single argument in getProxyDetails (Ruben Bridgewater) #308584c1d172c6f
] - src: mark ArrayBuffers with free callbacks as untransferable (Anna Henningsen) #30475cc3e427334
] - src: prevent hard coding stack trace limit (legendecas) #30752ace3e70ef1
] - src: unregister Isolate with platform before disposing (Anna Henningsen) #309091148724bf5
] - src: free preopen memory in WASI::New() (Colin Ihrig) #30809808a4566e8
] - src: use checked allocations in WASI::New() (Colin Ihrig) #308096bc2ce2bc2
] - Revert "src: update v8abbr.h for V8 7.7" (Matheus Marchini) #308707858d65cfe
] - src: suppress warning in src/node_env_var.cc (Harshitha KP) #31136cb350975ac
] - src: enable stack trace printing for V8 check failures (Anna Henningsen) #3107982fbedcb27
] - src: port --bash-completion to C++ (Joyee Cheung) #259013c63af27c2
] - src: list used functions on headers (Juan José Arboleda) #30827d04891f4f2
] - src: fix compiler warning in env.cc (Anna Henningsen) #310206f61407a24
] - src: make debug_options getters public (Shelley Vohr) #304941743738417
] - src: fix the false isatty() issue on IBMi (Xu Meng) #308292ae27278a6
] - src: improve checked uv loop close output (Anna Henningsen) #30814b1c226456b
] - src: port memory-tracking allocator from QUIC repo (Anna Henningsen) #30745a5a09ac538
] - src: don't use deprecated OpenSSL APIs (Rosen Penev) #3081285067c1201
] - src: delete redundant method in node_dir.h (gengjiawen) #307479b608e307e
] - src: remove redundant cast in node_dir.cc (gengjiawen) #3074708ac9b6875
] - src: improve node_crypto.cc memory allocation (Priyanka Kore) #30751cf19ec0c23
] - src: fix node_dir.cc memory allocation (Priyanka Kore) #307503f1ca18071
] - src: change header file in node_stat_watcher.cc (Reza Fatahi) #299766e33991c7e
] - src: clean up node_file.h (Anna Henningsen) #30530c8e30c1d38
] - src: fix -Wsign-compare warnings (Colin Ihrig) #30565ef9dd607ab
] - src: use uv_async_t for WeakRefs (Anna Henningsen) #306167adb01f0a3
] - (SEMVER-MINOR) src: expose ArrayBuffer version of Buffer::New() (Anna Henningsen) #30476036a982843
] - (SEMVER-MINOR) src: expose ability to set options (Shelley Vohr) #304663117ea6563
] - (SEMVER-MINOR) src: allow adding linked bindings to Environment (Anna Henningsen) #302740beb8a6981
] - (SEMVER-MINOR) src: deprecate two- and one-argument AtExit() (Anna Henningsen) #30227bf4c39dfa4
] - (SEMVER-MINOR) src: expose granular SetIsolateUpForNode (Shelley Vohr) #3015069dac4b9b9
] - src: do not usestd::function
forOnScopeLeave
(Anna Henningsen) #30134f080239586
] - src: remove AsyncScope and AsyncCallbackScope (Anna Henningsen) #30236f70d5187fd
] - src: use callback scope for main script (Anna Henningsen) #3023632e5c3937f
] - src: fix crash with SyntheticModule#setExport (Michaël Zasso) #3006217e0bf4510
] - src: implement v8 host weakref hooks (Gus Caplan) #298745e232f5de9
] - src: make large_pages node.cc include conditional (Denys Otrishko) #31078fcbd2d245a
] - src: make --use-largepages a runtime option (Gabriel Schulhof) #3095456225439c4
] - src,test: use v8::Global instead of v8::Persistent (Anna Henningsen) #310185edfd50584
] - stream: group all properties using defineProperties (antsmartian) #31144a83c976a2b
] - stream: reset flowing state if no 'readable' or 'data' listeners (Robert Nagy) #31036a0f5207389
] - stream: simplify isBuf (Robert Nagy) #31067f6acf9a7b5
] - stream: use for...of (Trivikram Kamat) #309608cd8cd7413
] - stream: do not chunk strings and Buffer in Readable.from (Matteo Collina) #30912fa544c89a2
] - (SEMVER-MINOR) stream: add support for captureRejection option (Matteo Collina) #27867536d088850
] - stream: use more accurate end-of-stream writable and readable detection (Stewart X Addison) #2940963e3a6221c
] - (SEMVER-MINOR) stream: add writableCorked to Duplex (Anna Henningsen) #290536a8a33caf6
] - (SEMVER-MINOR) stream: add writableCorked property (Robert Nagy) #2901218cd0028d8
] - test: change buffer offset to accommodate V8 BackingStore (Thang Tran) #311711d45ba3342
] - test: get lib/wasi.js coverage to 100% (Colin Ihrig) #31039b6c815c18c
] - test: cover vm with negative tests (Andrew Kuzmenko) #31028e4e086a058
] - test: remove obsolete WASI test (Colin Ihrig) #30980d676c6c5a9
] - test: simplify test-wasi-start-validation.js (Colin Ihrig) #30972299d518b48
] - test: improve WASI start() coverage (Colin Ihrig) #3097212e9bad4c6
] - test: add missing test flags (Colin Ihrig) #30971713932522c
] - test: add test for validation for wasi.start() argument (Rich Trott) #309195b78bf2025
] - test: work around ENOTEMPTY when cleaning tmp dir (Ben Noordhuis) #30849bf9a824c0a
] - test: wait for stream close before writing to file (Anna Henningsen) #30836b6688efb9c
] - test: use fs rimraf to refresh tmpdir (Colin Ihrig) #30569bb8b11f54a
] - test: improve WASI options validation (Rich Trott) #308002c27df2e14
] - test: run more assert tests (Ruben Bridgewater) #307648d0217b1d1
] - test: improve wasi test coverage (Rich Trott) #3077011473ccaa4
] - test: simplify tmpdir import in wasi tests (Rich Trott) #30770ee40a0039c
] - test: use arrow functions in addons tests (garygsc) #301314fd4a734e7
] - Revert "test: update postmortem metadata test for V8 7.7" (Matheus Marchini) #30870ccf9038ef4
] - test: check that --insecure-http-parser works (Sam Roberts) #31253402261709d
] - test: use spread object (Fran Herrero) #304239ed7d2ed45
] - test: log errors in test-http2-propagate-session-destroy-code (Denys Otrishko) #310729c9138fd83
] - test: skip the unsupported test cases for IBM i (Xu Meng) #308193c16855a21
] - test: unflake async hooks statwatcher test (Denys Otrishko) #30362734b550d05
] - test: fix common.enoughTestMem (Rich Trott) #3103573701b2564
] - test: fix long lines (Colin Ihrig) #310142a2fe8a358
] - test: fix flaky test-http2-client-upload (Gerhard Stoebich) #29889e6907f05a1
] - test: improve test coverage in child_process (Juan José Arboleda) #262825cb1744147
] - test: improve dns lookup coverage (Kirill Ponomarev) #307774651871804
] - test: avoid leftover report file (Gerhard Stoebich) #3092588085f0919
] - test: improve assertion error message in test-debug-usage (Rich Trott) #309132155f56669
] - test: disable colorMode in test-console-group (Rich Trott) #30886cd740a29d0
] - test: assert: fix deepStrictEqual comparing a real array and fake array (Jordan Harband) #30743be97f71a1f
] - test: refactor test-accessor-properties (himself65) #29943e1eb6a6025
] - test: scale keepalive timeouts for slow machines (Ben Noordhuis) #30834dc1bc155e1
] - test: mark tests as flaky (João Reis) #3084839d770cc6e
] - test: mark addons/openssl-bindings/test flaky on arm (Richard Lau) #308381fa7347ab9
] - test: remove common.busyLoop() (Colin Ihrig) #30787f6356fe50b
] - test: use callback arguments in getconnections test (Rich Trott) #30775c2ee0a8ecb
] - test: remove duplicate entries from root.status (Richard Lau) #30769193a02027c
] - test: increase debugging information in subprocess test (Rich Trott) #30761194002b690
] - test: use block-scoping in test-net-server-address (Rich Trott) #30754cc8dc677d5
] - test: move test-child-process-fork-getconnections to parallel (Rich Trott) #307496cedeb1aa8
] - test: change common.PORT to arbitrary port (Rich Trott) #30749518fd8fcbc
] - (SEMVER-MINOR) test: update and harden http2-reset-flood (Denys Otrishko) #30534c5f22cbb1b
] - test: cover 'close' method in Dir class (Artem Maksimov) #3031056188fe5b2
] - test: use tmpdir.refresh() in test-esm-windows.js (Richard Lau) #30997a1ccf07ae9
] - test: make test-os-checked-function work without test harness (Rich Trott) #3091429f807e304
] - test: delay loading 'os' in test/common module (Rich Trott) #30914de719fcd3b
] - test: remove AtExit() addon test (Anna Henningsen) #30275eb4b932038
] - test: revert 6d022c1 (Anna Henningsen) #30708ad4af04dce
] - test,module: add test for exports cjs loader check (Rich Trott) #31427e5c68cda7c
] - timers: fix refresh for expired timers (Anatoli Papirovski) #27345facee2a0dc
] - timers: do less work in insert (Anatoli Papirovski) #27345ff9b5fc132
] - tls: for...of in _tls_common.js (Trivikram Kamat) #3096148fcd76c95
] - (SEMVER-MINOR) tls: implement capture rejections for 'secureConnection' event (Matteo Collina) #27867bfccc0048e
] - (SEMVER-MINOR) tls: add PSK support (Denys Otrishko) #231883f1e4a0fe8
] - (SEMVER-MINOR) tls: expose IETF name for current cipher suite (Sam Roberts) #306377d5ab8be31
] - tls: introduce ERR_TLS_INVALID_CONTEXT (Rich Trott) #30718600c37c4f2
] - (SEMVER-MINOR) tls: cli option to enable TLS key logging to file (Sam Roberts) #30055bedc6e2066
] - tools: allow the travis commit message job to fail (Ruben Bridgewater) #31116b714e94786
] - tools: fix Raspbian armv7 build (Andrey Hohutkin) #310419d2e8c5727
] - tools: update ESLint to 6.8.0 (Colin Ihrig) #3104447067ce07d
] - tools: enable Markdown linter's usage information (Derek Lewis) #30216174e4350d1
] - tools: update link to google styleguide for cpplint (Daniel Bevenius) #308767558d8ba5a
] - tools: use CC instead of CXX when pointing to gcc (Milad Farazmand) #30817eb8f19abc2
] - tools: update remark-preset-lint-node to 1.11.0 (Rich Trott) #3078954140a8ab3
] - tools: update ESLint to 6.7.2 (Rich Trott) #30762dbb4e2ab1f
] - tools: update remark-preset-lint-node to 1.10.1 (Rich Trott) #299821b8f841d10
] - tools: update remark-preset-lint-node to 1.10.0 (Rich Trott) #295946531e8b69e
] - tools: apply more stringent blank-line linting for markdown files (Rich Trott) #294476ae7d3028a
] - (SEMVER-MINOR) tools: patch V8 to run on older XCode versions (Ujjwal Sharma) #296946a17aecd31
] - (SEMVER-MINOR) tools: update V8 gypfiles (Michaël Zasso) #29694b9c057c85a
] - tools,src: forbid usage of v8::Persistent (Anna Henningsen) #3101870dc7a2672
] - url: declare iterator inside loop (Trivikram Kamat) #30509fc0febebc9
] - util: improve prototype inspection usinginspect()
andshowHidden
(Ruben Bridgewater) #31113cc19d08748
] - util: add (typed) array length to the default output (Ruben Bridgewater) #310273b9360da11
] - util: refactor inspect code for constistency (Ruben Bridgewater) #30225b0e3aec7ca
] - (SEMVER-MINOR) util: inspect (user defined) prototype properties (Ruben Bridgewater) #3076840a724c1c2
] - (SEMVER-MINOR) util: fix built-in detection (Ruben Bridgewater) #30768bbf39bcfec
] - util: never trigger any proxy traps usingformat()
(Ruben Bridgewater) #30767a309ee11ca
] - util: improve performance inspecting proxies (Ruben Bridgewater) #30767a1ce77670e
] - util: fix .format() not always calling toString when it should be (Ruben Bridgewater) #30343219c8e9885
] - (SEMVER-MINOR) util: add more predefined color codes to inspect.colors (Ruben Bridgewater) #306591fbd7ac32e
] - (SEMVER-MINOR) util: improve inspect's customInspect performance (Ruben Bridgewater) #306595aecbcfdbe
] - util: add internal sleep() function (Colin Ihrig) #3078774f7844a71
] - v8: use of TypedArray constructors from primordials (Sebastien Ahkrin) #30740faf3ad2cb4
] - (SEMVER-MINOR) vm: add Synthetic modules (Gus Caplan) #29864ff47915e5b
] - wasi: refactor destructuring object on constructor (himself65) #3118580d7b6e1c5
] - wasi: fix serdes bugs from snapshot1 migration (Colin Ihrig) #31122e815655ca3
] - wasi: throw on failed uvwasi_init() (Colin Ihrig) #310765d2ae05131
] - wasi: require CLI flag to require() wasi module (Colin Ihrig) #309632bb364aa53
] - wasi: use memory-tracking allocator (Anna Henningsen) #30745b6ce736b9d
] - (SEMVER-MINOR) wasi: introduce initial WASI support (Colin Ihrig) #3025881e363a240
] - (SEMVER-MINOR) worker: add argv constructor option (legendecas) #30559886ef09f24
] - (SEMVER-MINOR) worker: allow specifying resource limits (Anna Henningsen) #2662861da6571fe
] - zlib: use for...of (Trivikram Kamat) #3105184070863f2
] - zlib: allow writes after readable 'end' to finish (Anna Henningsen) #31082