-
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
v20.6.0 proposal #49185
v20.6.0 proposal #49185
Conversation
PR-URL: #46826 Reviewed-By: Jacob Smith <[email protected]> Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
Removes flakiness from the mentioned test due to the x86 memory limit PR-URL: #48750 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Debadree Chatterjee <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]>
PR-URL: #48726 Reviewed-By: Matthew Aitken <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
* The first argument `node` should be a const pointer. * The second argument `spaces` should not be a signed integer type. * The local variable `child` should be size_t. * The local variable `pair` in the range declaration should be a reference type to avoid copying the object. Refs: #48677 PR-URL: #48770 Reviewed-By: Rafael Gonzaga <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]>
PR-URL: #48751 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
PR-URL: #48586 Reviewed-By: Antoine du Hamel <[email protected]>
PR-URL: #48722 Reviewed-By: Gerhard Stöbich <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
... as it's not valid implementation and also has not been used PR-URL: #48732 Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
PR-URL: #48789 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
The test test/parallel/test-experimental-shared-value-conveyor.js was added to test the --harmony-struct feature of V8. However, when used with pointer compression, the process crashes. This commit skips the test for pointer compression builds. This change uses a child process because starting a Node pointer compression build with --harmony-struct immediately crashes the process. Once this crash is addresses, this commit can be reverted. PR-URL: #48738 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Debadree Chatterjee <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Richard Lau <[email protected]>
PR-URL: #48765 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
PR-URL: #48769 Reviewed-By: Ruy Adorno <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Rich Trott <[email protected]>
PR-URL: #48709 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Stephen Belanger <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
PR-URL: #48719 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Debadree Chatterjee <[email protected]>
PR-URL: #48810 Refs: #48806 Reviewed-By: Debadree Chatterjee <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Richard Lau <[email protected]>
PR-URL: #48779 Fixes: #48778 Fixes: #48516 Refs: #46402 Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Jacob Smith <[email protected]>
PR-URL: #48793 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Fixes: #48389 PR-URL: #48395 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Matthew Aitken <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
PR-URL: #48791 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]>
Example is not runnable because `path` is used, but it's not declared. PR-URL: #48556 Reviewed-By: Luigi Pinca <[email protected]>
Adding the per-realm binding data tracking introduced a call to a realm method when realm was potentially null. This is triggered whenever the function is called from `ContextifyContext::New` which passes `nullptr` as the `realm`. PR-URL: #48802 Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Chengzhong Wu <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
- refactor table so that it does not grow for every new version of Node.js - refer to latest version of table as the canonical reference - add info for Node-API v9 Refs: #48277 Signed-off-by: Michael Dawson <[email protected]> PR-URL: #48774 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Major functional changes: - Allow `import()` to work within loaders that require other loaders, - Unflag the use of `Module.register`. A new interface `Customizations` has been created in order to unify `ModuleLoader` (previously `DefaultModuleLoader`), `Hooks` and `CustomizedModuleLoader` all of which now implement it: ```ts interface LoadResult { format: ModuleFormat; source: ModuleSource; } interface ResolveResult { format: string; url: URL['href']; } interface Customizations { allowImportMetaResolve: boolean; load(url: string, context: object): Promise<LoadResult> resolve( originalSpecifier: string, parentURL: string, importAssertions: Record<string, string> ): Promise<ResolveResult> resolveSync( originalSpecifier: string, parentURL: string, importAssertions: Record<string, string> ) ResolveResult; register(specifier: string, parentUrl: string): any; forceLoadHooks(): void; importMetaInitialize(meta, context, loader): void; } ``` The `ModuleLoader` class now has `setCustomizations` which takes an object of this shape and delegates its responsibilities to this object if present. Note that two properties `allowImportMetaResolve` and `resolveSync` exist now as a mechanism for `import.meta.resolve` – since `Hooks` does not implement `resolveSync` other loaders cannot use `import.meta.resolve`; `allowImportMetaResolve` is a way of checking for that case instead of invoking `resolveSync` and erroring. Fixes #48515 Closes #48439 PR-URL: #48559 Reviewed-By: Jacob Smith <[email protected]> Reviewed-By: Geoffrey Booth <[email protected]>
Refs: nodejs/TSC#1411 Refs: nodejs/TSC#1410 Signed-off-by: Michael Dawson <[email protected]> PR-URL: #48841 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Debadree Chatterjee <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
PR-URL: #48734 Reviewed-By: Chengzhong Wu <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]>
The test's assumptions about RSS are no longer valid, at least with Fedora 38. Closes: #48490 PR-URL: #48811 Fixes: #48490 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Richard Lau <[email protected]>
PR-URL: #48826 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]>
Original commit message: Skip regress-1320641 when the system does not have enough memory Change-Id: I23a5232f6437c4bc77390796ee2986f1600cb1bf Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4689686 Reviewed-by: Nico Hartmann <[email protected]> Commit-Queue: Joyee Cheung <[email protected]> Cr-Commit-Position: refs/heads/main@{#88973} Refs: v8/v8@c1a54d5 PR-URL: #48830 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Debadree Chatterjee <[email protected]>
Original commit message: Fix mistake in the skip branch of test/mjsunit/regress-1320641.js It was doing a `string.test(regex)` which was wrong. It's supposed to be `regex.test(string)`. It wasn't caught in the CI because the skip path is not normally taken in the V8 CI. Change-Id: Id1bdab5bbc41968bba8adc1cb3664e8f95fb5d72 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4697855 Commit-Queue: Joyee Cheung <[email protected]> Reviewed-by: Nico Hartmann <[email protected]> Cr-Commit-Position: refs/heads/main@{#89044} Refs: v8/v8@9f4b769 PR-URL: #48830 Refs: v8/v8@c1a54d5 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Debadree Chatterjee <[email protected]>
PR-URL: #48788 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]>
This seems ready for Monday :) |
@juanarbol heads up that Monday is a US Federal holiday. |
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. @UlisesGascon don't forget to update the release date in the PR description. Good job folks.
I know this is close to release, but the .env feature currently contradicts its documentation. It overrides variables that already exist in the environment, whereas it shouldn't. There is discussion of this, and a fix in #49424. I wonder if that can be snuck in so that this feature launches correctly? |
I think that environment variable is more general that a specific .env variable, so in fact .env should overrides any environment variable. |
This is not the right place to discuss whether or not #49424 should land. While it is unfortunate that the feature description does not match the implementation, this release is already delayed by weeks, so waiting for a fix for an experimental feature likely isn't worth any additional delay (and new CI runs, reviews, etc). |
Notable changes: deps: * V8: cherry-pick 93275031284c (Joyee Cheung) #48660 doc: * add new TSC members (Michael Dawson) #48841 * add rluvaton to collaborators (Raz Luvaton) #49215 esm: * unflag import.meta.resolve (Guy Bedford) #49028 * add `initialize` hook, integrate with `register` (Izaak Schroeder) #48842 * unflag `Module.register` and allow nested loader `import()` (Izaak Schroeder) #48559 inspector: * (SEMVER-MINOR) open add `SymbolDispose` (Chemi Atlow) #48765 module: * implement `register` utility (João Lenon) #46826 * make CJS load from ESM loader (Antoine du Hamel) #47999 src: * add built-in `.env` file support (Yagiz Nizipli) #48890 * initialize cppgc (Daryl Haresign and Joyee Cheung) #48660 and #45704 test_runner: * (SEMVER-MINOR) expose location of tests (Colin Ihrig) #48975 PR-URL: #49185
Thank you and congratulations @nodejs/releasers! |
I want to provide a bit of feedback on what I see as a process breakdown here.
Use of timeline pressure to push forward a release over raised concern without addressing or triaging the severity of the issue has created a dilemma:
This is a remarkable decision to make to ship over top of concern that the top line feature of the release appeared to have significant issues. The proposed fix is a complete inversion of the precedence which is without a doubt materially incompatible. https://github.com/nodejs/node/pull/49424/files?w=1#diff-16952113caf4254d32120f31060ec512394a126ac2ddbdaed85b7d0d35ee6fcfR54 For more discussion, see my notes on the PR proposal to fix the bug: #49424 (comment) |
Notable changes: deps: * V8: cherry-pick 93275031284c (Joyee Cheung) nodejs#48660 doc: * add new TSC members (Michael Dawson) nodejs#48841 * add rluvaton to collaborators (Raz Luvaton) nodejs#49215 esm: * unflag import.meta.resolve (Guy Bedford) nodejs#49028 * add `initialize` hook, integrate with `register` (Izaak Schroeder) nodejs#48842 * unflag `Module.register` and allow nested loader `import()` (Izaak Schroeder) nodejs#48559 inspector: * (SEMVER-MINOR) open add `SymbolDispose` (Chemi Atlow) nodejs#48765 module: * implement `register` utility (João Lenon) nodejs#46826 * make CJS load from ESM loader (Antoine du Hamel) nodejs#47999 src: * add built-in `.env` file support (Yagiz Nizipli) nodejs#48890 * initialize cppgc (Daryl Haresign and Joyee Cheung) nodejs#48660 and nodejs#45704 test_runner: * (SEMVER-MINOR) expose location of tests (Colin Ihrig) nodejs#48975 PR-URL: nodejs#49185
2023-09-04, Version 20.6.0 (Current), @juanarbol prepared by @UlisesGascon
Notable changes
built-in
.env
file supportStarting from Node.js v20.6.0, Node.js supports
.env
files for configuring environment variables.Your configuration file should follow the INI file format, with each line containing a key-value pair for an environment variable.
To initialize your Node.js application with predefined configurations, use the following CLI command:
node --env-file=config.env index.js
.For example, you can access the following environment variable using
process.env.PASSWORD
when your application is initialized:In addition to environment variables, this change allows you to define your
NODE_OPTIONS
directly in the.env
file, eliminating the need to include it in yourpackage.json
.This feature was contributed by Yagiz Nizipli in #48890.
import.meta.resolve
unflaggedIn ES modules,
import.meta.resolve(specifier)
can be used to get an absolute URL string to whichspecifier
resolves, similar torequire.resolve
in CommonJS. This aligns Node.js with browsers and other server-side runtimes.This feature was contributed by Guy Bedford in #49028
New
node:module
APIregister
for module customization hooks; newinitialize
hookThere is a new API
register
available onnode:module
to specify a file that exports module customization hooks, and pass data to the hooks, and establish communication channels with them. The “define the file with the hooks” part was previously handled by a flag--experimental-loader
, but when the hooks moved into a dedicated thread in 20.0.0 there was a need to provide a way to communicate between the main (application) thread and the hooks thread. This can now be done by callingregister
from the main thread and passing data, includingMessageChannel
instances.We encourage users to migrate to an approach that uses
--import
withregister
, such as:Using
--import
ensures that the customization hooks are registered before any application code runs, even the entry point.This feature was contributed by Izaak Schroeder in #48842 and #48559
Module customization
load
hook can now support CommonJSAuthors of module customization hooks can how handle both ES module and CommonJS sources in the
load
hook. This works for CommonJS modules referenced via eitherimport
orrequire
, so long as the main entry point of the application is handled by the ES module loader (such as because the entry point is an ES module file, or if the--import
flag is passed). This should simplify the customization of the Node.js module loading process, as package authors can customize more of Node.js without relying on deprecated APIs such asrequire.extensions
.This feature was contributed by Antoine du Hamel in #47999
Node.js C++ addons now have experimental support for cppgc (Oilpan), a C++ garbage collection library in V8.
Now when Node.js starts up, it makes sure that there is a
v8::CppHeap
attached to the V8 isolate. This enables users to allocate in thev8::CppHeap
using<cppgc/*>
headers from V8, which are now also included into the Node.js headers available to addons. Note that since Node.js only bundles the cppgc library coming from V8, the ABI stability of cppgc is currently not guaranteed in semver-minor and -patch updates, but we do not expect the ABI to break often, as it has been stable and battle-tested in Chromium for years. We may consider including cppgc into the ABI stability guarantees when it gets enough adoption internally and externally.To help addon authors create JavaScript-to-C++ references of which V8's garbage collector can be aware, a helper function
node::SetCppgcReference(isolate, js_object, cppgc_object)
has been added tonode.h
. V8 may provide a native alternative in the future, which could then replace this Node.js-specific helper. In the mean time, users can use this API to avoid having to hard-code the layout of JavaScript wrapper objects. An example of how to create garbage-collected C++ objects in the unified heap and wrap it in a JavaScript object can be found in the Node.js addon tests.The existing
node::ObjectWrap
helper would continue to work, while cppgc-based object management serves as an alternative with some advantages mentioned in the V8 blog post about Oilpan.This feature was contributed by Daryl Haresign and Joyee Cheung in #48660 and #45704.
Other notable changes
d6862b085c
] - deps: V8: cherry-pick 93275031284c (Joyee Cheung) #4866000fc8bb8b3
] - doc: add rluvaton to collaborators (Raz Luvaton) #49215d649339abd
] - doc: add new TSC members (Michael Dawson) #4884167f9896247
] - (SEMVER-MINOR) inspector: open addSymbolDispose
(Chemi Atlow) #487655aef593db3
] - module: implementregister
utility (João Lenon) #46826Commits
771abcb5da
] - benchmark: add benchmarks for the test_runner (Raz Luvaton) #489316b27bb0dab
] - benchmark: add pm startup benchmark (Rafael Gonzaga) #489051f35c0ca55
] - child_process: harden against prototype pollution (Livia Medeiros) #48726d6862b085c
] - deps: V8: cherry-pick 93275031284c (Joyee Cheung) #48660f71e383948
] - deps: update simdutf to 3.2.17 (Node.js GitHub Bot) #49019e14f0456ae
] - deps: update googletest to 7e33b6a (Node.js GitHub Bot) #49034bfaa0fb500
] - deps: update zlib to 1.2.13.1-motley-526382e (Node.js GitHub Bot) #49033b79c652c85
] - deps: update undici to 5.23.0 (Node.js GitHub Bot) #490216ead86145c
] - deps: update googletest to c875c4e (Node.js GitHub Bot) #489644b0e50501e
] - deps: update ada to 2.6.0 (Node.js GitHub Bot) #48896d960ee0ba3
] - deps: upgrade npm to 9.8.1 (npm team) #48838d92b0139ca
] - deps: update zlib to 1.2.13.1-motley-61dc0bd (Node.js GitHub Bot) #487882a7835c376
] - deps: V8: cherry-pick 9f4b7699f68e (Joyee Cheung) #48830c8e17829ac
] - deps: V8: cherry-pick c1a54d5ffcd1 (Joyee Cheung) #48830318e075b6f
] - deps: update googletest to cc36671 (Node.js GitHub Bot) #48789114e088267
] - diagnostics_channel: fix last subscriber removal (Gabriel Schulhof) #4893300fc8bb8b3
] - doc: add rluvaton to collaborators (Raz Luvaton) #4921521949c45b6
] - doc: add print results for examples inWebStreams
(Jungku Lee) #49143032107a6fe
] - doc: fixType
notation in webstreams (Deokjin Kim) #4912191d41e7c5a
] - doc: fix name of the flag ininitialize()
docs (Antoine du Hamel) #49158aa4caf810e
] - doc: make the NODE_VERSION_IS_RELEASE revert clear (Rafael Gonzaga) #49114f888a1dbe3
] - doc: update process.binding deprecation text (Tobias Nießen) #4908689fa3faf92
] - doc: update with latest security release (Rafael Gonzaga) #490853d36e7a941
] - doc: add description for--port
flag ofnode inspect
(Michael Bianco) #48785e9d9ca12a3
] - doc: add missing period (Rich Trott) #490947e7b554de0
] - doc: add ESM examples in http.md (btea) #4776348f8ccfd54
] - doc: detailed description of keystrokes Ctrl-Y and Meta-Y (Ray) #43529195885c8f8
] - doc: add "type" to test runner event details (Phil Nash) #490146ce25f8415
] - doc: reserve 118 for Electron 27 (David Sanders) #490239c26c0f296
] - doc: clarify use of process.env in worker threads on Windows (Daeyeon Jeong) #490087186e02aa0
] - doc: remove v14 mention (Rafael Gonzaga) #490059641ac6c65
] - doc: drop github actions check in sec release process (Rafael Gonzaga) #48978f3d62abb19
] - doc: improved joinDuplicateHeaders definition (Matteo Bianchi) #488590db104a08b
] - doc: fix second parameter name ofevents.addAbortListener
(Deokjin Kim) #489225173c559b7
] - doc: add new reporter events to custom reporter examples (Chemi Atlow) #48903660da785e6
] - doc: run license-builder (github-actions[bot]) #48898092f9fe92a
] - doc: change duration to duration_ms on test documentation (Ardi_Nugraha) #488925e4730858d
] - doc: improve requireHostHeader (Guido Penta) #48860045e3c549a
] - doc: add ver of 18.x where Node-api 9 is supported (Michael Dawson) #48876c20d35df34
] - doc: include experimental features assessment (Rafael Gonzaga) #48824d649339abd
] - doc: add new TSC members (Michael Dawson) #48841aeac327f2b
] - doc: refactor node-api support matrix (Michael Dawson) #48774388c7d9232
] - doc: declarepath
on example ofasync_hooks.executionAsyncId()
(Deokjin Kim) #48556fe20528c8e
] - doc: remove the . in the end to reduce confusing (Jason) #48719e69c8e173f
] - doc: nodejs-social over nodejs/tweet (Rafael Gonzaga) #48769ea547849fd
] - doc: expand on squashing and rebasing to land a PR (Chengzhong Wu) #4875131442b96a5
] - esm: fixglobalPreload
warning (Antoine du Hamel) #49069eb1215878b
] - esm: unflag import.meta.resolve (Guy Bedford) #4902857b24a34e6
] - esm: import.meta.resolve exact module not found errors should return (Guy Bedford) #49038f23b2a3066
] - esm: protectERR_UNSUPPORTED_DIR_IMPORT
against prototype pollution (Antoine du Hamel) #49060386e826a56
] - esm: addinitialize
hook, integrate withregister
(Izaak Schroeder) #4884274a2e1e0ab
] - esm: fix typoparentUrl
->parentURL
(Antoine du Hamel) #489990a4f7c669a
] - esm: unflagModule.register
and allow nested loaderimport()
(Izaak Schroeder) #48559a5597470ce
] - esm: add backglobalPreload
tests and fix failing ones (Antoine du Hamel) #48779d568600b42
] - events: remove weak listener for event target (Raz Luvaton) #489523d942d9842
] - fs: fix readdir recursive sync & callback (Ethan Arrowood) #48698c14ff69d69
] - fs: mentionURL
in NUL character error message (LiviaMedeiros) #48828d634d781d7
] - fs: makemkdtemp
accept buffers and URL (LiviaMedeiros) #488284515a285a4
] - fs: remove redundantnullCheck
(Livia Medeiros) #48826742597b14a
] - http: start connections checking interval on listen (Paolo Insogna) #4861167f9896247
] - (SEMVER-MINOR) inspector: open addSymbolDispose
(Chemi Atlow) #48765b66a3c1c96
] - lib: fix MIME overmatch in data URLs (André Alves) #49104dca8678a22
] - lib: fix to add resolve() before return at Blob.stream()'s source.pull() (bellbind) #48935420b85c00f
] - lib: remove invalid parameter to toASCII (Yagiz Nizipli) #48878a12ce11b09
] - lib,permission: drop repl autocomplete when pm enabled (Rafael Gonzaga) #48920458eaf5e75
] - meta: bump github/codeql-action from 2.20.1 to 2.21.2 (dependabot[bot]) #489864f88cb10e0
] - meta: bump step-security/harden-runner from 2.4.1 to 2.5.0 (dependabot[bot]) #4898522fc2a6ec6
] - meta: bump actions/setup-node from 3.6.0 to 3.7.0 (dependabot[bot]) #4898440103adabd
] - meta: bump actions/setup-python from 4.6.1 to 4.7.0 (dependabot[bot]) #4898384c0c6848c
] - meta: add mailmap entry for atlowChemi (Chemi Atlow) #488101a6e9450b8
] - module: make CJS load from ESM loader (Antoine du Hamel) #47999a5322c4b4a
] - module: ensure successful import returns the same result (Antoine du Hamel) #466625aef593db3
] - module: implementregister
utility (João Lenon) #46826015c4f788d
] - node-api: avoid macro redefinition (Tobias Nießen) #4887953ee98566b
] - permission: move PrintTree into unnamed namespace (Tobias Nießen) #4887430ea480135
] - permission: fix data types in PrintTree (Tobias Nießen) #487708380800375
] - readline: add paste bracket mode (Jakub Jankiewicz) #47150bc009d0c10
] - sea: add support for V8 bytecode-only caching (Darshan Sen) #48191f2f4ce9e29
] - src: use effective cppgc wrapper id to deduce non-cppgc id (Joyee Cheung) #48660bf7ff369f6
] - src: add built-in.env
file support (Yagiz Nizipli) #488908d6948f8e2
] - src: remove duplicated code inGenerateSingleExecutableBlob()
(Jungku Lee) #49119b030004cee
] - src: refactor vector writing in snapshot builder (Joyee Cheung) #48851497df8288d
] - src: add ability to overload fast api functions (Yagiz Nizipli) #48993e5b0dfa359
] - src: remove redundant code for uv_handle_type (Jungku Lee) #49061f126b9e3d1
] - src: modernize use-equals-default (Jason) #48735db4370fc3e
] - src: avoid string copy in BuiltinLoader::GetBuiltinIds (Yagiz Nizipli) #487219d13503c4e
] - src: fix callback_queue.h missing header (Jason) #487336c389df3aa
] - src: cast v8::Object::GetInternalField() return value to v8::Value (Joyee Cheung) #489437b9adff0be
] - src: do not pass user input to format string (Antoine du Hamel) #48973e0fdb7b092
] - src: remove ContextEmbedderIndex::kBindingDataStoreIndex (Joyee Cheung) #48836578c3d1e14
] - src: use ARES_SUCCESS instead of 0 (Hyunjin Kim) #48834ed23426aac
] - src: save the performance milestone time origin in the AliasedArray (Joyee Cheung) #487085dec186663
] - src: support snapshot in single executable applications (Joyee Cheung) #46824d759d4f631
] - src: remove unnecessary temporary creation (Jason) #48734409cc692db
] - src: fix nullptr access on realm (Jan Olaf Krems) #4880207d0fd61b1
] - src: remove OnScopeLeaveImpl's move assignment overload (Jason) #4873241cc3efa23
] - src: use string_view for utf-8 string creation (Yagiz Nizipli) #4872262a46d9335
] - src,permission: restrict by default when pm enabled (Rafael Gonzaga) #48907099159ce04
] - src,tools: initialize cppgc (Daryl Haresign) #48660600c08d197
] - stream: improve WebStreams performance (Raz Luvaton) #49089609b25fa99
] - stream: implement ReadableStream.from (Debadree Chatterjee) #48395750cca2738
] - test: usetmpdir.resolve()
(Livia Medeiros) #491286595367649
] - test: usetmpdir.resolve()
(Livia Medeiros) #49127661b055e75
] - test: usetmpdir.resolve()
in fs tests (Livia Medeiros) #49126b3c56d206f
] - test: usetmpdir.resolve()
in fs tests (Livia Medeiros) #491253ddb155d16
] - test: fix assertion message in test_async.c (Tobias Nießen) #491461d17c1032d
] - test: refactortest-esm-loader-hooks
for easier debugging (Antoine du Hamel) #4913113bd7a0293
] - test: addtmpdir.resolve()
(Livia Medeiros) #4907989b1bce56d
] - test: documentfixtures.fileURL()
(Livia Medeiros) #490832fcb855c76
] - test: reduce flakiness oftest-esm-loader-hooks
(Antoine du Hamel) #491057816e040df
] - test: stabilize the inspector-open-dispose test (Chemi Atlow) #49000e70e9747e4
] - test: print instruction for creating missing snapshot in assertSnapshot (Raz Luvaton) #48914669ac03520
] - test: addtmpdir.fileURL()
(Livia Medeiros) #49040b945d7be35
] - test: usespawn
andspawnPromisified
instead ofexec
(Antoine du Hamel) #48991b3a7427583
] - test: refactortest-node-output-errors
(Antoine du Hamel) #489926c3e5c4d69
] - test: usefixtures.fileURL
when appropriate (Antoine du Hamel) #489909138b78bcb
] - test: validate error code rather than message (Antoine du Hamel) #48972b4ca4a6f80
] - test: fix snapshot tests when cwd contains spaces or backslashes (Antoine du Hamel) #48959d4398d458c
] - test: ordercommon.mjs
in ASCII order (Antoine du Hamel) #48960b5991f5250
] - test: fix some assumptions in tests (Antoine du Hamel) #4895862e23f83f9
] - test: improve internal/worker/io.js coverage (Yoshiki Kurihara) #42387314bd6095c
] - test: fixes-module/test-esm-initialization
(Antoine du Hamel) #488803680a66df4
] - test: validate host with commas on url.parse (Yagiz Nizipli) #4887824c3742372
] - test: delete test-net-bytes-per-incoming-chunk-overhead (Michaël Zasso) #48811e01cce50f5
] - test: skip experimental test with pointer compression (Colin Ihrig) #48738d5e93b1074
] - test: fix flaky test-string-decode.js on x86 (Stefan Stojanovic) #487509136667d7d
] - test_runner: dont set exit code on todo tests (Moshe Atlow) #4892952c94908c0
] - test_runner: fix todo and only in spec reporter (Moshe Atlow) #489295ccfb8d515
] - test_runner: unwrap error message in TAP reporter (Colin Ihrig) #48942fa19b0ed05
] - test_runner: add__proto__
null (Raz Luvaton) #4866365d23940bf
] - test_runner: fix async callback in describe not awaited (Raz Luvaton) #488564bd5e55b43
] - test_runner: fix test_runnertest:fail
event type (Ethan Arrowood) #4885441058beed8
] - test_runner: call abort on test finish (Raz Luvaton) #48827821b11a59f
] - tls: fix bugs of double TLS (rogertyang) #489694439327e73
] - tools: update lint-md-dependencies (Node.js GitHub Bot) #4912221dc844309
] - tools: use spec reporter in actions (Moshe Atlow) #491293471758696
] - tools: use @reporters/github when running in github actions (Moshe Atlow) #4912995a6e7661e
] - tools: add @reporters/github to tools (Moshe Atlow) #49129995cbf93eb
] - tools: update eslint to 8.47.0 (Node.js GitHub Bot) #49124ed065bc56e
] - tools: update lint-md-dependencies to [email protected] (Node.js GitHub Bot) #49035a5f37178ad
] - tools: limit the number of auto start CIs (Antoine du Hamel) #49067c1bd680f89
] - tools: update eslint to 8.46.0 (Node.js GitHub Bot) #48966e09a6b4821
] - tools: update lint-md-dependencies to [email protected] (Node.js GitHub Bot) #489650cd2393bd9
] - tools: update lint-md-dependencies to [email protected] (Node.js GitHub Bot) #4888841929a2906
] - tools: update lint-md-dependencies to @rollup/[email protected] (Node.js GitHub Bot) #487911761bdfbd9
] - tools: update eslint to 8.45.0 (Node.js GitHub Bot) #48793b82f05cc4b
] - typings: update JSDoc forcwd
inchild_process
(LiviaMedeiros) #49029be7b511255
] - typings: sync JSDoc with the actual implementation (Hyunjin Kim) #4885345c860035d
] - url: overloadcanParse
V8 fast api method (Yagiz Nizipli) #4899360d614157b
] - url: fixisURL
detection by checkingpath
(Zhuo Zhang) #48928b12c3b5240
] - url: ensure getter access do not mutate observable symbols (Antoine du Hamel) #4889730fb7b7535
] - url: reducepathToFileURL
cpp calls (Yagiz Nizipli) #48709c3dbd0c1e4
] - util: useprimordials.ArrayPrototypeIndexOf
instead of mutable method (DaisyDogs07) #48586b79b2927ca
] - watch: decrease debounce rate (Moshe Atlow) #48926a12996298e
] - watch: use debounce instead of throttle (Moshe Atlow) #48926