-
Notifications
You must be signed in to change notification settings - Fork 29.7k
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
V18.14.0 proposal #46396
V18.14.0 proposal #46396
Conversation
Original commit message: PPC: clear VXCVI before doing a conversion This bit may not get cleared automatically and could show results from older executed instructions. Change-Id: I5976f9a6c5bf87b1a63ef0f35493b222729e20f6 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3812037 Reviewed-by: Junliang Yan <junyan@redhat.com> Commit-Queue: Milad Farazmand <mfarazma@redhat.com> Cr-Commit-Position: refs/heads/main@{#82237} Refs: v8/v8@5fe919f PR-URL: #45587 Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
PR-URL: #45680 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
In `mime.type` of util, `application/javascript` is actual output, but described as `application/javascript/javascript`. PR-URL: #45825 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Like errno, OpenSSL's API requires SSL_get_error and error queue be checked immediately after the failing operation, otherwise the error queue or SSL object may have changed state and no longer report information about the operation the caller wanted. TLSWrap almost heeds this rule, except in TLSWrap::ClearOut. If SSL_read picks up a closing alert (detected by checking SSL_get_shutdown), Node calls out to JS with EmitRead(UV_EOF) and only afterwards proceeds to dispatch on the error. But, by this point, Node has already re-entered JS, which may change the error. In particular, I've observed that, on close_notify, JS seems to sometimes call back into TLSWrap::DoShutdown, calling SSL_shutdown. (I think this comes from onStreamRead in stream_base_commons.js?) Instead, SSL_get_error and the error queue should be sampled earlier. Back in #1661, Node needed to account for GetSSLError being called after ssl_ was destroyed. This was the real cause. With this fixed, there's no need to account for this. (Any case where ssl_ may be destroyed before SSL_get_error is a case where ssl_ or the error queue could change state, so it's a bug either way.) This is the first of two fixes in error-handling here. The EmitRead(UV_EOF) seems to additionally swallow fatal alerts from the peer. Some of the ECONNRESET expectations in the tests aren't actually correct. The next commit will fix this as well. PR-URL: #44563 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
SSL_RECEIVED_SHUTDOWN means not just close_notify or fatal alert. From what I can tell, this was just a mistake? OnStreamRead's comment suggests eof_ was intended to be for close_notify. This fixes a bug in TLSSocket error reporting that seems to have made it into existing tests. If we receive a fatal alert, EmitRead(UV_EOF) would, via onConnectEnd in _tls_wrap.js, synthesize an ECONNRESET before the alert itself is surfaced. As a result, TLS alerts received during the handshake are misreported by Node. See the tests that had to be updated as part of this. PR-URL: #44563 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #45812 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
PR-URL: #45815 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
PR-URL: #45733 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
This fixes an error in parseYAML(text), the version sorting coudn't be right as we compared an arrify string (ie. a = ["v18.11, v16.7.0"]) with an array of strings (ie. b = ["v18.07", "v16.7.0"]) in versionSort(a, b). minVersion(a) couldn't find the minimum version with an arrify string like a = ["v18.11, v16.7.0"]. That's why incorrect version history orders sometimes appeared. Furthermore, no need to sort the added version as it always comes first. So, it can be the last one to be pushed in the meta.changes array. Fixes: #45670 Co-authored-by: Luigi Pinca <luigipinca@gmail.com> PR-URL: #45728 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #45604 Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: #45827 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Beth Griggs <bethanyngriggs@gmail.com>
This should make it possible to test out the creation of Single Executable Applications on a PR without making outbound requests to download and run postject using npm. This is needed for #45038. Refs: https://github.com/nodejs/single-executable/blob/1840f3d9c5f4fa0d29aabd5618c4ff9745f7be87/meetings/2022-10-31.md?plain=1#L75-L76 Signed-off-by: Darshan Sen <raisinten@gmail.com> PR-URL: #45298 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tierney Cyren <hello@bnb.im>
PR-URL: #45854 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
PR-URL: #45855 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
PR-URL: #45860 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
- The pull request is automatically closed. - The branch is automatically deleted. PR-URL: #45858 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Tierney Cyren <hello@bnb.im> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #45883 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
PR-URL: #45811 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Switch to the `patience` git diff algorithm to reduce the likelihood of mismerges when the release commit is cherry-picked to the `main` branch. Refs: nodejs/Release#771 (comment) PR-URL: #45864 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
PR-URL: #45852 Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit fixes a bug where t.after() was not called if the test body threw an exception. PR-URL: #45870 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
PR-URL: #45850 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
It fixes a problem when trying to spy a method from a class instance or static functions on a class instance PR-URL: #45608 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
PR-URL: #44445 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
PR-URL: #45889 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
Notable changes: * deps: * upgrade npm to 9.3.1 (npm team) #46242 * doc: * add parallelism note to os.cpus() (Colin Ihrig) #45895 * http: * join authorization headers (Marco Ippolito) #45982 * improved timeout defaults handling (Paolo Insogna) #45778 * stream: * implement finished() for ReadableStream and WritableStream (Debadree Chatterjee) #46205 PR-URL: #46396
43bbe45
to
220a5a1
Compare
@juanarbol Could you link to the guidelines for this? I didn't find any. |
@tniessen, generally we've defaulted to elevating all semver minors to notable, but only demote them in the cases we're certain they really are not useful to highlight to end-users. This was the way I (and I suspect others) were advised to craft notable changes during the release onboarding process. It's alluded to in releases.md - but our release automation also currently makes the same assumption when generating the notable changes (nodejs/node-core-utils/blob/main/lib/prepare_release.js). I think it is a fair order of operations to consider non-notable semver minors the exception - especially considering releasers do not always have the full context of the commits. (Perhaps we could change the changelog format to be always split into sections for minors and patches - but that should probably be discussed in another thread.) *Apologies for jumping in. |
Ah, thanks for explaining in detail @BethGriggs :) |
Notable changes: * deps: * upgrade npm to 9.3.1 (npm team) #46242 * doc: * add parallelism note to os.cpus() (Colin Ihrig) #45895 * http: * join authorization headers (Marco Ippolito) #45982 * improved timeout defaults handling (Paolo Insogna) #45778 * stream: * implement finished() for ReadableStream and WritableStream (Debadree Chatterjee) #46205 PR-URL: #46396
2023-02-02, Version 18.14.0 'Hydrogen' (LTS), @BethGriggs prepared by @juanarbol
Notable changes
Updated npm to 9.3.1
Based on the list of guidelines we've established on integrating
npm
andnode
,here is a grouped list of the breaking changes with the reasoning as to why they
fit within the guidelines linked above. Note that all the breaking changes were
made in 9.0.0.
All subsequent minor and patch releases after
npm@9.0.0
do not contain anybreaking changes.
Engines
npm
is now compatible with the following semver range for node:^14.17.0 || ^16.13.0 || >=18.0.0
Filesystem
npm
will no longer attempt to modify ownership of files it creates.Auth
registry found in a config file is no longer supported and will throw errors.
Login
sso
,saml
&legacy
have been consolidated into"legacy"
.auth-type
defaults to"web"
login
andadduser
are now separate commands that send different data to the registry.auth-type
config valuesweb
andlegacy
only try their respective methods,npm no longer tries them all and waits to see which one doesn't fail.
Tarball Packing
npm pack
now follows a strict order of operations when applying ignore rules.If a
files
array is present in thepackage.json
, then rules in.gitignore
and
.npmignore
files from the root will be ignored.Display/Debug/Timing Info
HEAD
instead ofmaster
as the default ref.timing
has been removed as a value for--loglevel
.--timing
will show timing information regardless of--loglevel
, except when--silent
.--timing
flag,npm
now writes timing data to a filealongside the debug log data, respecting the
logs-dir
option and fallingback to
<CACHE>/_logs/
dir, instead of directly inside the cache directory.will create a uniquely named
<ID>-timing.json
file, with the<ID>
portionbeing the same as the debug log.
npm
now outputs some json errors on stdout. Previouslynpm
would outputall json formatted errors on stderr, making it difficult to parse as the
stderr stream usually has logs already written to it.
Config/Command Deprecations or Removals
--install-strategy
.npm config set
will no longer accept deprecated or invalid config options.install-links
config defaults to"true"
.node-version
config has been removed.npm-version
config has been removed.npm access
subcommands have been renamed.npm birthday
has been removed.npm set-script
has been removed.npm bin
has been removed (usenpx
ornpm exec
to execute binaries).Other notable changes
Commits
1352f08778
] - assert: removeassert.snapshot
(Moshe Atlow) #461124ee3238643
] - async_hooks: refactor to usevalidateObject
(Deokjin Kim) #4600479e0bf9b64
] - benchmark: include webstreams benchmark (Rafael Gonzaga) #45876ed1ac82469
] - benchmark,tools: use os.availableParallelism() (Deokjin Kim) #4600316ee02f2eb
] - (SEMVER-MINOR) buffer: add buffer.isUtf8 for utf8 validation (Yagiz Nizipli) #459473bf2371a57
] - build: add extra semi check (Jiawen Geng) #46194560ee24157
] - build: fix arm64 cross-compile from powershell (Stefan Stojanovic) #4589048e3ad3aca
] - build: add option to disable shared readonly heap (Anna Henningsen) #4588752a7887b94
] - (SEMVER-MINOR) crypto: add CryptoKey Symbol.toStringTag (Filip Skokan) #46042a558774a40
] - crypto: add cipher update/final methods encoding validation (vitpavlenko) #45990599d1dc841
] - crypto: ensure auth tag set for chacha20-poly1305 (Ben Noordhuis) #4618524a101698c
] - crypto: return correct bit length in KeyObject's asymmetricKeyDetails (Filip Skokan) #461062de50fef84
] - (SEMVER-MINOR) crypto: add KeyObject Symbol.toStringTag (Filip Skokan) #46043782b6f6f9f
] - crypto: ensure exported webcrypto EC keys use uncompressed point format (Ben Noordhuis) #460217a97f3f43b
] - crypto: fix CryptoKey prototype WPT (Filip Skokan) #458571a8aa50aa2
] - crypto: fix CryptoKey WebIDL conformance (Filip Skokan) #45855c6436450ee
] - crypto: fix error when getRandomValues is called without arguments (Filip Skokan) #458544cdf0002c5
] - debugger: refactor console in lib/internal/debugger/inspect.js (Debadree Chatterjee) #45847b7fe8c70fa
] - deps: update simdutf to 3.1.0 (Node.js GitHub Bot) #46257eaeb870cd7
] - deps: upgrade npm to 9.3.1 (npm team) #462427c03a3d676
] - deps: upgrade npm to 9.3.0 (npm team) #46193340d76accb
] - deps: cherrypick simdutf patch (Jiawen Geng) #46194cce2af4306
] - deps: bump googletest to 2023.01.13 (Jiawen Geng) #46198d251a66bed
] - deps: add /deps/**/.github/ to .gitignore (Luigi Pinca) #46091874054f469
] - deps: add simdutf version to metadata (Mike Roth) #461452497702b82
] - deps: update simdutf to 2.1.0 (Node.js GitHub Bot) #46128c8492b7f4c
] - deps: update corepack to 0.15.3 (Node.js GitHub Bot) #46037d148f357fd
] - deps: update simdutf to 2.0.9 (Node.js GitHub Bot) #45975422a98199c
] - deps: update to uvwasi 0.0.14 (Colin Ihrig) #459707812752db0
] - deps: fix updater github workflow job (Yagiz Nizipli) #459724063cdcef6
] - Revert "deps: disable avx512 for simutf on benchmark ci" (Yagiz Nizipli) #4594864d3e3f3ba
] - deps: disable avx512 for simutf on benchmark ci (Yagiz Nizipli) #45803c9845fc334
] - deps: add simdutf dependency (Yagiz Nizipli) #458036963c96547
] - deps: update timezone to 2022g (Node.js GitHub Bot) #45731874f6c340b
] - deps: update undici to 5.14.0 (Node.js GitHub Bot) #458127599b913d5
] - deps: upgrade npm to 9.2.0 (npm team) #457804844935ff3
] - deps: upgrade npm to 9.1.3 (npm team) #456938dce62c7fe
] - deps: V8: cherry-pick 5fe919f78321 (Richard Lau) #455878de642517e
] - dgram: sync the old handle state to new handle (theanarkh) #46041de2b7a9640
] - doc: fix mismatched arguments ofNodeEventTarget
(Deokjin Kim) #456786317502d10
] - doc: update events API example to have runnable code (Deokjin Kim) #45760a9db45eee1
] - doc: add note to tls docs about secureContext availability (Tim Gerk) #462245294371063
] - doc: add text around collaborative expectations (Michael Dawson) #46121be85d5a6eb
] - doc: update to match changed--dns-result-order
default (Mordy Tikotzky) #461484f2d9ea6da
] - doc: add Node-API media link (Kevin Eady) #461899bfd40466f
] - doc: update http.setMaxIdleHTTPParsers arguments (Debadree Chatterjee) #46168d7a8c076e1
] - doc: use "file system" instead of "filesystem" (Rich Trott) #46178e54483cd2b
] - doc: https update default request timeout (Marco Ippolito) #46184335110b0fb
] - doc: make options of readableStream.pipeTo as optional (Deokjin Kim) #46180ec34cad712
] - doc: add PerformanceObserver.supportedEntryTypes to doc (theanarkh) #45962d0f905bd6f
] - doc: duplex and readable from uncaught execption warning (Marco Ippolito) #46135512feaafa4
] - doc: remove outdated sections frommaintaining-v8
(Antoine du Hamel) #46137849a3e2ce7
] - doc: fix (EC)DHE remark in TLS docs (Tobias Nießen) #46114a3c9c1b4e6
] - doc: fix ERR_TLS_RENEGOTIATION_DISABLED text (Tobias Nießen) #461221834e94ebb
] - doc: fix spelling in SECURITY.md (Vaishno Chaitanya) #461243968698af5
] - doc: abort controller emits error in child process (Debadree Chatterjee) #460721ec14c2c61
] - doc: fixevent.cancelBubble
documentation (Deokjin Kim) #459865539977f80
] - doc: add personal pronouns option (Filip Skokan) #461181fabef3a81
] - doc: mention how to run ncu-ci citgm (Rafael Gonzaga) #4609084dc65ab87
] - doc: include updating release optional step (Rafael Gonzaga) #4608976c7ea1e74
] - doc: describe argument ofSymbol.for
(Deokjin Kim) #460192307a74990
] - doc: update isUtf8 description (Yagiz Nizipli) #45973fa5b65ea24
] - doc: use console.error for error case in timers and tls (Deokjin Kim) #4600229d509c100
] - doc: fix wrong output of example inurl.protocol
(Deokjin Kim) #4595461dbca2690
] - doc: useos.availableParallelism()
in async_context and cluster (Deokjin Kim) #4597986b2c8cea2
] - doc: make EventEmitterAsyncResource'soptions
as optional (Deokjin Kim) #45985335acf7748
] - doc: replace single executable champion in strategic initiatives doc (Darshan Sen) #45956aab35a9388
] - doc: update error message of example in repl (Deokjin Kim) #4592053a94a95ff
] - doc: fix typos in packages.md (Eric Mutta) #4595783875f46cf
] - doc: remove port from example inurl.hostname
(Deokjin Kim) #45927162d3a94e3
] - doc: show output of example in http (Deokjin Kim) #4591553684e4506
] - (SEMVER-MINOR) doc: add parallelism note to os.cpus() (Colin Ihrig) #45895546e083d36
] - doc: fix wrong output of example inurl.password
(Deokjin Kim) #4592814c95ecd23
] - doc: fix some history entries indeprecations.md
(Antoine du Hamel) #45891d94dba973b
] - doc: add tip for NODE_MODULE (theanarkh) #45797662f574c5b
] - doc: reduce likelihood of mismerges during release (Richard Lau) #4586448ea28aa30
] - doc: add backticks to webcrypto rsaOaepParams (Filip Skokan) #45883726b285163
] - doc: remove release cleanup step (Michaël Zasso) #458585eb93f1de9
] - doc: add stream/promises pipeline and finished to doc (Marco Ippolito) #45832f874d0ba74
] - doc: remove Juan Jose keys (Rafael Gonzaga) #4582767efe2a55e
] - doc: fix wrong output of example in util (Deokjin Kim) #45825b709af31e0
] - doc: sort http.createServer() options alphabetically (Luigi Pinca) #45680ebe292113a
] - doc,crypto: fix WebCryptoAPI import keyData and export return (Filip Skokan) #46076204757719c
] - errors: refactor to use a method that formats a list string (Daeyeon Jeong) #45793463bb9602e
] - esm: markimportAssertions
as required (Antoine du Hamel) #461640bdf2db079
] - esm: rewrite loader hooks test (Geoffrey Booth) #46016297773c6d1
] - events: change status ofevent.returnvalue
to legacy (Deokjin Kim) #46175d088d6e5c3
] - events: change status ofevent.cancelBubble
to legacy (Deokjin Kim) #4614636be0c4ee2
] - events: change status ofevent.srcElement
to legacy (Deokjin Kim) #46085b239f0684a
] - events: fix violation of symbol naming convention (Deokjin Kim) #45978aec340b312
] - fs: refactor to usevalidateInteger
(Deokjin Kim) #46008e620de6444
] - http: refactor to usevalidateHeaderName
(Deokjin Kim) #461433e70b7d863
] - http: writeHead if statusmessage is undefined dont override headers (Marco Ippolito) #461733d1dd96c4f
] - http: refactor to use min of validateNumber for maxTotalSockets (Deokjin Kim) #461154df1fcc9db
] - (SEMVER-MINOR) http: join authorization headers (Marco Ippolito) #459828c06e2f645
] - http: replacevar
withconst
on code of comment (Deokjin Kim) #459513c0c5e0567
] - (SEMVER-MINOR) http: improved timeout defaults handling (Paolo Insogna) #45778edcd4fc576
] - lib: use kEmptyObject and update JSDoc in webstreams (Deokjin Kim) #46183d6fc855b8a
] - lib: refactor to use validate function (Deokjin Kim) #46101bc17f37b98
] - lib: reuse invalid state errors on webstreams (Rafael Gonzaga) #4608686554bf27c
] - lib: fix incorrect use of console intrinsic (Colin Ihrig) #460447fc7b19124
] - lib: update JSDoc ofgetOwnPropertyValueOrDefault
(Deokjin Kim) #46010c1cc1f9e12
] - lib: usekEmptyObject
as default value for options (Deokjin Kim) #46011db617222da
] - meta: update AUTHORS (Node.js GitHub Bot) #4621510afecd0d8
] - meta: update AUTHORS (Node.js GitHub Bot) #46130d8ce990ce6
] - meta: update comment inCODEOWNERS
to better reflect current policy (Antoine du Hamel) #45944e3f0194168
] - meta: update AUTHORS (Node.js GitHub Bot) #46040d31c478929
] - meta: update AUTHORS (Node.js GitHub Bot) #4596810a276a3e0
] - meta: addnodejs/loaders
to CODEOWNERS (Geoffrey Booth) #4594056247d7c87
] - meta: addnodejs/test_runner
to CODEOWNERS (Antoine du Hamel) #459353bef8bc743
] - meta: update AUTHORS (Node.js GitHub Bot) #45899baf30ee935
] - module: fix unintended mutation (Antoine du Hamel) #461083ad584c357
] - net: handle socket.write(cb) edge case (Santiago Gimeno) #459222ab35cf0cc
] - node-api: disambiguate napi_add_finalizer (Chengzhong Wu) #454016e9676e986
] - node-api: generalize finalizer second pass callback (Chengzhong Wu) #44141b2faceff0a
] - (SEMVER-MINOR) os: add availableParallelism() (Colin Ihrig) #458958fac4c5684
] - perf_hooks: fix checking range ofoptions.figures
in createHistogram (Deokjin Kim) #45999ea73702847
] - process,worker: ensure code after exit() effectless (ywave620) #45620784ed594ea
] - repl: improve robustness wrt to prototype pollution (Antoine du Hamel) #45604fcfde3412e
] - src: rename internal module declaration as internal bindings (Chengzhong Wu) #45551646cadccd0
] - src: fix endianness of simdutf (Yagiz Nizipli) #4625794605b1665
] - src: replace unreachable code with static_assert (Tobias Nießen) #462093ce39bbcb7
] - src: hide kMaxDigestMultiplier outside HKDF impl (Tobias Nießen) #462069648b06e09
] - src: distinguish env stopping flags (Chengzhong Wu) #4590753ecd20bbd
] - src: remove return after abort (Shelley Vohr) #46172c4c8931b9d
] - src: remove unnecessary semicolons (Shelley Vohr) #46171fab72b1677
] - src: use simdutf for converting externalized builtins to UTF-16 (Anna Henningsen) #4611967729961e7
] - src: use constant strings for memory info names (Chengzhong Wu) #460870ac4e5dd34
] - src: fix typo in node_snapshotable.cc (Vadim) #46103b454a7665d
] - src: keep PipeWrap::Open function consistent with TCPWrap (theanarkh) #4606441f5a29cca
] - src: speed up process.getActiveResourcesInfo() (Darshan Sen) #4601402a61dd6bd
] - src: fix typo innode_file.cc
(Vadim) #4599899c033ed98
] - src: fix crash on OnStreamRead on Windows (Santiago Gimeno) #4587827d6a8b2b1
] - src: fix creatingIsolate
s from addons (Anna Henningsen) #458859ca31cdba3
] - src: use string_view for FastStringKey implementation (Anna Henningsen) #45914e4fc3abfd5
] - src: fix UB in overflow checks (Ben Noordhuis) #45882574afac26a
] - src: check size of args before using for exec_path (A. Wilcox) #45902f0692468cd
] - src: fix tls certificate root store data race (Ben Noordhuis) #45767a749ceda2e
] - src: add undici and acorn toprocess.versions
(Debadree Chatterjee) #4562108a6a61575
] - src,lib: the handle keeps loop alive in cluster rr mode (theanarkh) #46161a87963de6b
] - stream: fix pipeline calling end on destination more than once (Debadree Chatterjee) #46226cde59606cd
] - (SEMVER-MINOR) stream: implement finished() for ReadableStream and WritableStream (Debadree Chatterjee) #46205441d9de33e
] - stream: refactor to usevalidateFunction
(Deokjin Kim) #46007325fc08d48
] - stream: fix typo in JSDoc (Deokjin Kim) #45991536322fa1c
] - test: update postject to 1.0.0-alpha.4 (Node.js GitHub Bot) #46212a3056f4125
] - test: refactor to avoid mutation of global by a loader (Michaël Zasso) #462201790569518
] - test: improve test coverage for WHATWGTextDecoder
(Juan José) #45241896027c006
] - test: add fix so that test exits if port 42 is unprivileged (Suyash Nayan) #45904257224da0e
] - test: useos.availableParallelism()
(Deokjin Kim) #460037e1462dd02
] - test: update Web Events WPT (Deokjin Kim) #4605140d52fbc5f
] - test: add test to once() in event lib (Jonathan Diaz) #46126f3518f3337
] - test: useprocess.hrtime.bigint
instead ofprocess.hrtime
(Deokjin Kim) #458774d6dd10464
] - test: print failed JS/parallel tests (Geoffrey Booth) #459607cb6fef6d6
] - test: fix test broken under --node-builtin-modules-path (Geoffrey Booth) #4589455e4140c34
] - test: fix mock.method to support class instances (Erick Wendel) #45608286acaa6fe
] - test: update encoding wpt to latest (Yagiz Nizipli) #4585022c1e918ce
] - test: update url wpt to latest (Yagiz Nizipli) #458525fa6a70bbd
] - test: add CryptoKey transferring tests (Filip Skokan) #458114aaec07266
] - test: add postject to fixtures (Darshan Sen) #45298da78f9cbb8
] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #458603269423032
] - test,esm: validate more edge cases for dynamic imports (Antoine du Hamel) #46059cade2fccf4
] - test_runner: run t.after() if test body throws (Colin Ihrig) #4587087a0e86604
] - test_runner: parse yaml (Moshe Atlow) #45815757a022443
] - tls: don't treat fatal TLS alerts as EOF (David Benjamin) #44563c6457cbf8d
] - tls: fix re-entrancy issue with TLS close_notify (David Benjamin) #44563fcca2d5ea6
] - tools: update lint-md-dependencies (Node.js GitHub Bot) #4621409adb86c19
] - tools: fix macro name in update-undici (Almeida) #462171b0cc79785
] - tools: add automation for updating postject dependency (Darshan Sen) #4615738df662119
] - tools: update create-or-update-pull-request-action (Michaël Zasso) #461693f4c0c0de1
] - tools: update eslint to 8.31.0 (Node.js GitHub Bot) #46131f3dc4329e6
] - tools: update lint-md-dependencies to rollup@3.9.1 (Node.js GitHub Bot) #46129fafbd1ca72
] - tools: move update-eslint.sh to dep_updaters/ (Luigi Pinca) #46088609df01fa9
] - tools: make update-eslint.sh work with npm@9 (Luigi Pinca) #4608831b8cf1a4d
] - tools: fix lint rule recommendation (Colin Ihrig) #460440a80cbdcb1
] - tools: update lint-md-dependencies to rollup@3.9.0 (Node.js GitHub Bot) #4603918503fa7ba
] - tools: update doc to unist-util-select@4.0.2 (Node.js GitHub Bot) #46038b48e82ec1d
] - tools: add release host var to promotion script (Ruy Adorno) #459133b93b0c1f5
] - tools: add url toAUTHORS
update automation (Antoine du Hamel) #45971623b0eba81
] - tools: update lint-md-dependencies to rollup@3.8.1 (Node.js GitHub Bot) #45967b0e88377fe
] - tools: update GitHub workflow action (Mohammed Keyvanzadeh) #45937974442e69d
] - tools: update lint-md dependencies (Node.js GitHub Bot) #458135aaa8c3bbf
] - tools: enforce use of trailing commas intools/
(Antoine du Hamel) #458891e32520f72
] - tools: addArrayPrototypeConcat
to the list of primordials to avoid (Antoine du Hamel) #44445e0cda56204
] - tools: fix incorrect version history order (Fabien Michel) #457287438ff175a
] - tools: update eslint to 8.29.0 (Node.js GitHub Bot) #457331e11247b91
] - Revert "tools: update V8 gypfiles for RISC-V" (Lu Yahan) #461560defe4effa
] - trace_events: refactor to usevalidateStringArray
(Deokjin Kim) #46012f1dcbe7652
] - util: add fast path for text-decoder fatal flag (Yagiz Nizipli) #45803277d9da876
] - vm: refactor to use validate function (Deokjin Kim) #4617696f1b2e731
] - vm: refactor to usevalidateStringArray
(Deokjin Kim) #46020