-
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
v20.7.1 proposal #49917
v20.7.1 proposal #49917
Commits on Sep 28, 2023
-
bootstrap: only use the isolate snapshot when compiling code cache
We do not actually need to deserialize the context and the whole environment to compile the code cache, since code cache are not context-dependent anyway, deserializing just the isolate snapshot is enough. PR-URL: #49288 Reviewed-By: Chengzhong Wu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8480280 - Browse repository at this point
Copy the full SHA 8480280View commit details -
build: add --write-snapshot-as-array-literals to configure.py
This makes it easier to locate indeterminism in the snapshot, with the following command: $ ./configure --write-snapshot-as-array-literals $ make V= $ mv out/Release/obj/gen/node_snapshot.cc ./node_snapshot.cc $ make V= $ diff out/Release/obj/gen/node_snapshot.cc ./node_snapshot.cc PR-URL: #49312 Refs: nodejs/build#3043 Reviewed-By: Ben Noordhuis <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 31db0b8 - Browse repository at this point
Copy the full SHA 31db0b8View commit details -
test_runner: fix typescript coverage
PR-URL: #49406 Fixes: #49398 Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e7285d4 - Browse repository at this point
Copy the full SHA e7285d4View commit details -
test: make test-worker-prof more robust
Use a JS workload instead of repeating FS operations and use a timer to make it less flaky on machines with little resources. PR-URL: #49274 Refs: #26401 Refs: nodejs/reliability#640 Reviewed-By: Benjamin Gruenbaum <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c3c6c4f - Browse repository at this point
Copy the full SHA c3c6c4fView commit details -
doc: edit
import.meta.resolve
documentationPR-URL: #49247 Refs: #49028 Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Guy Bedford <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b9d4a80 - Browse repository at this point
Copy the full SHA b9d4a80View commit details -
deps: update corepack to 0.20.0
PR-URL: #49464 Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2ceab87 - Browse repository at this point
Copy the full SHA 2ceab87View commit details -
PR-URL: #49465 Reviewed-By: Jacob Smith <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f34bd15 - Browse repository at this point
Copy the full SHA f34bd15View commit details -
tools: update doc dependencies
Updated to [email protected] [email protected] [email protected] PR-URL: #49467 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a8a8a49 - Browse repository at this point
Copy the full SHA a8a8a49View commit details -
test_runner: add jsdocs to MockTimers
Signed-off-by: Erick Wendel <[email protected]> PR-URL: #49476 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Chemi Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f755e67 - Browse repository at this point
Copy the full SHA f755e67View commit details -
doc: updated releasers instructions for node.js website
PR-URL: #49427 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Ruy Adorno <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]> Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2b11910 - Browse repository at this point
Copy the full SHA 2b11910View commit details -
test: add test for urlstrings usage in
node:fs
PR-URL: #49471 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 34c1741 - Browse repository at this point
Copy the full SHA 34c1741View commit details -
test_runner: fix invalid timer call
Signed-off-by: Erick Wendel <[email protected]> PR-URL: #49477 Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b4d42a8 - Browse repository at this point
Copy the full SHA b4d42a8View commit details -
process: add custom dir support for heapsnapshot-signal
PR-URL: #47854 Refs: #47842 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Erick Wendel <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ad043ba - Browse repository at this point
Copy the full SHA ad043baView commit details -
doc: fix documentation for fs.createWriteStream highWaterMark option
PR-URL: #49456 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: LiviaMedeiros <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e426b77 - Browse repository at this point
Copy the full SHA e426b77View commit details -
lib: check SharedArrayBuffer availability in freeze_intrinsics.js
PR-URL: #49482 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 00608e8 - Browse repository at this point
Copy the full SHA 00608e8View commit details -
doc: fix missing imports in
test.run
code examplesThe script was missing necessary imports for the `run` function and the `path` module, causing it to fail. This commit adds the missing imports and resolves the issue. - Import `run` from the appropriate module. - Import `path` to resolve file paths. The script should now run without errors. PR-URL: #49489 Fixes: #49488 Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f3fea92 - Browse repository at this point
Copy the full SHA f3fea92View commit details -
doc: fix documentation for input option in child_process
PR-URL: #49481 Fixes: #49417 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Chemi Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9f8bea3 - Browse repository at this point
Copy the full SHA 9f8bea3View commit details -
esm: refactor test-esm-named-exports
PR-URL: #49493 Reviewed-By: Jacob Smith <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 17823b3 - Browse repository at this point
Copy the full SHA 17823b3View commit details -
esm: refactor test-esm-loader-resolve-type
PR-URL: #49493 Reviewed-By: Jacob Smith <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e74a075 - Browse repository at this point
Copy the full SHA e74a075View commit details -
meta: bump rtCamp/action-slack-notify from 2.2.0 to 2.2.1
Bumps [rtCamp/action-slack-notify](https://github.com/rtcamp/action-slack-notify) from 2.2.0 to 2.2.1. - [Release notes](https://github.com/rtcamp/action-slack-notify/releases) - [Commits](rtCamp/action-slack-notify@12e36fc...b24d75f) --- updated-dependencies: - dependency-name: rtCamp/action-slack-notify dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> PR-URL: #49437 Refs: rtCamp/action-slack-notify@b24d75f Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Debadree Chatterjee <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for fe26b74 - Browse repository at this point
Copy the full SHA fe26b74View commit details -
meta: bump github/codeql-action from 2.21.2 to 2.21.5
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.21.2 to 2.21.5. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@0ba4244...00e563e) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> PR-URL: #49438 Refs: github/codeql-action@00e563e Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Debadree Chatterjee <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5366027 - Browse repository at this point
Copy the full SHA 5366027View commit details -
tools: configure never-stale label correctly
Feature requests are issues, not PRs. PR-URL: #49498 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e341efe - Browse repository at this point
Copy the full SHA e341efeView commit details -
doc: cast GetInternalField() return type to v8::Value in addons.md
For the breaking change in https://chromium-review.googlesource.com/c/v8/v8/+/4707972 PR-URL: #49439 Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0471c57 - Browse repository at this point
Copy the full SHA 0471c57View commit details -
deps: update googletest to 8a6feab
PR-URL: #49463 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 15b54ff - Browse repository at this point
Copy the full SHA 15b54ffView commit details -
test: make
test-dotenv-node-options
locale-independentPR-URL: #49470 Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3987094 - Browse repository at this point
Copy the full SHA 3987094View commit details -
src: do not rely on the internal field being default to undefined
It's an undocumented V8 behavior that is subject to change. Instead just check if the internal field is set to a promise. There is also no need to check IsEmpty() since the object is guaranteed to be constructed by the FileHandle constructor with enough internal fields. PR-URL: #49413 Refs: https://chromium-review.googlesource.com/c/v8/v8/+/4707972/comment/be9285cc_a49aad88/ Reviewed-By: Yagiz Nizipli <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 39fb83a - Browse repository at this point
Copy the full SHA 39fb83aView commit details -
src: fix comment on StreamResource
PR-URL: #49193 Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for cfbcb10 - Browse repository at this point
Copy the full SHA cfbcb10View commit details -
tools: allow passing absolute path of config.gypi in js2c
PR-URL: #49162 Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Jiawen Geng <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 210c15b - Browse repository at this point
Copy the full SHA 210c15bView commit details -
PR-URL: #49525 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b4724e2 - Browse repository at this point
Copy the full SHA b4724e2View commit details -
test: split test-crypto-dh to avoid timeout on slow machines in the CI
Locally this speeds up running test-crypto-dh* from 7s to 2s. This was previously timing out in CI (took more than 2 minutes) so should see a bigger gap in the CI. PR-URL: #49492 Refs: #49202 Refs: nodejs/reliability#655 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: Filip Skokan <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f214428 - Browse repository at this point
Copy the full SHA f214428View commit details -
doc: update outdated history info
PR-URL: #49530 Refs: #48842 Refs: #47999 Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Akhil Marsonya <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Jacob Smith <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d0e0eb4 - Browse repository at this point
Copy the full SHA d0e0eb4View commit details -
src: fix fs_type_to_name default value
PR-URL: #49239 Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: theanarkh <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2d3f5c7 - Browse repository at this point
Copy the full SHA 2d3f5c7View commit details -
src: set ModuleWrap internal fields only once
There is no need to initialize the internal fields to undefined and then initialize them to something else in the caller. Simply pass the internal fields into the constructor to initialize them just once. PR-URL: #49391 Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Stephen Belanger <[email protected]> Reviewed-By: Chengzhong Wu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4b5e23c - Browse repository at this point
Copy the full SHA 4b5e23cView commit details -
gyp: put cctest filenames in variables
PR-URL: #49178 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Stephen Belanger <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0f020ed - Browse repository at this point
Copy the full SHA 0f020edView commit details -
benchmark: fix webstream pipe-to
PR-URL: #49552 Reviewed-By: Robert Nagy <[email protected]> Reviewed-By: Chemi Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4126a6e - Browse repository at this point
Copy the full SHA 4126a6eView commit details -
doc: rename possibly confusing variable and CSS class
A "selector" usually refers to a CSS selector, when here it refers to a checkbox. PR-URL: #49536 Reviewed-By: Claudio Wunder <[email protected]> Reviewed-By: Tierney Cyren <[email protected]> Reviewed-By: Chemi Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8e033c3 - Browse repository at this point
Copy the full SHA 8e033c3View commit details -
doc: update documentation for node:process warning
PR-URL: #49517 Refs: #46862 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e3594d5 - Browse repository at this point
Copy the full SHA e3594d5View commit details -
esm: remove return value for
Module.register
The current API shape si not great because it's too limited and redundant with the use of `MessagePort`. PR-URL: #49529 Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Jacob Smith <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for be48267 - Browse repository at this point
Copy the full SHA be48267View commit details -
typings: fix missing property in
ExportedHooks
PR-URL: #49567 Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Jacob Smith <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ac06607 - Browse repository at this point
Copy the full SHA ac06607View commit details -
doc: save user preference for JS flavor
PR-URL: #49526 Fixes: #49508 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Chemi Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 53fb5ae - Browse repository at this point
Copy the full SHA 53fb5aeView commit details -
test: isolate
globalPreload
testsPR-URL: #49545 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Jacob Smith <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for be02fbd - Browse repository at this point
Copy the full SHA be02fbdView commit details -
test: increase coverage of
Module.register
andinitialize
hookPR-URL: #49532 Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ced25a9 - Browse repository at this point
Copy the full SHA ced25a9View commit details -
zlib: disable CRC32 SIMD optimization
It seems that the optimization causes memory corruption. Disable it until the issue is fixed upstream. Fixes: #45268 PR-URL: #49511 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c23c60f - Browse repository at this point
Copy the full SHA c23c60fView commit details -
test: avoid copying test source files
Converting the helper functions to be inlined and making the helper file header only. PR-URL: #49515 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Gabriel Schulhof <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 567afc7 - Browse repository at this point
Copy the full SHA 567afc7View commit details -
Revert "test: ignore the copied entry_point.c"
This reverts commit d15652e. PR-URL: #49515 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Gabriel Schulhof <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 91af0a9 - Browse repository at this point
Copy the full SHA 91af0a9View commit details -
lib: use internal
pathToFileURL
PR-URL: #49553 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Jacob Smith <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e515046 - Browse repository at this point
Copy the full SHA e515046View commit details -
lib: use internal
fileURLToPath
For internal usage, `internal/url` should be used. Refs: #49553 PR-URL: #49558 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Raz Luvaton <[email protected]> Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Minwoo Jung <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f62d649 - Browse repository at this point
Copy the full SHA f62d649View commit details -
src: allow embedders to override NODE_MODULE_VERSION
PR-URL: #49279 Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Chengzhong Wu <[email protected]> Reviewed-By: Stephen Belanger <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 14ece0a - Browse repository at this point
Copy the full SHA 14ece0aView commit details -
test: skip test-child-process-pipe-dataflow.js on Windows
This is constantly failing on Windows now that the CI is never green there. To give CI at least some green space, mark it as SKIP, because we've been practically ignoring the failure for months anyway, and will probably just continue doing that. PR-URL: #49563 Refs: #48300 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 667a924 - Browse repository at this point
Copy the full SHA 667a924View commit details -
src: set --rehash-snapshot explicitly
To prepare for https://chromium-review.googlesource.com/c/v8/v8/+/4839486 PR-URL: #49556 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for fb21062 - Browse repository at this point
Copy the full SHA fb21062View commit details -
test: use setImmediate() in test-heapdump-shadowrealm.js
With a tight loop the GC may not have enough time to kick in. Try setImmediate() instead. PR-URL: #49573 Refs: #49572 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Chengzhong Wu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c079c73 - Browse repository at this point
Copy the full SHA c079c73View commit details -
test: use spawnSyncAndExitWithoutError in test/common/sea.js
To display more information when the command fails. PR-URL: #49543 Refs: nodejs/reliability#658 Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f79b153 - Browse repository at this point
Copy the full SHA f79b153View commit details -
test: use spawnSyncAndExitWithoutError in sea tests
To display more information when the command fails. PR-URL: #49543 Refs: nodejs/reliability#658 Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3599eeb - Browse repository at this point
Copy the full SHA 3599eebView commit details -
test: mark test-http-regr-gh-2928 as flaky
It has been flaky for more than a year. Mark it as flaky to avoid blocking the CI. PR-URL: #49565 Refs: nodejs/reliability#658 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Ruy Adorno <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ed7c6d1 - Browse repository at this point
Copy the full SHA ed7c6d1View commit details -
fs: fix readdir and opendir recursive with unknown file types
If the libuv operations invoked by `readdir`/`opendir` return `uv_dirent_t` values where the `type` is `UV_DIRENT_UNKNOWN` then a further `lstat` is issued to fully construct the `Dirent` values. In the recursive versions of these functions, the `path` parameter was incorrectly assumed to be the path to the entry when it should be the path to the directory containing the entry. Fixes #49499. PR-URL: #49603 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for db3fc6d - Browse repository at this point
Copy the full SHA db3fc6dView commit details -
errors: use
determineSpecificType
in more error messagesPR-URL: #49580 Fixes: #49576 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Matthew Aitken <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6377f1b - Browse repository at this point
Copy the full SHA 6377f1bView commit details -
tools: update lint-md-dependencies to [email protected] [email protected]
PR-URL: #49584 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 20d038f - Browse repository at this point
Copy the full SHA 20d038fView commit details -
tools: update eslint to 8.49.0
PR-URL: #49586 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 728ebf6 - Browse repository at this point
Copy the full SHA 728ebf6View commit details -
test: show more info on failure in test-cli-syntax-require.js
Use spawnSyncAndExit() to show more info when the tes fails. PR-URL: #49561 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Ruy Adorno <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]> Reviewed-By: Nitzan Uziely <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c70c74a - Browse repository at this point
Copy the full SHA c70c74aView commit details -
esm: set all hooks as release candidate
PR-URL: #49597 Reviewed-By: Jacob Smith <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1beefd5 - Browse repository at this point
Copy the full SHA 1beefd5View commit details -
test: deflake test-tls-socket-close
Move the check for the destroyed state of the remote socket to the inner `setImmediate()`. Refs: #49327 (comment) PR-URL: #49575 Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 185d9b5 - Browse repository at this point
Copy the full SHA 185d9b5View commit details -
debugger: use
internal/url.URL
instead ofurl.parse
PR-URL: #49590 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6fcb51d - Browse repository at this point
Copy the full SHA 6fcb51dView commit details -
tools: restrict internal code from using public
url
modulePR-URL: #49590 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 08ffc63 - Browse repository at this point
Copy the full SHA 08ffc63View commit details -
benchmark: shorten pipe-to by reducing number of chunks
PR-URL: #49577 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Debadree Chatterjee <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 78a6c73 - Browse repository at this point
Copy the full SHA 78a6c73View commit details -
test_runner: add jsdocs to mock.js
PR-URL: #49555 Reviewed-By: Erick Wendel <[email protected]> Reviewed-By: Chemi Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5672e38 - Browse repository at this point
Copy the full SHA 5672e38View commit details -
test_runner: add junit reporter
PR-URL: #49614 Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 17a05b1 - Browse repository at this point
Copy the full SHA 17a05b1View commit details -
test_runner: fix test runner watch mode when no positional arguments
PR-URL: #49578 Fixes: #49617 Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7686551 - Browse repository at this point
Copy the full SHA 7686551View commit details -
test: mark test-runner-watch-mode as flaky
PR-URL: #49627 Refs: #49605 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Daijiro Wachi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ab3afb3 - Browse repository at this point
Copy the full SHA ab3afb3View commit details -
doc: mark Node.js 16 as End-of-Life
PR-URL: #49651 Refs: https://nodejs.org/en/blog/announcements/nodejs16-eol Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3d839fb - Browse repository at this point
Copy the full SHA 3d839fbView commit details -
doc: remove
@anonrig
from performance initiativePR-URL: #49641 Reviewed-By: Tierney Cyren <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Claudio Wunder <[email protected]> Reviewed-By: Stephen Belanger <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c2eac7d - Browse repository at this point
Copy the full SHA c2eac7dView commit details -
test: skip test-child-process-stdio-reuse-readable-stdio on Windows
It is flaky due to the same cause of test-child-process-pipe-dataflow being flaky - cygwin quirks - so skip it on Windows too. Drive-by: remove the skip mark of test-child-process-pipe-dataflow in the status file and directly skip it in the test with a comment. PR-URL: #49621 Reviewed-By: Debadree Chatterjee <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6e56f2d - Browse repository at this point
Copy the full SHA 6e56f2dView commit details -
esm: clarify ERR_REQUIRE_ESM errors
In #39175, better ESM errors were introduced. This commit tweaks the language in the error slightly to make it clear that there are three different options to resolve the error. Refs: #39175 PR-URL: #49521 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Jacob Smith <[email protected]> Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Stephen Belanger <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3a9ea09 - Browse repository at this point
Copy the full SHA 3a9ea09View commit details -
errors: improve classRegExp in errors.js
PR-URL: #49643 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 142e256 - Browse repository at this point
Copy the full SHA 142e256View commit details -
doc: update
corepack.md
to account for 0.20.0 changesPR-URL: #49486 Refs: nodejs/corepack#291 Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d316b32 - Browse repository at this point
Copy the full SHA d316b32View commit details -
doc: deprecate calling
promisify
on a function that returns a promisePR-URL: #49647 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7b6a731 - Browse repository at this point
Copy the full SHA 7b6a731View commit details -
esm: fix support for
URL
instances inregister
PR-URL: #49655 Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: James M Snell <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 521a932 - Browse repository at this point
Copy the full SHA 521a932View commit details -
deps: update nghttp2 to 1.56.0
PR-URL: #49582 Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1424404 - Browse repository at this point
Copy the full SHA 1424404View commit details -
fs: improve error performance of sync methods
PR-URL: #49593 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Robert Nagy <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 938471e - Browse repository at this point
Copy the full SHA 938471eView commit details -
doc: alphabetize cli.md sections
PR-URL: #49668 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Harshitha K P <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9f0b0e1 - Browse repository at this point
Copy the full SHA 9f0b0e1View commit details -
bootstrap: do not expand argv1 for snapshots
To avoid capturing build machine states into the snapshot PR-URL: #49506 Fixes: #49501 Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: James M Snell <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6010a91 - Browse repository at this point
Copy the full SHA 6010a91View commit details -
test: fix argument computation in embedtest
There were a few bugs in the original test that went unnoticed because with the bug the test did not actually get run anymore. This patch fixes the argument computation by accounting filtering of the arguments, and uses spawnSyncAndExit{WithoutError} in the test to enable better logging when the test fails. PR-URL: #49506 Fixes: #49501 Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: James M Snell <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1fffda5 - Browse repository at this point
Copy the full SHA 1fffda5View commit details -
build: run embedtest using node executable
We should use the node executable to run this test, instead of counting on embedtest, the binary being tested, as the test runner. Otherwise bugs can go unnoticed if the embedtest binary itself does not work correctly. PR-URL: #49506 Fixes: #49501 Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: James M Snell <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b30754a - Browse repository at this point
Copy the full SHA b30754aView commit details -
src: port Pipe to uv_pipe_bind2, uv_pipe_connect2
The introduction of the uv_pipe_bind2 and uv_pipe_connect2 methods in libuv v1.46.0 changed the behaviour of uv_pipe_bind and uv_pipe_connect. This broke the ability to connect to abstract domain sockets on linux. This change ports PipeWrap to use the new uv_pipe_bind2 and uv_pipe_connect2 methods to restore abstract domain socket support. Fixes: #49656 Refs: libuv/libuv#4030 PR-URL: #49667 Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a597cb8 - Browse repository at this point
Copy the full SHA a597cb8View commit details -
src: use SNAPSHOT_SERDES to log snapshot ser/deserialization
To avoid clobbering output of MKSNAPSHOT PR-URL: #49637 Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: James M Snell <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f611583 - Browse repository at this point
Copy the full SHA f611583View commit details -
stream: improve webstream readable async iterator performance
PR-URL: #49662 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7c5e322 - Browse repository at this point
Copy the full SHA 7c5e322View commit details -
test: deflake test-http-regr-gh-2928
Hard code the value of the host parameter to `common.localhostIPv4` in `server.listen()` and `net.connect()`. This 1. ensures that the client `socket._handle` is not reinitialized during connection due to the family autodetection algorithm, preventing `parser.consume()` from being called with an invalid `socket._handle` parameter. 2. works around an issue in the FreeBSD 12 machine where the stress test is run where some sockets get stuck after connection. PR-URL: #49574 Closes: #49565 Fixes: #49564 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: James M Snell <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b9e5b43 - Browse repository at this point
Copy the full SHA b9e5b43View commit details -
tools: update lint-md-dependencies to [email protected]
PR-URL: #49679 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ff81bfb - Browse repository at this point
Copy the full SHA ff81bfbView commit details -
PR-URL: #49633 Reviewed-By: Jacob Smith <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Guy Bedford <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a6140f1 - Browse repository at this point
Copy the full SHA a6140f1View commit details -
- fix uvwasi updater to update the right dep in the documentation for maintaining dependencies. Signed-off-by: Michael Dawson <[email protected]> PR-URL: #49682 Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 462228b - Browse repository at this point
Copy the full SHA 462228bView commit details -
benchmark: add a benchmark for read() of ReadableStreams
Refs: nodejs/performance#82 PR-URL: #49622 Reviewed-By: Yagiz Nizipli <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4879e3f - Browse repository at this point
Copy the full SHA 4879e3fView commit details -
doc: fix print results in
events
PR-URL: #49548 Refs: #49537 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3529448 - Browse repository at this point
Copy the full SHA 3529448View commit details -
doc: link maintaining deps to pull-request.md
PR-URL: #49716 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a304d1e - Browse repository at this point
Copy the full SHA a304d1eView commit details -
stream: improve readable webstream
pipeTo
PR-URL: #49690 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b29d927 - Browse repository at this point
Copy the full SHA b29d927View commit details -
test: use
fs.constants
forfs.access
constantsPR-URL: #49685 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e5185b0 - Browse repository at this point
Copy the full SHA e5185b0View commit details -
esm: fix return type of
import.meta.resolve
PR-URL: #49698 Fixes: #49695 Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Guy Bedford <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8a6f5fb - Browse repository at this point
Copy the full SHA 8a6f5fbView commit details -
doc: add missing history info for
import.meta.resolve
PR-URL: #49700 Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: Jacob Smith <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for db4ab1c - Browse repository at this point
Copy the full SHA db4ab1cView commit details -
PR-URL: #49701 Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Chemi Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3a88571 - Browse repository at this point
Copy the full SHA 3a88571View commit details -
Revert "test: mark test-http-regr-gh-2928 as flaky"
This reverts commit 48fcb20. Refs: 18e00a577d74 PR-URL: #49708 Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Franziska Hinkelmann <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2cc5ad7 - Browse repository at this point
Copy the full SHA 2cc5ad7View commit details -
test,crypto: update WebCryptoAPI WPT
PR-URL: #49714 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 843df1a - Browse repository at this point
Copy the full SHA 843df1aView commit details -
doc: add missed
inspect
with numericSeparator to exampleIn exmple of `util.inspect` with numericSeparator option, calling `util.inspect` is missed. So actual result is different from expected result. PR-URL: #49717 Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4175ea3 - Browse repository at this point
Copy the full SHA 4175ea3View commit details -
repl: don't accumulate excess indentation in .load
When using .load the REPL would accumulate indentation with each line including the indentation from all previous lines. Now it keeps the indentation at the correct level. Fixes: #47673 PR-URL: #49461 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Kohei Ueno <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8a7c101 - Browse repository at this point
Copy the full SHA 8a7c101View commit details -
doc: update output of example in
mimeParams.set()
Actual output of example in `mimeParams.set()` is mismatched. PR-URL: #49718 Reviewed-By: Matthew Aitken <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for fe78a34 - Browse repository at this point
Copy the full SHA fe78a34View commit details -
doc: add missing function call to example for
util.promisify
PR-URL: #49719 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Deokjin Kim <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 774c1cf - Browse repository at this point
Copy the full SHA 774c1cfView commit details -
lib: reset the cwd cache before execution
PR-URL: #49684 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for bbc7105 - Browse repository at this point
Copy the full SHA bbc7105View commit details -
fs: improve error performance of
opendirSync
PR-URL: #49705 Refs: nodejs/performance#106 Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b618fe2 - Browse repository at this point
Copy the full SHA b618fe2View commit details -
meta: add primordials strategic initiative
PR-URL: #49706 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Franziska Hinkelmann <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 58f7a9e - Browse repository at this point
Copy the full SHA 58f7a9eView commit details -
doc: deprecate
util.toUSVString
Co-authored-by: Antoine du Hamel <[email protected]> Co-authored-by: Michaël Zasso <[email protected]> PR-URL: #49725 Refs: #47342 Reviewed-By: Robert Nagy <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Chengzhong Wu <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a5dd057 - Browse repository at this point
Copy the full SHA a5dd057View commit details -
PR-URL: #49227 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: James M Snell <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ce37688 - Browse repository at this point
Copy the full SHA ce37688View commit details -
PR-URL: #49755 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8bfbe70 - Browse repository at this point
Copy the full SHA 8bfbe70View commit details -
lib: allow byob reader for 'blob.stream()'
Fixes: #47993 PR-URL: #49713 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Matteo Collina <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1287d5b - Browse repository at this point
Copy the full SHA 1287d5bView commit details -
util: add
getCwdSafe
internal util fnThis function was first implemented in #46826, but at some point of the PR implementation this fn was no longer related to the PR. Refs: #46826 (comment) PR-URL: #48434 Reviewed-By: Jacob Smith <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7c2060c - Browse repository at this point
Copy the full SHA 7c2060cView commit details -
src: improve error message when ICU data cannot be initialized
Previously when we fail to initialize ICU data, the error message is ``` could not initialize ICU (check NODE_ICU_DATA or --icu-data-dir parameters) ``` This patch updates it to something similar to: ``` U_FILE_ACCESS_ERROR: Could not initialize ICU. Check the directory specified by NODE_ICU_DATA or --icu-data-dir contains icudt73l.dat and it's readable ``` Where the expected data file name is the same as U_ICUDATA_NAME. PR-URL: #49666 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: James M Snell <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 10a2ade - Browse repository at this point
Copy the full SHA 10a2adeView commit details -
doc: improve documentation about ICU data fallback
This patch: - Documents `--with-icu-default-data-dir` and its precedence - Elaborates a bit more about the format of the name of the expected data file. PR-URL: #49666 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: James M Snell <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e0f9349 - Browse repository at this point
Copy the full SHA e0f9349View commit details -
deps: update googletest to d1467f5
PR-URL: #49676 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6c86c06 - Browse repository at this point
Copy the full SHA 6c86c06View commit details -
esm: identify parent importing a url with invalid host
PR-URL: #49736 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Geoffrey Booth <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 05f0fcb - Browse repository at this point
Copy the full SHA 05f0fcbView commit details -
deps: remove pthread-fixes.c from uv.gyp
The file was removed in the latest libuv upgrade. Remove it from the build recipe as well. Fixes: #49739 PR-URL: #49744 Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Debadree Chatterjee <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b8a4fef - Browse repository at this point
Copy the full SHA b8a4fefView commit details -
test: refactor test-readline-async-iterators into a benchmark
PR-URL: #49237 Fixes: #49224 Reviewed-By: Matteo Collina <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3db9b40 - Browse repository at this point
Copy the full SHA 3db9b40View commit details -
lib: fix
internalBinding
typingsPR-URL: #49742 Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Zeyu "Alex" Yang <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for efd6815 - Browse repository at this point
Copy the full SHA efd6815View commit details -
PR-URL: #49559 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Matthew Aitken <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 61d18d6 - Browse repository at this point
Copy the full SHA 61d18d6View commit details -
lib: update encoding sets in
WHATWG API
PR-URL: #49610 Refs: https://encoding.spec.whatwg.org/#names-and-labels Reviewed-By: Daeyeon Jeong <[email protected]> Reviewed-By: Minwoo Jung <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0ce1e94 - Browse repository at this point
Copy the full SHA 0ce1e94View commit details -
tools: skip ruff on tools/node_modules
PR-URL: #49838 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5ac6722 - Browse repository at this point
Copy the full SHA 5ac6722View commit details -
doc: add
git node backport
way to the backporting guidealso updated 10.x to 20.x in backporting examples PR-URL: #49760 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 864fe56 - Browse repository at this point
Copy the full SHA 864fe56View commit details -
stream: use bitmap in readable state
PR-URL: #49745 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Robert Nagy <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0ccd463 - Browse repository at this point
Copy the full SHA 0ccd463View commit details -
test_runner: accept
testOnly
inrun
PR-URL: #49753 Fixes: #49733 Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Raz Luvaton <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 80b342c - Browse repository at this point
Copy the full SHA 80b342cView commit details -
fs: fix file descriptor validator
PR-URL: #49752 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 835f9fe - Browse repository at this point
Copy the full SHA 835f9feView commit details -
doc: promote fetch/webstreams from experimental to stable
PR-URL: #45684 Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Robert Nagy <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0fbbe49 - Browse repository at this point
Copy the full SHA 0fbbe49View commit details -
doc: add mertcanaltin as a triager
PR-URL: #49826 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Qingyu Deng <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Daeyeon Jeong <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: LiviaMedeiros <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6a88c6a - Browse repository at this point
Copy the full SHA 6a88c6aView commit details -
node-api: enable uncaught exceptions policy by default
This enables the option `--force-node-api-uncaught-exceptions-policy` for a specific Node-API addon when it is compiled with `NAPI_EXPERIMENTAL` (and this would be the default behavior when `NAPI_VERSION` 10 releases). This would not break existing Node-API addons. PR-URL: #49313 Refs: #36510 Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Gabriel Schulhof <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9600928 - Browse repository at this point
Copy the full SHA 9600928View commit details -
doc,tools: switch to
@node-core/utils
Refs: https://github.com/nodejs/node-core-utils/releases/tag/v4.0.0 PR-URL: #49851 Refs: nodejs/node-core-utils#700 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ddf0e17 - Browse repository at this point
Copy the full SHA ddf0e17View commit details -
test: use mustSucceed instead of mustCall
PR-URL: #49788 Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for eded29c - Browse repository at this point
Copy the full SHA eded29cView commit details -
deps: V8: cherry-pick b33bf2dfd261
Original commit message: Ignore --predictable when computing flag list hashes This allows reproducible code cache generation. Refs: #48749 Change-Id: Ib4693de60ddff1fe41d95c10980f763463db3f95 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4681766 Reviewed-by: Leszek Swirski <[email protected]> Commit-Queue: Joyee Cheung <[email protected]> Cr-Commit-Position: refs/heads/main@{#88943} Refs: v8/v8@b33bf2d PR-URL: #49703 Refs: v8/v8@de9a5de Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Richard Lau <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1f16df2 - Browse repository at this point
Copy the full SHA 1f16df2View commit details -
deps: V8: backport de9a5de2274f
Original commit message: Ignore flags implied by --predictable during hash computation https://chromium-review.googlesource.com/c/v8/v8/+/4681766 added code to ignore --predictable during hash computation of flags in order to produce reproducible code cache. This turns out to be not enough since the flags implied by --predictable also need to be ignored for it to work. This patch makes sure that they are ignored. Change-Id: Ifa36641efe3ca105706fd293be46fc974055d2d4 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4851287 Commit-Queue: Joyee Cheung <[email protected]> Reviewed-by: Leszek Swirski <[email protected]> Reviewed-by: Patrick Thier <[email protected]> Cr-Commit-Position: refs/heads/main@{#90022} Refs: v8/v8@de9a5de PR-URL: #49703 Refs: v8/v8@b33bf2d Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Richard Lau <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for aea7371 - Browse repository at this point
Copy the full SHA aea7371View commit details -
doc: deprecate
fs.F_OK
,fs.R_OK
,fs.W_OK
,fs.X_OK
PR-URL: #49683 Reviewed-By: Yagiz Nizipli <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f4041ce - Browse repository at this point
Copy the full SHA f4041ceView commit details -
PR-URL: #49858 Refs: #49683 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Richard Lau <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 690cca3 - Browse repository at this point
Copy the full SHA 690cca3View commit details -
test: mark test-runner-output as flaky
This has been flaky on many platforms for months. Mark it as flaky for now to avoid blocking the CI. PR-URL: #49854 Refs: #49853 Refs: nodejs/reliability#673 Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d2bcdcb - Browse repository at this point
Copy the full SHA d2bcdcbView commit details -
fs: improve
readFileSync
with file descriptorsPR-URL: #49691 Reviewed-By: Stephen Belanger <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 07d0518 - Browse repository at this point
Copy the full SHA 07d0518View commit details -
tools: support updating @reporters/github manually
PR-URL: #49871 Refs: fbe28e2 Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Chemi Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6db0d3d - Browse repository at this point
Copy the full SHA 6db0d3dView commit details -
url: improve invalid url performance
PR-URL: #49692 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Robert Nagy <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7d91a73 - Browse repository at this point
Copy the full SHA 7d91a73View commit details -
stream: use bitmap in writable state
PR-URL: #49834 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Robert Nagy <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 12fe6a0 - Browse repository at this point
Copy the full SHA 12fe6a0View commit details -
test: deflake test-runner-output
PR-URL: #49878 Fixes: #49853 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Chemi Atlow <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d44a812 - Browse repository at this point
Copy the full SHA d44a812View commit details -
perf_hooks: reduce overhead of new performance_entries
PR-URL: #49803 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Stephen Belanger <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f40b5ed - Browse repository at this point
Copy the full SHA f40b5edView commit details -
fs: improve error performance for
unlinkSync
PR-URL: #49856 Refs: nodejs/performance#106 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e82e46c - Browse repository at this point
Copy the full SHA e82e46cView commit details -
fs: replace
SetMethodNoSideEffect
in node_filePR-URL: #49857 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9363179 - Browse repository at this point
Copy the full SHA 9363179View commit details -
test: add os setPriority, getPriority test coverage
PR-URL: #38771 Reviewed-By: Darshan Sen <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1a18034 - Browse repository at this point
Copy the full SHA 1a18034View commit details -
2023-09-28, Version 20.7.1 (Current)
Notable changes: doc: * deprecate `fs.F_OK`, `fs.R_OK`, `fs.W_OK`, `fs.X_OK` (Livia Medeiros) #49683 * promote fetch/webstreams from experimental to stable (Steven) #45684 * deprecate `util.toUSVString` (Yagiz Nizipli) #49725 * deprecate calling `promisify` on a function that returns a promise (Antoine du Hamel) #49647 esm: * set all hooks as release candidate (Geoffrey Booth) #49597 stream: * use bitmap in writable state (Raz Luvaton) #49834 * use bitmap in readable state (Benjamin Gruenbaum) #49745 * improve webstream readable async iterator performance (Raz Luvaton) #49662 PR-URL: #49917
Configuration menu - View commit details
-
Copy full SHA for eee298e - Browse repository at this point
Copy the full SHA eee298eView commit details