-
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
v22.6.0 proposal #54123
Merged
Merged
v22.6.0 proposal #54123
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
It is running on ubuntu-20.04, which will inevitably be removed from GitHub actions at some point. Attempts to upgrade it to ubuntu-22.04 and ubuntu-24.04 have failed. It is now blocking V8 updates because of errors that happen only with the `test-asan` job. Refs: #52374 Refs: #53651 (comment) PR-URL: #53844 Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: James M Snell <[email protected]>
Instead call the C++ code every time we need to check for a trace category, now we get the C++ pointer to the flag that holds the info if the trace is enabled and return this pointer inside a buffer that we can use to call/check if the value is enabled. With this change, no C++ call is made and the access to the info happens in JS side, which has no perf penalty. PR-URL: #53602 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]>
This commit consolidates all option parsing for the test runner in the parseCommandLine() internal helper function. The exception is a couple of temporary flags used for feature gating which will eventually become no-ops. This consolidation is prep work for supporting running test files in the test runner process. PR-URL: #53849 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Chemi Atlow <[email protected]>
The Local<Value> returned from ColumnToValue() and ColumnNameToValue() may be empty (if a JavaScript exception is pending), in which case a segmentation fault may occur at the call sites, which do not check if the Local<Value> is empty. Fix this bug returning early if an exception is pending (as indicated by the Local being empty). In the long term, these functions should return MaybeLocal instead of Local, but this patch is supposed to be a minimal bug fix only. PR-URL: #53850 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]>
This commit adds a filePath getter to the TestContext and SuiteContext classes. This allows a context to be mapped back to the original test file that created it, even if it was imported from another file. This is useful for mapping features like test snapshots to the correct test file. This is also prep work for supporting running test files in the test runner process. PR-URL: #53853 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
This commit refactors the internals of snapshot tests to get the name of the test file from the test context instead of passing it to the SnapshotManager constructor. This is prep work for supporting running test files in the test runner process. PR-URL: #53853 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
Fix to ignore spaces between '=' and quoted string in env file Fixes: #53461 Signed-off-by: Mohit Malhotra <[email protected]> PR-URL: #53786 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]>
PR-URL: #53823 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
PR-URL: #53762 Refs: nodejs/nodejs.org#6850 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Richard Lau <[email protected]>
PR-URL: #53857 Reviewed-By: Nitzan Uziely <[email protected]> Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Ulises Gascón <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
The release has been postponed and I forgot to update the date in the `CHANGELOG_V22.md`. PR-URL: #53889 Refs: #53826 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
PR-URL: #53888 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Paolo Insogna <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Ruy Adorno <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
PR-URL: #53861 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Vinícius Lourenço Claro Cardoso <[email protected]>
PR-URL: #53862 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
PR-URL: #53895 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Start moving src/crypto functionality out to a separate dep that can be shared with other projects that need to emulate Node.js crypto behavior. PR-URL: #53803 Reviewed-By: Yagiz Nizipli <[email protected]>
PR-URL: #53782 Reviewed-By: Kohei Ueno <[email protected]>
Decorate stack frame with 'async' and 'new' keywords based on the type of the call site info. PR-URL: #53860 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
PR-URL: #53872 Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Paolo Insogna <[email protected]> Reviewed-By: Matteo Collina <[email protected]>
PR-URL: #53876 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: #53869 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Juan José Arboleda <[email protected]> Reviewed-By: Gerhard Stöbich <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
PR-URL: #53593 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Stephen Belanger <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Chengzhong Wu <[email protected]> Reviewed-By: Paolo Insogna <[email protected]>
PR-URL: #53676 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Claudio Wunder <[email protected]>
Co-authored-by: Qingyu Deng <[email protected]> PR-URL: #53567 Fixes: #37780 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Raz Luvaton <[email protected]> Reviewed-By: Claudio Wunder <[email protected]>
With recent versions of V8, it is not necessary to use Maybe<bool> anymore. This changes member functions of SecureContext to use Maybe<void> instead. PR-URL: #53883 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Use the same prompt for uploads to the web host and Cloudflare R2. PR-URL: #53892 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
PR-URL: #53907 Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: Vinícius Lourenço Claro Cardoso <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
PR-URL: #53859 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Marco Ippolito <[email protected]>
Avoid race conditions by using a different file for each subtest. Fixes: #51860 PR-URL: #53920 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
This commit moves the documentation for two CLI flags to the proper sorted location. PR-URL: #53926 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
PR-URL: #53877 Refs: nodejs/security-wg#860 Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Ulises Gascón <[email protected]> Reviewed-By: Matteo Collina <[email protected]>
PR-URL: #53886 Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Chengzhong Wu <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: #54062 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: #54039 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: #54065 Reviewed-By: Chemi Atlow <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: #54070 Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Jake Yuesong Li <[email protected]>
PR-URL: #53932 Reviewed-By: Ulises Gascón <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: #54164 Backport-PR-URL: #54211 Reviewed-By: Paolo Insogna <[email protected]> Reviewed-By: Jake Yuesong Li <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Zeyu "Alex" Yang <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]>
PR-URL: #54199 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Zeyu "Alex" Yang <[email protected]> Reviewed-By: Jake Yuesong Li <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]>
PR-URL: #54199 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Zeyu "Alex" Yang <[email protected]> Reviewed-By: Jake Yuesong Li <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]>
PR-URL: #54072 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Marco Ippolito <[email protected]>
RafaelGSS
force-pushed
the
v22.6.0-proposal
branch
from
August 5, 2024 17:22
d77f596
to
38a6aa3
Compare
RafaelGSS
added a commit
that referenced
this pull request
Aug 5, 2024
Notable changes: deps: * (SEMVER-MINOR) V8: backport 7857eb34db42 (Stephen Belanger) #53997 http: * (SEMVER-MINOR) add diagnostics channel `http.client.request.error` (Kohei Ueno) #54054 inspector: * (SEMVER-MINOR) add initial support for network inspection (Kohei Ueno) #53593 lib,src: * drop --experimental-network-imports (Rafael Gonzaga) #53822 meta: * add jake to collaborators (jakecastelli) #54004 module: * (SEMVER-MINOR) add --experimental-strip-types (Marco Ippolito) #53725 stream: * (SEMVER-MINOR) expose DuplexPair API (Austin Wright) #34111 test_runner: * (SEMVER-MINOR) fix support watch with run(), add globPatterns option (Matteo Collina) #53866 * (SEMVER-MINOR) refactor snapshots to get file from context (Colin Ihrig) #53853 * (SEMVER-MINOR) add context.filePath (Colin Ihrig) #53853 PR-URL: #54123
Notable changes: deps: * (SEMVER-MINOR) V8: backport 7857eb34db42 (Stephen Belanger) #53997 http: * (SEMVER-MINOR) add diagnostics channel `http.client.request.error` (Kohei Ueno) #54054 inspector: * (SEMVER-MINOR) add initial support for network inspection (Kohei Ueno) #53593 lib,src: * drop --experimental-network-imports (Rafael Gonzaga) #53822 meta: * add jake to collaborators (jakecastelli) #54004 module: * (SEMVER-MINOR) add --experimental-strip-types (Marco Ippolito) #53725 stream: * (SEMVER-MINOR) expose DuplexPair API (Austin Wright) #34111 test_runner: * (SEMVER-MINOR) fix support watch with run(), add globPatterns option (Matteo Collina) #53866 * (SEMVER-MINOR) refactor snapshots to get file from context (Colin Ihrig) #53853 * (SEMVER-MINOR) add context.filePath (Colin Ihrig) #53853 PR-URL: #54123
RafaelGSS
force-pushed
the
v22.6.0-proposal
branch
from
August 5, 2024 17:24
38a6aa3
to
b096e41
Compare
RafaelGSS
added
request-ci
Add this label to start a Jenkins CI on a PR.
release
Issues and PRs related to Node.js releases.
labels
Aug 5, 2024
github-actions
bot
removed
the
request-ci
Add this label to start a Jenkins CI on a PR.
label
Aug 5, 2024
marco-ippolito
approved these changes
Aug 6, 2024
RafaelGSS
added a commit
that referenced
this pull request
Aug 6, 2024
Notable changes: deps: * (SEMVER-MINOR) V8: backport 7857eb34db42 (Stephen Belanger) #53997 http: * (SEMVER-MINOR) add diagnostics channel `http.client.request.error` (Kohei Ueno) #54054 inspector: * (SEMVER-MINOR) add initial support for network inspection (Kohei Ueno) #53593 lib,src: * drop --experimental-network-imports (Rafael Gonzaga) #53822 meta: * add jake to collaborators (jakecastelli) #54004 module: * (SEMVER-MINOR) add --experimental-strip-types (Marco Ippolito) #53725 stream: * (SEMVER-MINOR) expose DuplexPair API (Austin Wright) #34111 test_runner: * (SEMVER-MINOR) fix support watch with run(), add globPatterns option (Matteo Collina) #53866 * (SEMVER-MINOR) refactor snapshots to get file from context (Colin Ihrig) #53853 * (SEMVER-MINOR) add context.filePath (Colin Ihrig) #53853 PR-URL: #54123
RafaelGSS
added a commit
to nodejs/nodejs.org
that referenced
this pull request
Aug 6, 2024
RafaelGSS
added a commit
to nodejs/nodejs.org
that referenced
this pull request
Aug 6, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
2024-08-06, Version 22.6.0 (Current), @RafaelGSS
Experimental TypeScript support via strip types
Node.js introduces the
--experimental-strip-types
flag for initial TypeScript support.This feature strips type annotations from .ts files, allowing them to run
without transforming TypeScript-specific syntax. Current limitations include:
enums
ornamespaces
.Thanks Marco Ippolito for working on this.
Experimental Network Inspection Support in Node.js
This update introduces the initial support for network inspection in Node.js.
Currently, this is an experimental feature, so you need to enable it using the
--experimental-network-inspection
flag.With this feature enabled, you can inspect network activities occurring within a JavaScript application.
To use network inspection, start your Node.js application with the following command:
$ node --inspect-wait --experimental-network-inspection index.js
Please note that the network inspection capabilities are in active development.
We are actively working on enhancing this feature and will continue to expand its functionality in future updates.
http
andhttps
modules only.feature request on the Chrome DevTools side is addressed.
Thanks Kohei Ueno for working on this.
Other Notable Changes
15a94e67b1
] - lib,src: drop --experimental-network-imports (Rafael Gonzaga) #5382268e444d2d8
] - (SEMVER-MINOR) http: add diagnostics channelhttp.client.request.error
(Kohei Ueno) #540542d982d3dee
] - (SEMVER-MINOR) deps: V8: backport 7857eb34db42 (Stephen Belanger) #5399715816bd0dd
] - (SEMVER-MINOR) stream: expose DuplexPair API (Austin Wright) #34111893c864542
] - (SEMVER-MINOR) test_runner: fix support watch with run(), add globPatterns option (Matteo Collina) #53866048d421ad1
] - meta: add jake to collaborators (jakecastelli) #540046ad6e01bf3
] - (SEMVER-MINOR) test_runner: refactor snapshots to get file from context (Colin Ihrig) #53853698e44f8e7
] - (SEMVER-MINOR) test_runner: add context.filePath (Colin Ihrig) #53853Commits
063f46dc2a
] - assert: use isError instead of instanceof in innerOk (Pietro Marchini) #5398010bea42f81
] - build: update gcovr to 7.2 and codecov config (Benjamin E. Coe) #540197c417c6cf4
] - build: avoid compiling with VS v17.10 (Hüseyin Açacak) #53863ee97c045b4
] - build: ensure v8_pointer_compression_sandbox is enabled on 64bit (Shelley Vohr) #53884bfbed0afd5
] - build: fix conflict gyp configs (Chengzhong Wu) #536050f1fe63e32
] - build: trigger coverage ci when updating codecov (Yagiz Nizipli) #53929ad62b945f0
] - build: update codecov coverage build count (Yagiz Nizipli) #539293c40868fd3
] - build: disable test-asan workflow (Michaël Zasso) #538442a62d6ca57
] - build, tools: drop leading/
fromr2dir
(Richard Lau) #539519c7b009f47
] - build,tools: simplify upload of shasum signatures (Michaël Zasso) #53892057bd44f9f
] - child_process: fix incomplete prototype pollution hardening (Liran Tal) #5378166f7c595c7
] - cli: document--inspect
port0
behavior (Aviv Keller) #53782fad3e74b47
] - console: fix issues with frozen intrinsics (Vinicius Lourenço) #54070e685ecd7ae
] - deps: update corepack to 0.29.3 (Node.js GitHub Bot) #54072e5f7250e6d
] - deps: update amaro to 0.0.6 (Node.js GitHub Bot) #541992c1e9082e8
] - deps: update amaro to 0.0.5 (Node.js GitHub Bot) #541992d982d3dee
] - (SEMVER-MINOR) deps: V8: backport 7857eb34db42 (Stephen Belanger) #539971061898462
] - deps: update c-ares to v1.32.3 (Node.js GitHub Bot) #54020f4a7ac5e18
] - deps: V8: cherry-pick 35888fee7bba (Joyee Cheung) #537281176310226
] - deps: add gn build files for ncrypto (Cheng) #539407a1d5a4f84
] - deps: update c-ares to v1.32.2 (Node.js GitHub Bot) #5386566f6a2aec9
] - deps: V8: cherry-pick 9812cb486e2b (Michaël Zasso) #539668e66a18ef0
] - deps: start working on ncrypto dep (James M Snell) #53803c114082b12
] - deps: fix include_dirs of nbytes (Cheng) #53862b7315281be
] - doc: move numCPUs require to top of file in cluster CJS example (Alfredo González) #539328e7c30c2a4
] - doc: update security-release process to automated one (Rafael Gonzaga) #5387752a4206be2
] - doc: fix typo in technical-priorities.md (YoonSoo_Shin) #5409430e18a04a3
] - doc: fix typo in diagnostic tooling support tiers document (Taejin Kim) #5405858aebfd31e
] - doc: move GeoffreyBooth to TSC regular member (Geoffrey Booth) #54047c1634c7213
] - doc: correct typescript stdin support (Marco Ippolito) #5403664812d5c22
] - doc: fix typo in recognizing-contributors (Marco Ippolito) #539906b35994b6f
] - doc: fix documentation for--run
(Aviv Keller) #5397604d203a233
] - doc: update boxstarter README (Aviv Keller) #5378586fa46db1c
] - doc: add info about prefix-only modules tomodule.builtinModules
(Grigory) #53954defdc3c568
] - doc: removescroll-behavior: smooth;
(Cloyd Lau) #53942e907236dd9
] - doc: move --test-coverage-{ex,in}clude to proper location (Colin Ihrig) #539268bf9960b98
] - doc: add--experimental-sqlite
note (Aviv Keller) #53907d7615004d8
] - doc: updateapi_assets
README for new files (Aviv Keller) #5367663cf715aa0
] - doc: add MattiasBuelens to collaborators (Mattias Buelens) #538955b8dd78112
] - doc: fix release date for 22.5.0 (Antoine du Hamel) #53889dd2c0f349a
] - doc: fix casing of GitHub handle for two collaborators (Antoine du Hamel) #53857b47c2308e1
] - doc: update release-post nodejs.org script (Rafael Gonzaga) #5376288539527d5
] - doc, test: tracing channel hasSubscribers getter (Thomas Hunter II) #5290844a08f75b0
] - doc,tools: enforce use ofnode:
prefix (Antoine du Hamel) #5395087bab76df2
] - doc,tty: add documentation for ReadStream and WriteStream (jakecastelli) #53567dcca9ba560
] - esm: refactorget_format
(Antoine du Hamel) #538725e03c17aae
] - fs: optimizefs.cpSync
js calls (Yagiz Nizipli) #53614e0054ee0a7
] - fs: ensure consistency for mkdtemp in both fs and fs/promises (YieldRay) #537768086337ea9
] - fs: remove unnecessary option argument validation (Jonas) #53861b377b93a3f
] - fs: correctly pass dirent to excludewithFileTypes
(RedYetiDev) #5382368e444d2d8
] - (SEMVER-MINOR) http: add diagnostics channelhttp.client.request.error
(Kohei Ueno) #54054de1fbc292f
] - (SEMVER-MINOR) inspector: add initial support for network inspection (Kohei Ueno) #53593744df0be24
] - lib: support dynamic trace events on debugWithTimer (Vinicius Lourenço) #53913546dab29c1
] - lib: optimize copyError with ObjectAssign in primordials (HEESEUNG) #53999494df9835a
] - lib: improve cluster/primary code (Ehsan Khakifirooz) #5375603f353293b
] - lib: improve error message when index not found on cjs (Vinicius Lourenço) #53859d8375d6236
] - lib: decorate async stack trace in source maps (Chengzhong Wu) #5386015a94e67b1
] - lib,src: drop --experimental-network-imports (Rafael Gonzaga) #53822a6eedc401d
] - meta: addsqlite
to js subsystems (Alex Yang) #5391121098856de
] - meta: move tsc member to emeritus (Michael Dawson) #54029048d421ad1
] - meta: add jake to collaborators (jakecastelli) #5400420a8c96c41
] - meta: remove license for hljs (Aviv Keller) #539702fd4ac4859
] - meta: make more bug-report information required (Aviv Keller) #53718b312ec0b0c
] - meta: reword linter messages (Aviv Keller) #53949d2526126a9
] - meta: store actions secrets in environment (Aviv Keller) #539301688f00dce
] - meta: move anonrig to tsc voting members (Yagiz Nizipli) #53888c20e8418de
] - module: fix strip-types interaction with detect-module (Marco Ippolito) #54164ab1f0b415f
] - module: fix extensionless typescript in cjs loader (Marco Ippolito) #5406292439fc160
] - (SEMVER-MINOR) module: add --experimental-strip-types (Marco Ippolito) #53725f755d31bec
] - node-api: add property keys benchmark (Chengzhong Wu) #540127382eefae5
] - node-api: rename nogc to basic (Gabriel Schulhof) #538302c4470625b
] - process: unify experimental warning messages (Aviv Keller) #5370498a7ad2e0d
] - src: expose LookupAndCompile with parameters (Shelley Vohr) #53886dd3c66be0a
] - src: simplify AESCipherTraits::AdditionalConfig (Tobias Nießen) #53890ee82f224ff
] - src: remove redundant RsaPointer (use RSAPointer) (James M Snell) #540032d77bd2929
] - src: fix -Wshadow warning (Shelley Vohr) #53885bd4a9ffe8c
] - src: start using ncrypto for CSPRNG calls (James M Snell) #539843fdcf7a47d
] - src: returnundefined
if no rows are returned in SQLite (Deokjin Kim) #53981ca6854443d
] - src: fix slice of slice of file-backed Blob (Josh Lee) #53972c457f9ed5a
] - src: cache invariant code motion (Rafael Gonzaga) #53879fd0da6c2cf
] - src: avoid strcmp in ImportJWKAsymmetricKey (Tobias Nießen) #53813fbf74bcf99
] - src: switch from ToLocalChecked to ToLocal in node_webstorage (James M Snell) #5395904bb6778e5
] - src: moveToNamespacedPath
call of webstorage (Yagiz Nizipli) #538759ffaf763e9
] - src: use Maybe<void> in SecureContext (Tobias Nießen) #53883a94c3ae06f
] - src: replace ToLocalChecked uses with ToLocal in node-file (James M Snell) #5386955461be05f
] - src: refactor webstorage implementation (Yagiz Nizipli) #53876c53cf449a6
] - src: fix env-file flag to ignore spaces before quotes (Mohit Malhotra) #53786bac3a485f6
] - src: fix potential segmentation fault in SQLite (Tobias Nießen) #53850df5083e5f9
] - src,lib: expose getCategoryEnabledBuffer to use on node.http (Vinicius Lourenço) #536028664b9ad60
] - src,test: disallow unsafe integer coercion in SQLite (Tobias Nießen) #5385115816bd0dd
] - (SEMVER-MINOR) stream: expose DuplexPair API (Austin Wright) #34111718f6bc78c
] - test: do not swallow uncaughtException errors in exit code tests (Meghan Denny) #54039c6656c9251
] - test: move shared module totest/common
(Rich Trott) #54042e471e32d46
] - test: skip sea tests with more accurate available disk space estimation (Chengzhong Wu) #5399661971ec929
] - test: remove unnecessary console log (KAYYY) #538121344bd2d6f
] - test: add comments and rename test for timer robustness (Rich Trott) #54008da3573409c
] - test: add test for one arg timers to increase coverage (Carlos Espa) #54007fc67abd97e
] - test: mark 'test/parallel/test-sqlite.js' as flaky (Colin Ihrig) #54031aa0ac3b57c
] - test: mark test-pipe-file-to-http as flaky (jakecastelli) #5375152bc8ec360
] - test: compare paths on Windows without considering case (Early Riser) #539937e8a609579
] - test: skip sea tests in large debug builds (Chengzhong Wu) #5391830a94ca0c4
] - test: skip --title check on IBM i (Abdirahim Musse) #539525cea7ed706
] - test: reduce flakiness oftest-assert-esm-cjs-message-verify
(Antoine du Hamel) #5396758cb0dd8a6
] - test: usePYTHON
executable from env inassertSnapshot
(Antoine du Hamel) #53938c247582591
] - test: deflake test-blob-file-backed (Luigi Pinca) #539203999021653
] - test_runner: switched to internal readline interface (Emil Tayeb) #540003fb97a90ee
] - test_runner: remove redundant bootstrap boolean (Colin Ihrig) #54013edd80e2bdc
] - test_runner: do not throw on mocked clearTimeout() (Aksinya Bykova) #54005893c864542
] - (SEMVER-MINOR) test_runner: fix support watch with run(), add globPatterns option (Matteo Collina) #538664887213f2e
] - test_runner: added colors to dot reporter (Giovanni) #53450c4848c53e6
] - test_runner: cleanup global event listeners after run (Eddie Abbondanzio) #53878876e7b3226
] - test_runner: refactor coverage to pass in config options (Colin Ihrig) #53931f45edb4b5e
] - test_runner: refactor and simplify internals (Colin Ihrig) #539216ad6e01bf3
] - (SEMVER-MINOR) test_runner: refactor snapshots to get file from context (Colin Ihrig) #53853698e44f8e7
] - (SEMVER-MINOR) test_runner: add context.filePath (Colin Ihrig) #5385397da7ca11b
] - test_runner: consolidate option parsing (Colin Ihrig) #5384943afcbf9dd
] - tools: fixSLACK_TITLE
in invalid commit workflow (Antoine du Hamel) #53912eed0963391
] - typings: apply lint (1ilsang) #54065e8ea49b256
] - typings: fix typo on quic onSessionDatagram (1ilsang) #54064