laminas / laminas-ci-matrix-action

GitHub Action for creating a CI job matrix.
BSD 3-Clause "New" or "Revised" License
24 stars 15 forks source link

Update node Docker tag to v22 #300

Open renovate[bot] opened 4 months ago

renovate[bot] commented 4 months ago

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
node final major 21.7.3-alpine -> 22.8.0-alpine age adoption passing confidence
node stage major 21.7.3-alpine -> 22.8.0-alpine age adoption passing confidence
@types/node (source) devDependencies major ^20.0.0 -> ^22.0.0 age adoption passing confidence

Release Notes

nodejs/node (node) ### [`v22.8.0`](https://redirect.github.com/nodejs/node/releases/tag/v22.8.0): 2024-09-03, Version 22.8.0 (Current), @​RafaelGSS [Compare Source](https://redirect.github.com/nodejs/node/compare/v22.7.0...v22.8.0) ##### New JS API for compile cache This release adds a new API `module.enableCompileCache()` that can be used to enable on-disk code caching of all modules loaded after this API is called. Previously this could only be enabled by the `NODE_COMPILE_CACHE` environment variable, so it could only set by end-users. This API allows tooling and library authors to enable caching of their own code. This is a built-in alternative to the [v8-compile-cache](https://www.npmjs.com/package/v8-compile-cache)/[v8-compile-cache-lib ](https://www.npmjs.com/package/v8-compile-cache-lib) packages, but have [better performance](https://redirect.github.com/nodejs/node/issues/47472#issuecomment-1970331362) and supports ESM. Thanks to Joyee Cheung for working on this. ##### New option for vm.createContext() to create a context with a freezable globalThis Node.js implements a flavor of `vm.createContext()` and friends that creates a context without contextifying its global object when vm.constants.DONT_CONTEXTIFY is used. This is suitable when users want to freeze the context (impossible when the global is contextified i.e. has interceptors installed) or speed up the global access if they don't need the interceptor behavior. Thanks to Joyee Cheung for working on this. ##### Support for coverage thresholds Node.js now supports requiring code coverage to meet a specific threshold before the process exits successfully. To use this feature, you need to enable the `--experimental-test-coverage` flag. You can set thresholds for the following types of coverage: - **Branch coverage**: Use `--test-coverage-branches=` - **Function coverage**: Use `--test-coverage-functions=` - **Line coverage**: Use `--test-coverage-lines=` `` should be an integer between 0 and 100. If an invalid value is provided, a `TypeError` will be thrown. If the code coverage fails to meet the specified thresholds for any category, the process will exit with code `1`. For instance, to enforce a minimum of 80% line coverage and 60% branch coverage, you can run: ```console $ node --experimental-test-coverage --test-coverage-lines=80 --test-coverage-branches=60 example.js ``` Thanks Aviv Keller for working on this. ##### Other Notable Changes - \[[`1f2cc2fa47`](https://redirect.github.com/nodejs/node/commit/1f2cc2fa47)] - **(SEMVER-MINOR)** **src,lib**: add performance.uvMetricsInfo (Rafael Gonzaga) [#​54413](https://redirect.github.com/nodejs/node/pull/54413) - \[[`1e01bdc0d0`](https://redirect.github.com/nodejs/node/commit/1e01bdc0d0)] - **(SEMVER-MINOR)** **net**: exclude ipv6 loopback addresses from server.listen (Giovanni Bucci) [#​54264](https://redirect.github.com/nodejs/node/pull/54264) - \[[`97fa075c2e`](https://redirect.github.com/nodejs/node/commit/97fa075c2e)] - **(SEMVER-MINOR)** **test_runner**: support running tests in process (Colin Ihrig) [#​53927](https://redirect.github.com/nodejs/node/pull/53927) - \[[`858b583c88`](https://redirect.github.com/nodejs/node/commit/858b583c88)] - **(SEMVER-MINOR)** **test_runner**: defer inheriting hooks until run() (Colin Ihrig) [#​53927](https://redirect.github.com/nodejs/node/pull/53927) ##### Commits - \[[`94985df9d6`](https://redirect.github.com/nodejs/node/commit/94985df9d6)] - **benchmark**: fix benchmark for file path and URL conversion (Early Riser) [#​54190](https://redirect.github.com/nodejs/node/pull/54190) - \[[`ac178b094b`](https://redirect.github.com/nodejs/node/commit/ac178b094b)] - **buffer**: truncate instead of throw when writing beyond buffer (Robert Nagy) [#​54524](https://redirect.github.com/nodejs/node/pull/54524) - \[[`afd8c1eb4f`](https://redirect.github.com/nodejs/node/commit/afd8c1eb4f)] - **buffer**: allow invalid encoding in from (Robert Nagy) [#​54533](https://redirect.github.com/nodejs/node/pull/54533) - \[[`6f0cf35cd3`](https://redirect.github.com/nodejs/node/commit/6f0cf35cd3)] - **build**: reclaim disk space on macOS GHA runner (jakecastelli) [#​54658](https://redirect.github.com/nodejs/node/pull/54658) - \[[`467ac3aec4`](https://redirect.github.com/nodejs/node/commit/467ac3aec4)] - **build**: don't clean obj.target directory if it doesn't exist (Joyee Cheung) [#​54337](https://redirect.github.com/nodejs/node/pull/54337) - \[[`71fdf961df`](https://redirect.github.com/nodejs/node/commit/71fdf961df)] - **build**: update required python version to 3.8 (Aviv Keller) [#​54358](https://redirect.github.com/nodejs/node/pull/54358) - \[[`73604cf1c5`](https://redirect.github.com/nodejs/node/commit/73604cf1c5)] - **deps**: update nghttp2 to 1.63.0 (Node.js GitHub Bot) [#​54589](https://redirect.github.com/nodejs/node/pull/54589) - \[[`b00c087285`](https://redirect.github.com/nodejs/node/commit/b00c087285)] - **deps**: V8: cherry-pick [`e74d0f4`](https://redirect.github.com/nodejs/node/commit/e74d0f437fcd) (Joyee Cheung) [#​54279](https://redirect.github.com/nodejs/node/pull/54279) - \[[`33a6b3c7a9`](https://redirect.github.com/nodejs/node/commit/33a6b3c7a9)] - **deps**: backport ICU-22787 to fix ClangCL on Windows (Stefan Stojanovic) [#​54502](https://redirect.github.com/nodejs/node/pull/54502) - \[[`fe56949cbb`](https://redirect.github.com/nodejs/node/commit/fe56949cbb)] - **deps**: update c-ares to v1.33.1 (Node.js GitHub Bot) [#​54549](https://redirect.github.com/nodejs/node/pull/54549) - \[[`290f6ce619`](https://redirect.github.com/nodejs/node/commit/290f6ce619)] - **deps**: update amaro to 0.1.8 (Node.js GitHub Bot) [#​54520](https://redirect.github.com/nodejs/node/pull/54520) - \[[`b5843568b4`](https://redirect.github.com/nodejs/node/commit/b5843568b4)] - **deps**: update amaro to 0.1.7 (Node.js GitHub Bot) [#​54473](https://redirect.github.com/nodejs/node/pull/54473) - \[[`9c709209b4`](https://redirect.github.com/nodejs/node/commit/9c709209b4)] - **deps**: update undici to 6.19.8 (Node.js GitHub Bot) [#​54456](https://redirect.github.com/nodejs/node/pull/54456) - \[[`a5ce24181b`](https://redirect.github.com/nodejs/node/commit/a5ce24181b)] - **deps**: sqlite: fix Windows compilation (Colin Ihrig) [#​54433](https://redirect.github.com/nodejs/node/pull/54433) - \[[`3caf29ea88`](https://redirect.github.com/nodejs/node/commit/3caf29ea88)] - **deps**: update sqlite to 3.46.1 (Node.js GitHub Bot) [#​54433](https://redirect.github.com/nodejs/node/pull/54433) - \[[`68758d4b08`](https://redirect.github.com/nodejs/node/commit/68758d4b08)] - **doc**: add support me link for anonrig (Yagiz Nizipli) [#​54611](https://redirect.github.com/nodejs/node/pull/54611) - \[[`f5c5529266`](https://redirect.github.com/nodejs/node/commit/f5c5529266)] - **doc**: add alert on REPL from TCP socket (Rafael Gonzaga) [#​54594](https://redirect.github.com/nodejs/node/pull/54594) - \[[`bf824483cd`](https://redirect.github.com/nodejs/node/commit/bf824483cd)] - **doc**: fix typo in styleText description (Rafael Gonzaga) [#​54616](https://redirect.github.com/nodejs/node/pull/54616) - \[[`825d933fd4`](https://redirect.github.com/nodejs/node/commit/825d933fd4)] - **doc**: add getHeapStatistics() property descriptions (Benji Marinacci) [#​54584](https://redirect.github.com/nodejs/node/pull/54584) - \[[`80e5150160`](https://redirect.github.com/nodejs/node/commit/80e5150160)] - **doc**: fix module compile cache description (沈鸿飞) [#​54625](https://redirect.github.com/nodejs/node/pull/54625) - \[[`7fd033fe56`](https://redirect.github.com/nodejs/node/commit/7fd033fe56)] - **doc**: run license-builder (github-actions\[bot]) [#​54562](https://redirect.github.com/nodejs/node/pull/54562) - \[[`c499913732`](https://redirect.github.com/nodejs/node/commit/c499913732)] - **doc**: fix information about including coverage files (Aviv Keller) [#​54527](https://redirect.github.com/nodejs/node/pull/54527) - \[[`c3dc83befc`](https://redirect.github.com/nodejs/node/commit/c3dc83befc)] - **doc**: support collaborators - talk amplification (Michael Dawson) [#​54508](https://redirect.github.com/nodejs/node/pull/54508) - \[[`fc57beaad3`](https://redirect.github.com/nodejs/node/commit/fc57beaad3)] - **doc**: add note about shasum generation failure (Marco Ippolito) [#​54487](https://redirect.github.com/nodejs/node/pull/54487) - \[[`1800a58f49`](https://redirect.github.com/nodejs/node/commit/1800a58f49)] - **doc**: update websocket flag description to reflect stable API status (Yelim Koo) [#​54482](https://redirect.github.com/nodejs/node/pull/54482) - \[[`61affd77a7`](https://redirect.github.com/nodejs/node/commit/61affd77a7)] - **doc**: fix capitalization in module.md (shallow-beach) [#​54488](https://redirect.github.com/nodejs/node/pull/54488) - \[[`25419915c7`](https://redirect.github.com/nodejs/node/commit/25419915c7)] - **doc**: add esm examples to node:https (Alfredo González) [#​54399](https://redirect.github.com/nodejs/node/pull/54399) - \[[`83b5efeb54`](https://redirect.github.com/nodejs/node/commit/83b5efeb54)] - **doc**: reserve ABI 130 for Electron 33 (Calvin) [#​54383](https://redirect.github.com/nodejs/node/pull/54383) - \[[`6ccbd32ae8`](https://redirect.github.com/nodejs/node/commit/6ccbd32ae8)] - **doc, meta**: add missing `,` to `BUILDING.md` (Aviv Keller) [#​54409](https://redirect.github.com/nodejs/node/pull/54409) - \[[`fc08a9b0cd`](https://redirect.github.com/nodejs/node/commit/fc08a9b0cd)] - **fs**: refactor handleTimestampsAndMode to remove redundant call (HEESEUNG) [#​54369](https://redirect.github.com/nodejs/node/pull/54369) - \[[`4a664b5fcb`](https://redirect.github.com/nodejs/node/commit/4a664b5fcb)] - **lib**: respect terminal capabilities on styleText (Rafael Gonzaga) [#​54389](https://redirect.github.com/nodejs/node/pull/54389) - \[[`a9ce2b6a28`](https://redirect.github.com/nodejs/node/commit/a9ce2b6a28)] - **lib**: fix emit warning for debuglog.time when disabled (Vinicius Lourenço) [#​54275](https://redirect.github.com/nodejs/node/pull/54275) - \[[`b5a23c9783`](https://redirect.github.com/nodejs/node/commit/b5a23c9783)] - **meta**: remind users to use a supported version in bug reports (Aviv Keller) [#​54481](https://redirect.github.com/nodejs/node/pull/54481) - \[[`0d7171d8e9`](https://redirect.github.com/nodejs/node/commit/0d7171d8e9)] - **meta**: add more labels to dep-updaters (Aviv Keller) [#​54454](https://redirect.github.com/nodejs/node/pull/54454) - \[[`c4996c189f`](https://redirect.github.com/nodejs/node/commit/c4996c189f)] - **meta**: run coverage-windows when `vcbuild.bat` updated (Aviv Keller) [#​54412](https://redirect.github.com/nodejs/node/pull/54412) - \[[`3cf645768e`](https://redirect.github.com/nodejs/node/commit/3cf645768e)] - **module**: use amaro default transform values (Marco Ippolito) [#​54517](https://redirect.github.com/nodejs/node/pull/54517) - \[[`336496b90e`](https://redirect.github.com/nodejs/node/commit/336496b90e)] - **module**: add sourceURL magic comment hinting generated source (Chengzhong Wu) [#​54402](https://redirect.github.com/nodejs/node/pull/54402) - \[[`04f83b50ad`](https://redirect.github.com/nodejs/node/commit/04f83b50ad)] - ***Revert*** "**net**: validate host name for server listen" (jakecastelli) [#​54554](https://redirect.github.com/nodejs/node/pull/54554) - \[[`1e01bdc0d0`](https://redirect.github.com/nodejs/node/commit/1e01bdc0d0)] - **(SEMVER-MINOR)** **net**: exclude ipv6 loopback addresses from server.listen (Giovanni Bucci) [#​54264](https://redirect.github.com/nodejs/node/pull/54264) - \[[`3cd10a3f40`](https://redirect.github.com/nodejs/node/commit/3cd10a3f40)] - **node-api**: remove RefBase and CallbackWrapper (Vladimir Morozov) [#​53590](https://redirect.github.com/nodejs/node/pull/53590) - \[[`72c554abab`](https://redirect.github.com/nodejs/node/commit/72c554abab)] - **sqlite**: return results with null prototype (Michaël Zasso) [#​54350](https://redirect.github.com/nodejs/node/pull/54350) - \[[`e071651bb2`](https://redirect.github.com/nodejs/node/commit/e071651bb2)] - **src**: disable fast methods for `buffer.write` (Michaël Zasso) [#​54565](https://redirect.github.com/nodejs/node/pull/54565) - \[[`f8cbbc685a`](https://redirect.github.com/nodejs/node/commit/f8cbbc685a)] - **src**: use v8::Isolate::GetDefaultLocale() to compute navigator.language (Joyee Cheung) [#​54279](https://redirect.github.com/nodejs/node/pull/54279) - \[[`4baf4637eb`](https://redirect.github.com/nodejs/node/commit/4baf4637eb)] - **(SEMVER-MINOR)** **src**: add JS APIs for compile cache and NODE_DISABLE_COMPILE_CACHE (Joyee Cheung) [#​54501](https://redirect.github.com/nodejs/node/pull/54501) - \[[`101e299656`](https://redirect.github.com/nodejs/node/commit/101e299656)] - **src**: move more crypto_dh.cc code to ncrypto (James M Snell) [#​54459](https://redirect.github.com/nodejs/node/pull/54459) - \[[`e6e1f4e8bd`](https://redirect.github.com/nodejs/node/commit/e6e1f4e8bd)] - **src**: remove redundant AESCipherMode (Tobias Nießen) [#​54438](https://redirect.github.com/nodejs/node/pull/54438) - \[[`1ff3f63f5e`](https://redirect.github.com/nodejs/node/commit/1ff3f63f5e)] - **src**: handle errors correctly in `permission.cc` (Michaël Zasso) [#​54541](https://redirect.github.com/nodejs/node/pull/54541) - \[[`4938188682`](https://redirect.github.com/nodejs/node/commit/4938188682)] - **src**: return `v8::Object` from error constructors (Michaël Zasso) [#​54541](https://redirect.github.com/nodejs/node/pull/54541) - \[[`4578e9485b`](https://redirect.github.com/nodejs/node/commit/4578e9485b)] - **src**: use better return types in KVStore (Michaël Zasso) [#​54539](https://redirect.github.com/nodejs/node/pull/54539) - \[[`7d9e994791`](https://redirect.github.com/nodejs/node/commit/7d9e994791)] - **src**: change SetEncodedValue to return Maybe\ (Tobias Nießen) [#​54443](https://redirect.github.com/nodejs/node/pull/54443) - \[[`eef303028f`](https://redirect.github.com/nodejs/node/commit/eef303028f)] - **src**: remove cached data tag from snapshot metadata (Joyee Cheung) [#​54122](https://redirect.github.com/nodejs/node/pull/54122) - \[[`3a74c400d5`](https://redirect.github.com/nodejs/node/commit/3a74c400d5)] - **src**: improve `buffer.transcode` performance (Yagiz Nizipli) [#​54153](https://redirect.github.com/nodejs/node/pull/54153) - \[[`909c5320fd`](https://redirect.github.com/nodejs/node/commit/909c5320fd)] - **src**: move more crypto code to ncrypto (James M Snell) [#​54320](https://redirect.github.com/nodejs/node/pull/54320) - \[[`9ba75faf5f`](https://redirect.github.com/nodejs/node/commit/9ba75faf5f)] - **(SEMVER-MINOR)** **src,lib**: add performance.uvMetricsInfo (Rafael Gonzaga) [#​54413](https://redirect.github.com/nodejs/node/pull/54413) - \[[`fffc300c6d`](https://redirect.github.com/nodejs/node/commit/fffc300c6d)] - **stream**: change stream to use index instead of `for...of` (Wiyeong Seo) [#​54474](https://redirect.github.com/nodejs/node/pull/54474) - \[[`a4a6ef8d29`](https://redirect.github.com/nodejs/node/commit/a4a6ef8d29)] - **test**: fix test-tls-client-auth test for OpenSSL32 (Michael Dawson) [#​54610](https://redirect.github.com/nodejs/node/pull/54610) - \[[`76345a5d7c`](https://redirect.github.com/nodejs/node/commit/76345a5d7c)] - **test**: update TLS test for OpenSSL 3.2 (Richard Lau) [#​54612](https://redirect.github.com/nodejs/node/pull/54612) - \[[`522d5a359d`](https://redirect.github.com/nodejs/node/commit/522d5a359d)] - **test**: run V8 Fast API tests in release mode too (Michaël Zasso) [#​54570](https://redirect.github.com/nodejs/node/pull/54570) - \[[`edbecf5209`](https://redirect.github.com/nodejs/node/commit/edbecf5209)] - **test**: increase key size for ca2-cert.pem (Michael Dawson) [#​54599](https://redirect.github.com/nodejs/node/pull/54599) - \[[`bc976cfc93`](https://redirect.github.com/nodejs/node/commit/bc976cfc93)] - **test**: update test-abortsignal-cloneable to use node:test (James M Snell) [#​54581](https://redirect.github.com/nodejs/node/pull/54581) - \[[`9f1ce732a8`](https://redirect.github.com/nodejs/node/commit/9f1ce732a8)] - **test**: update test-assert-typedarray-deepequal to use node:test (James M Snell) [#​54585](https://redirect.github.com/nodejs/node/pull/54585) - \[[`c74f2aeb92`](https://redirect.github.com/nodejs/node/commit/c74f2aeb92)] - **test**: update test-assert to use node:test (James M Snell) [#​54585](https://redirect.github.com/nodejs/node/pull/54585) - \[[`a0be95e4cc`](https://redirect.github.com/nodejs/node/commit/a0be95e4cc)] - **test**: merge ongc and gcutil into gc.js (tannal) [#​54355](https://redirect.github.com/nodejs/node/pull/54355) - \[[`c10aff665e`](https://redirect.github.com/nodejs/node/commit/c10aff665e)] - **test**: move a couple of tests over to using node:test (James M Snell) [#​54582](https://redirect.github.com/nodejs/node/pull/54582) - \[[`dbbc790949`](https://redirect.github.com/nodejs/node/commit/dbbc790949)] - **test**: update test-aborted-util to use node:test (James M Snell) [#​54578](https://redirect.github.com/nodejs/node/pull/54578) - \[[`64442fce6b`](https://redirect.github.com/nodejs/node/commit/64442fce6b)] - **test**: refactor test-abortcontroller to use node:test (James M Snell) [#​54574](https://redirect.github.com/nodejs/node/pull/54574) - \[[`72345dee1c`](https://redirect.github.com/nodejs/node/commit/72345dee1c)] - **test**: fix embedding test for Windows (Vladimir Morozov) [#​53659](https://redirect.github.com/nodejs/node/pull/53659) - \[[`846e2b2896`](https://redirect.github.com/nodejs/node/commit/846e2b2896)] - **test**: refactor test_runner tests to change default reporter (Colin Ihrig) [#​54547](https://redirect.github.com/nodejs/node/pull/54547) - \[[`b5eb24c86a`](https://redirect.github.com/nodejs/node/commit/b5eb24c86a)] - **test**: force spec reporter in test-runner-watch-mode.mjs (Colin Ihrig) [#​54538](https://redirect.github.com/nodejs/node/pull/54538) - \[[`66ae9f4c0a`](https://redirect.github.com/nodejs/node/commit/66ae9f4c0a)] - **test**: use valid hostnames (Luigi Pinca) [#​54556](https://redirect.github.com/nodejs/node/pull/54556) - \[[`02d664b75f`](https://redirect.github.com/nodejs/node/commit/02d664b75f)] - **test**: fix improper path to URL conversion (Antoine du Hamel) [#​54509](https://redirect.github.com/nodejs/node/pull/54509) - \[[`8a4f8a9eff`](https://redirect.github.com/nodejs/node/commit/8a4f8a9eff)] - **test**: add tests for runner coverage with different stdout column widths (Pietro Marchini) [#​54494](https://redirect.github.com/nodejs/node/pull/54494) - \[[`b0ed8dbb2f`](https://redirect.github.com/nodejs/node/commit/b0ed8dbb2f)] - **test**: prevent V8 from writing into the system's tmpdir (Michaël Zasso) [#​54395](https://redirect.github.com/nodejs/node/pull/54395) - \[[`5ee234a5a6`](https://redirect.github.com/nodejs/node/commit/5ee234a5a6)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#​54593](https://redirect.github.com/nodejs/node/pull/54593) - \[[`a4bebf8559`](https://redirect.github.com/nodejs/node/commit/a4bebf8559)] - **test_runner**: ensure test watcher picks up new test files (Pietro Marchini) [#​54225](https://redirect.github.com/nodejs/node/pull/54225) - \[[`d4310fe9c1`](https://redirect.github.com/nodejs/node/commit/d4310fe9c1)] - **(SEMVER-MINOR)** **test_runner**: add support for coverage thresholds (Aviv Keller) [#​54429](https://redirect.github.com/nodejs/node/pull/54429) - \[[`0cf78aa24b`](https://redirect.github.com/nodejs/node/commit/0cf78aa24b)] - **test_runner**: refactor `mock_loader` (Antoine du Hamel) [#​54223](https://redirect.github.com/nodejs/node/pull/54223) - \[[`97fa075c2e`](https://redirect.github.com/nodejs/node/commit/97fa075c2e)] - **(SEMVER-MINOR)** **test_runner**: support running tests in process (Colin Ihrig) [#​53927](https://redirect.github.com/nodejs/node/pull/53927) - \[[`858b583c88`](https://redirect.github.com/nodejs/node/commit/858b583c88)] - **(SEMVER-MINOR)** **test_runner**: defer inheriting hooks until run() (Colin Ihrig) [#​53927](https://redirect.github.com/nodejs/node/pull/53927) - \[[`45b0250692`](https://redirect.github.com/nodejs/node/commit/45b0250692)] - **test_runner**: account for newline in source maps (Colin Ihrig) [#​54444](https://redirect.github.com/nodejs/node/pull/54444) - \[[`1c29e74d30`](https://redirect.github.com/nodejs/node/commit/1c29e74d30)] - **test_runner**: make `mock.module`'s `specifier` consistent with `import()` (Antoine du Hamel) [#​54416](https://redirect.github.com/nodejs/node/pull/54416) - \[[`cbe30a02a3`](https://redirect.github.com/nodejs/node/commit/cbe30a02a3)] - **test_runner**: finish build phase before running tests (Colin Ihrig) [#​54423](https://redirect.github.com/nodejs/node/pull/54423) - \[[`8a4b26f00c`](https://redirect.github.com/nodejs/node/commit/8a4b26f00c)] - **timers**: fix validation (Paolo Insogna) [#​54404](https://redirect.github.com/nodejs/node/pull/54404) - \[[`38798140c4`](https://redirect.github.com/nodejs/node/commit/38798140c4)] - **tools**: remove unused python files (Aviv Keller) [#​53928](https://redirect.github.com/nodejs/node/pull/53928) - \[[`da6c61def8`](https://redirect.github.com/nodejs/node/commit/da6c61def8)] - **tools**: add swc license (Marco Ippolito) [#​54462](https://redirect.github.com/nodejs/node/pull/54462) - \[[`16d4c437e1`](https://redirect.github.com/nodejs/node/commit/16d4c437e1)] - **typings**: provide internal types for wasi bindings (Andrew Moon) [#​54119](https://redirect.github.com/nodejs/node/pull/54119) - \[[`fe5666f006`](https://redirect.github.com/nodejs/node/commit/fe5666f006)] - **vm**: return all own names and symbols in property enumerator interceptor (Chengzhong Wu) [#​54522](https://redirect.github.com/nodejs/node/pull/54522) - \[[`db80eac496`](https://redirect.github.com/nodejs/node/commit/db80eac496)] - **(SEMVER-MINOR)** **vm**: introduce vanilla contexts via vm.constants.DONT_CONTEXTIFY (Joyee Cheung) [#​54394](https://redirect.github.com/nodejs/node/pull/54394) - \[[`8ffdd1e2b2`](https://redirect.github.com/nodejs/node/commit/8ffdd1e2b2)] - **zlib**: simplify validators (Yagiz Nizipli) [#​54442](https://redirect.github.com/nodejs/node/pull/54442) ### [`v22.7.0`](https://redirect.github.com/nodejs/node/releases/tag/v22.7.0): 2024-08-22, Version 22.7.0 (Current), @​RafaelGSS [Compare Source](https://redirect.github.com/nodejs/node/compare/v22.6.0...v22.7.0) ##### Experimental transform types support With the new flag `--experimental-transform-types` it is possible to enable the transformation of TypeScript-only syntax into JavaScript code. This feature allows Node.js to support TypeScript syntax such as `Enum` and `namespace`. Thanks to Marco Ippolito for making this work on [#​54283](https://redirect.github.com/nodejs/node/pull/54283). ##### Module syntax detection is now enabled by default. Module syntax detection (the `--experimental-detect-module` flag) is now enabled by default. Use `--no-experimental-detect-module` to disable it if needed. Syntax detection attempts to run ambiguous files as CommonJS, and if the module fails to parse as CommonJS due to ES module syntax, Node.js tries again and runs the file as an ES module. Ambiguous files are those with a `.js` or no extension, where the nearest parent `package.json` has no `"type"` field (either `"type": "module"` or `"type": "commonjs"`). Syntax detection should have no performance impact on CommonJS modules, but it incurs a slight performance penalty for ES modules; add `"type": "module"` to the nearest parent `package.json` file to eliminate the performance cost. A use case unlocked by this feature is the ability to use ES module syntax in extensionless scripts with no nearby `package.json`. Thanks to Geoffrey Booth for making this work on [#​53619](https://redirect.github.com/nodejs/node/pull/53619). ##### Performance Improvements to Buffer Performance of Node.js Buffers have been optimized through multiple PR's with significant improvements to the `Buffer.copy` and `Buffer.write` methods. These are used throughout the codebase and should give a nice boost across the board. Thanks to Robert Nagy for making this work on [#​54311](https://redirect.github.com/nodejs/node/pull/54311), [#​54324](https://redirect.github.com/nodejs/node/pull/54324), and [#​54087](https://redirect.github.com/nodejs/node/pull/54087). ##### Other Notable Changes - \[[`911de7dd6d`](https://redirect.github.com/nodejs/node/commit/911de7dd6d)] - **(SEMVER-MINOR)** **inspector**: support `Network.loadingFailed` event (Kohei Ueno) [#​54246](https://redirect.github.com/nodejs/node/pull/54246) - \[[`9ee4b16bd8`](https://redirect.github.com/nodejs/node/commit/9ee4b16bd8)] - **(SEMVER-MINOR)** **lib**: rewrite AsyncLocalStorage without async_hooks (Stephen Belanger) [#​48528](https://redirect.github.com/nodejs/node/pull/48528) ##### Commits - \[[`c6544ff5a6`](https://redirect.github.com/nodejs/node/commit/c6544ff5a6)] - **benchmark**: use assert.ok searchparams (Rafael Gonzaga) [#​54334](https://redirect.github.com/nodejs/node/pull/54334) - \[[`51b8576897`](https://redirect.github.com/nodejs/node/commit/51b8576897)] - **benchmark**: add stream.compose benchmark (jakecastelli) [#​54308](https://redirect.github.com/nodejs/node/pull/54308) - \[[`c166036515`](https://redirect.github.com/nodejs/node/commit/c166036515)] - **benchmark**: rename count to n (Rafael Gonzaga) [#​54271](https://redirect.github.com/nodejs/node/pull/54271) - \[[`1be0ee76ef`](https://redirect.github.com/nodejs/node/commit/1be0ee76ef)] - **benchmark**: change assert() to assert.ok() (Rafael Gonzaga) [#​54254](https://redirect.github.com/nodejs/node/pull/54254) - \[[`4dd229f546`](https://redirect.github.com/nodejs/node/commit/4dd229f546)] - **benchmark**: support --help in CLI (Aviv Keller) [#​53358](https://redirect.github.com/nodejs/node/pull/53358) - \[[`a5a320cd5b`](https://redirect.github.com/nodejs/node/commit/a5a320cd5b)] - **benchmark**: remove force option as force defaults to true (Yelim Koo) [#​54203](https://redirect.github.com/nodejs/node/pull/54203) - \[[`db0a80a0eb`](https://redirect.github.com/nodejs/node/commit/db0a80a0eb)] - **benchmark**: use assert.ok instead of assert (Rafael Gonzaga) [#​54176](https://redirect.github.com/nodejs/node/pull/54176) - \[[`8ba53ae7b7`](https://redirect.github.com/nodejs/node/commit/8ba53ae7b7)] - **buffer**: properly apply dst offset and src length on fast path (Robert Nagy) [#​54391](https://redirect.github.com/nodejs/node/pull/54391) - \[[`a5a60e6823`](https://redirect.github.com/nodejs/node/commit/a5a60e6823)] - **buffer**: use fast API for writing one-byte strings (Robert Nagy) [#​54311](https://redirect.github.com/nodejs/node/pull/54311) - \[[`7b641bc2bd`](https://redirect.github.com/nodejs/node/commit/7b641bc2bd)] - **buffer**: optimize byteLength for short strings (Robert Nagy) [#​54345](https://redirect.github.com/nodejs/node/pull/54345) - \[[`28ca678f81`](https://redirect.github.com/nodejs/node/commit/28ca678f81)] - **buffer**: optimize byteLength for common encodings (Robert Nagy) [#​54342](https://redirect.github.com/nodejs/node/pull/54342) - \[[`12785559be`](https://redirect.github.com/nodejs/node/commit/12785559be)] - **buffer**: optimize createFromString (Robert Nagy) [#​54324](https://redirect.github.com/nodejs/node/pull/54324) - \[[`f7f7b0c498`](https://redirect.github.com/nodejs/node/commit/f7f7b0c498)] - **buffer**: optimize for common encodings (Robert Nagy) [#​54319](https://redirect.github.com/nodejs/node/pull/54319) - \[[`37631f826b`](https://redirect.github.com/nodejs/node/commit/37631f826b)] - **buffer**: add JSDoc to blob bytes method (Roberto Simonini) [#​54117](https://redirect.github.com/nodejs/node/pull/54117) - \[[`ab6fae9dbf`](https://redirect.github.com/nodejs/node/commit/ab6fae9dbf)] - **buffer**: faster type check (Robert Nagy) [#​54088](https://redirect.github.com/nodejs/node/pull/54088) - \[[`9f8f26eb2f`](https://redirect.github.com/nodejs/node/commit/9f8f26eb2f)] - **buffer**: use native copy impl (Robert Nagy) [#​54087](https://redirect.github.com/nodejs/node/pull/54087) - \[[`019ebf03c1`](https://redirect.github.com/nodejs/node/commit/019ebf03c1)] - **buffer**: use faster integer argument check (Robert Nagy) [#​54089](https://redirect.github.com/nodejs/node/pull/54089) - \[[`c640a2f24c`](https://redirect.github.com/nodejs/node/commit/c640a2f24c)] - **build**: always disable strict aliasing (Michaël Zasso) [#​54339](https://redirect.github.com/nodejs/node/pull/54339) - \[[`6aa1d9e855`](https://redirect.github.com/nodejs/node/commit/6aa1d9e855)] - **build**: update `ruff` to `0.5.2` (Aviv Keller) [#​53909](https://redirect.github.com/nodejs/node/pull/53909) - \[[`350e699443`](https://redirect.github.com/nodejs/node/commit/350e699443)] - **build**: support `lint-js-fix` in `vcbuild.bat` (Aviv Keller) [#​53695](https://redirect.github.com/nodejs/node/pull/53695) - \[[`98fed763f7`](https://redirect.github.com/nodejs/node/commit/98fed763f7)] - **build**: add `--without-amaro` build flag (Antoine du Hamel) [#​54136](https://redirect.github.com/nodejs/node/pull/54136) - \[[`1ca598c5ce`](https://redirect.github.com/nodejs/node/commit/1ca598c5ce)] - **cli**: allow `--test-[name/skip]-pattern` in `NODE_OPTIONS` (Aviv Keller) [#​53001](https://redirect.github.com/nodejs/node/pull/53001) - \[[`37960a67ae`](https://redirect.github.com/nodejs/node/commit/37960a67ae)] - **console**: use validateOneOf for colorMode validation (HEESEUNG) [#​54245](https://redirect.github.com/nodejs/node/pull/54245) - \[[`d52f515bab`](https://redirect.github.com/nodejs/node/commit/d52f515bab)] - **crypto**: include NODE_EXTRA_CA_CERTS in all secure contexts by default (Eric Bickle) [#​44529](https://redirect.github.com/nodejs/node/pull/44529) - \[[`b6a3e61353`](https://redirect.github.com/nodejs/node/commit/b6a3e61353)] - **deps**: update amaro to 0.1.6 (Node.js GitHub Bot) [#​54374](https://redirect.github.com/nodejs/node/pull/54374) - \[[`0d716ad3f3`](https://redirect.github.com/nodejs/node/commit/0d716ad3f3)] - **deps**: update simdutf to 5.3.4 (Node.js GitHub Bot) [#​54312](https://redirect.github.com/nodejs/node/pull/54312) - \[[`18bfea5f33`](https://redirect.github.com/nodejs/node/commit/18bfea5f33)] - **deps**: update zlib to 1.3.0.1-motley-71660e1 (Node.js GitHub Bot) [#​53464](https://redirect.github.com/nodejs/node/pull/53464) - \[[`d0c23f332f`](https://redirect.github.com/nodejs/node/commit/d0c23f332f)] - **deps**: update zlib to 1.3.0.1-motley-c2469fd (Node.js GitHub Bot) [#​53464](https://redirect.github.com/nodejs/node/pull/53464) - \[[`e7db63972c`](https://redirect.github.com/nodejs/node/commit/e7db63972c)] - **deps**: update zlib to 1.3.0.1-motley-68e57e6 (Node.js GitHub Bot) [#​53464](https://redirect.github.com/nodejs/node/pull/53464) - \[[`713ae95555`](https://redirect.github.com/nodejs/node/commit/713ae95555)] - **deps**: update zlib to 1.3.0.1-motley-8b7eff8 (Node.js GitHub Bot) [#​53464](https://redirect.github.com/nodejs/node/pull/53464) - \[[`758c9df36e`](https://redirect.github.com/nodejs/node/commit/758c9df36e)] - **deps**: update zlib to 1.3.0.1-motley-e432200 (Node.js GitHub Bot) [#​53464](https://redirect.github.com/nodejs/node/pull/53464) - \[[`fe7e6c9563`](https://redirect.github.com/nodejs/node/commit/fe7e6c9563)] - **deps**: update zlib to 1.3.0.1-motley-887bb57 (Node.js GitHub Bot) [#​53464](https://redirect.github.com/nodejs/node/pull/53464) - \[[`35722b7bca`](https://redirect.github.com/nodejs/node/commit/35722b7bca)] - **deps**: update simdjson to 3.10.0 (Node.js GitHub Bot) [#​54197](https://redirect.github.com/nodejs/node/pull/54197) - \[[`a2a41557db`](https://redirect.github.com/nodejs/node/commit/a2a41557db)] - **deps**: fix GN build warning in ncrypto (Cheng) [#​54222](https://redirect.github.com/nodejs/node/pull/54222) - \[[`869da204d7`](https://redirect.github.com/nodejs/node/commit/869da204d7)] - **deps**: update c-ares to v1.33.0 (Node.js GitHub Bot) [#​54198](https://redirect.github.com/nodejs/node/pull/54198) - \[[`e0d503a715`](https://redirect.github.com/nodejs/node/commit/e0d503a715)] - **deps**: update nbytes to 0.1.1 (Node.js GitHub Bot) [#​54277](https://redirect.github.com/nodejs/node/pull/54277) - \[[`b0c768dae1`](https://redirect.github.com/nodejs/node/commit/b0c768dae1)] - **deps**: update undici to 6.19.7 (Node.js GitHub Bot) [#​54286](https://redirect.github.com/nodejs/node/pull/54286) - \[[`ef9a950cb9`](https://redirect.github.com/nodejs/node/commit/ef9a950cb9)] - **deps**: update acorn to 8.12.1 (Node.js GitHub Bot) [#​53465](https://redirect.github.com/nodejs/node/pull/53465) - \[[`1597a1139a`](https://redirect.github.com/nodejs/node/commit/1597a1139a)] - **deps**: update undici to 6.19.5 (Node.js GitHub Bot) [#​54076](https://redirect.github.com/nodejs/node/pull/54076) - \[[`103e4db3e0`](https://redirect.github.com/nodejs/node/commit/103e4db3e0)] - **deps**: update simdutf to 5.3.1 (Node.js GitHub Bot) [#​54196](https://redirect.github.com/nodejs/node/pull/54196) - \[[`9f115ba9e9`](https://redirect.github.com/nodejs/node/commit/9f115ba9e9)] - **doc**: fix error description of the max header size (Egawa Ryo) [#​54125](https://redirect.github.com/nodejs/node/pull/54125) - \[[`f967ab3810`](https://redirect.github.com/nodejs/node/commit/f967ab3810)] - **doc**: add git node security --cleanup (Rafael Gonzaga) [#​54381](https://redirect.github.com/nodejs/node/pull/54381) - \[[`8883c01afa`](https://redirect.github.com/nodejs/node/commit/8883c01afa)] - **doc**: add note on weakness of permission model (Tobias Nießen) [#​54268](https://redirect.github.com/nodejs/node/pull/54268) - \[[`824bd58bc5`](https://redirect.github.com/nodejs/node/commit/824bd58bc5)] - **doc**: add versions when `--watch-preserve-output` was added (Théo LUDWIG) [#​54328](https://redirect.github.com/nodejs/node/pull/54328) - \[[`33795cfd49`](https://redirect.github.com/nodejs/node/commit/33795cfd49)] - **doc**: replace v19 mention in Current release (Rafael Gonzaga) [#​54361](https://redirect.github.com/nodejs/node/pull/54361) - \[[`aa6e770ea5`](https://redirect.github.com/nodejs/node/commit/aa6e770ea5)] - **doc**: correct peformance entry types (Jason Zhang) [#​54263](https://redirect.github.com/nodejs/node/pull/54263) - \[[`4b099ce1bd`](https://redirect.github.com/nodejs/node/commit/4b099ce1bd)] - **doc**: fix typo in method name in the sea doc (Eliyah Sundström) [#​54027](https://redirect.github.com/nodejs/node/pull/54027) - \[[`8a8d1d2281`](https://redirect.github.com/nodejs/node/commit/8a8d1d2281)] - **doc**: mark process.nextTick legacy (Marco Ippolito) [#​51280](https://redirect.github.com/nodejs/node/pull/51280) - \[[`6f4b5d998e`](https://redirect.github.com/nodejs/node/commit/6f4b5d998e)] - **doc**: add esm examples to node:http2 (Alfredo González) [#​54292](https://redirect.github.com/nodejs/node/pull/54292) - \[[`1535469c12`](https://redirect.github.com/nodejs/node/commit/1535469c12)] - **doc**: explicitly mention node:fs module restriction (Rafael Gonzaga) [#​54269](https://redirect.github.com/nodejs/node/pull/54269) - \[[`26c37f7910`](https://redirect.github.com/nodejs/node/commit/26c37f7910)] - **doc**: remove module-based permission doc (Rafael Gonzaga) [#​54266](https://redirect.github.com/nodejs/node/pull/54266) - \[[`971b9f31f5`](https://redirect.github.com/nodejs/node/commit/971b9f31f5)] - **doc**: update `buffer.constants.MAX_LENGTH` size (Samuli Asmala) [#​54207](https://redirect.github.com/nodejs/node/pull/54207) - \[[`3106149965`](https://redirect.github.com/nodejs/node/commit/3106149965)] - **doc**: warn for windows build bug (Jason Zhang) [#​54217](https://redirect.github.com/nodejs/node/pull/54217) - \[[`55f8ac3e89`](https://redirect.github.com/nodejs/node/commit/55f8ac3e89)] - **doc**: make some parameters optional in `tracingChannel.traceCallback` (Deokjin Kim) [#​54068](https://redirect.github.com/nodejs/node/pull/54068) - \[[`e3e2f22cab`](https://redirect.github.com/nodejs/node/commit/e3e2f22cab)] - **doc**: add esm examples to node:dns (Alfredo González) [#​54172](https://redirect.github.com/nodejs/node/pull/54172) - \[[`0429b1eb9d`](https://redirect.github.com/nodejs/node/commit/0429b1eb9d)] - **doc**: add KevinEady as a triager (Chengzhong Wu) [#​54179](https://redirect.github.com/nodejs/node/pull/54179) - \[[`4bfa7d8e54`](https://redirect.github.com/nodejs/node/commit/4bfa7d8e54)] - **doc**: add esm examples to node:console (Alfredo González) [#​54108](https://redirect.github.com/nodejs/node/pull/54108) - \[[`2f5309fc22`](https://redirect.github.com/nodejs/node/commit/2f5309fc22)] - **doc**: fix sea assets example (Sadzurami) [#​54192](https://redirect.github.com/nodejs/node/pull/54192) - \[[`88aef5a39d`](https://redirect.github.com/nodejs/node/commit/88aef5a39d)] - **doc**: add links to security steward companies (Aviv Keller) [#​52981](https://redirect.github.com/nodejs/node/pull/52981) - \[[`5175903c23`](https://redirect.github.com/nodejs/node/commit/5175903c23)] - **doc**: move `onread` option from `socket.connect()` to `new net.socket()` (sendoru) [#​54194](https://redirect.github.com/nodejs/node/pull/54194) - \[[`144637e845`](https://redirect.github.com/nodejs/node/commit/144637e845)] - **doc**: move release key for Myles Borins (Richard Lau) [#​54059](https://redirect.github.com/nodejs/node/pull/54059) - \[[`358fdacec6`](https://redirect.github.com/nodejs/node/commit/358fdacec6)] - **doc**: refresh instructions for building node from source (Liran Tal) [#​53768](https://redirect.github.com/nodejs/node/pull/53768) - \[[`11fdaa6ad2`](https://redirect.github.com/nodejs/node/commit/11fdaa6ad2)] - **doc**: add documentation for blob.bytes() method (jaexxin) [#​54114](https://redirect.github.com/nodejs/node/pull/54114) - \[[`db3b0df42c`](https://redirect.github.com/nodejs/node/commit/db3b0df42c)] - **doc**: add missing new lines to custom test reporter examples (Eddie Abbondanzio) [#​54152](https://redirect.github.com/nodejs/node/pull/54152) - \[[`1cafefd2cf`](https://redirect.github.com/nodejs/node/commit/1cafefd2cf)] - **doc**: fix worker threadId/destination typo (Thomas Hunter II) [#​53933](https://redirect.github.com/nodejs/node/pull/53933) - \[[`7772b46038`](https://redirect.github.com/nodejs/node/commit/7772b46038)] - **doc**: update list of Triagers on the `README.md` (Antoine du Hamel) [#​54138](https://redirect.github.com/nodejs/node/pull/54138) - \[[`af99ba3dc9`](https://redirect.github.com/nodejs/node/commit/af99ba3dc9)] - **doc**: remove unused imports from worker_threads.md (Yelim Koo) [#​54147](https://redirect.github.com/nodejs/node/pull/54147) - \[[`826edc4341`](https://redirect.github.com/nodejs/node/commit/826edc4341)] - **doc**: expand troubleshooting section (Liran Tal) [#​53808](https://redirect.github.com/nodejs/node/pull/53808) - \[[`923195b624`](https://redirect.github.com/nodejs/node/commit/923195b624)] - **doc**: clarify `useCodeCache` setting for cross-platform SEA generation (Yelim Koo) [#​53994](https://redirect.github.com/nodejs/node/pull/53994) - \[[`7c305a4900`](https://redirect.github.com/nodejs/node/commit/7c305a4900)] - **doc, meta**: replace command with link to keys (Aviv Keller) [#​53745](https://redirect.github.com/nodejs/node/pull/53745) - \[[`6f986e0ee6`](https://redirect.github.com/nodejs/node/commit/6f986e0ee6)] - **doc, test**: simplify test README table (Aviv Keller) [#​53971](https://redirect.github.com/nodejs/node/pull/53971) - \[[`112228c15a`](https://redirect.github.com/nodejs/node/commit/112228c15a)] - **fs**: remove unnecessary option argument validation (Jonas) [#​53958](https://redirect.github.com/nodejs/node/pull/53958) - \[[`911de7dd6d`](https://redirect.github.com/nodejs/node/commit/911de7dd6d)] - **(SEMVER-MINOR)** **inspector**: support `Network.loadingFailed` event (Kohei Ueno) [#​54246](https://redirect.github.com/nodejs/node/pull/54246) - \[[`1e825915d5`](https://redirect.github.com/nodejs/node/commit/1e825915d5)] - **inspector**: provide detailed info to fix DevTools frontend errors (Kohei Ueno) [#​54156](https://redirect.github.com/nodejs/node/pull/54156) - \[[`417120a3a3`](https://redirect.github.com/nodejs/node/commit/417120a3a3)] - **lib**: replace spread operator with primordials function (YoonSoo_Shin) [#​54053](https://redirect.github.com/nodejs/node/pull/54053) - \[[`09f411e6f6`](https://redirect.github.com/nodejs/node/commit/09f411e6f6)] - **lib**: avoid for of loop and remove unnecessary variable in zlib (YoonSoo_Shin) [#​54258](https://redirect.github.com/nodejs/node/pull/54258) - \[[`b8970570b0`](https://redirect.github.com/nodejs/node/commit/b8970570b0)] - **lib**: improve async_context_frame structure (Stephen Belanger) [#​54239](https://redirect.github.com/nodejs/node/pull/54239) - \[[`783322fa16`](https://redirect.github.com/nodejs/node/commit/783322fa16)] - **lib**: fix unhandled errors in webstream adapters (Fedor Indutny) [#​54206](https://redirect.github.com/nodejs/node/pull/54206) - \[[`425b9562b9`](https://redirect.github.com/nodejs/node/commit/425b9562b9)] - **lib**: fix typos in comments within internal/streams (YoonSoo_Shin) [#​54093](https://redirect.github.com/nodejs/node/pull/54093) - \[[`9ee4b16bd8`](https://redirect.github.com/nodejs/node/commit/9ee4b16bd8)] - **(SEMVER-MINOR)** **lib**: rewrite AsyncLocalStorage without async_hooks (Stephen Belanger) [#​48528](https://redirect.github.com/nodejs/node/pull/48528) - \[[`8c9a4ae12b`](https://redirect.github.com/nodejs/node/commit/8c9a4ae12b)] - **lib,permission**: support Buffer to permission.has (Rafael Gonzaga) [#​54104](https://redirect.github.com/nodejs/node/pull/54104) - \[[`c8e358c96c`](https://redirect.github.com/nodejs/node/commit/c8e358c96c)] - **meta**: add test-permission-\* CODEOWNERS (Rafael Gonzaga) [#​54267](https://redirect.github.com/nodejs/node/pull/54267) - \[[`581c155cf8`](https://redirect.github.com/nodejs/node/commit/581c155cf8)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#​54210](https://redirect.github.com/nodejs/node/pull/54210) - \[[`3f0d7344e3`](https://redirect.github.com/nodejs/node/commit/3f0d7344e3)] - **meta**: add module label for the lib/internal/modules folder (Aviv Keller) [#​52858](https://redirect.github.com/nodejs/node/pull/52858) - \[[`0157ec6bbd`](https://redirect.github.com/nodejs/node/commit/0157ec6bbd)] - **meta**: bump `actions/upload-artifact` from 4.3.3 to 4.3.4 (dependabot\[bot]) [#​54166](https://redirect.github.com/nodejs/node/pull/54166) - \[[`7fa95d2360`](https://redirect.github.com/nodejs/node/commit/7fa95d2360)] - **meta**: bump `actions/download-artifact` from 4.1.7 to 4.1.8 (dependabot\[bot]) [#​54167](https://redirect.github.com/nodejs/node/pull/54167) - \[[`acc5b9a0c5`](https://redirect.github.com/nodejs/node/commit/acc5b9a0c5)] - **meta**: bump actions/setup-python from 5.1.0 to 5.1.1 (dependabot\[bot]) [#​54165](https://redirect.github.com/nodejs/node/pull/54165) - \[[`dede30a8d0`](https://redirect.github.com/nodejs/node/commit/dede30a8d0)] - **meta**: bump `step-security/harden-runner` from 2.8.1 to 2.9.0 (dependabot\[bot]) [#​54169](https://redirect.github.com/nodejs/node/pull/54169) - \[[`b733854eac`](https://redirect.github.com/nodejs/node/commit/b733854eac)] - **meta**: bump `actions/setup-node` from 4.0.2 to 4.0.3 (dependabot\[bot]) [#​54170](https://redirect.github.com/nodejs/node/pull/54170) - \[[`6a9f168cc6`](https://redirect.github.com/nodejs/node/commit/6a9f168cc6)] - **meta**: bump `github/codeql-action` from 3.25.11 to 3.25.15 (dependabot\[bot]) [#​54168](https://redirect.github.com/nodejs/node/pull/54168) - \[[`9bbd85e4fe`](https://redirect.github.com/nodejs/node/commit/9bbd85e4fe)] - **meta**: bump `ossf/scorecard-action` from 2.3.3 to 2.4.0 (dependabot\[bot]) [#​54171](https://redirect.github.com/nodejs/node/pull/54171) - \[[`33633eebd9`](https://redirect.github.com/nodejs/node/commit/33633eebd9)] - **meta**: add typescript team to codeowners (Marco Ippolito) [#​54101](https://redirect.github.com/nodejs/node/pull/54101) - \[[`240d9296c1`](https://redirect.github.com/nodejs/node/commit/240d9296c1)] - **(SEMVER-MINOR)** **module**: add --experimental-transform-types flag (Marco Ippolito) [#​54283](https://redirect.github.com/nodejs/node/pull/54283) - \[[`66dcb2a571`](https://redirect.github.com/nodejs/node/commit/66dcb2a571)] - **(SEMVER-MINOR)** **module**: unflag detect-module (Geoffrey Booth) [#​53619](https://redirect.github.com/nodejs/node/pull/53619) - \[[`100225fbe1`](https://redirect.github.com/nodejs/node/commit/100225fbe1)] - **module**: do not attempt to strip type when there's no source (Antoine du Hamel) [#​54287](https://redirect.github.com/nodejs/node/pull/54287) - \[[`1ba2000703`](https://redirect.github.com/nodejs/node/commit/1ba2000703)] - **module**: refactor ts parser loading (Marco Ippolito) [#​54243](https://redirect.github.com/nodejs/node/pull/54243) - \[[`13cc480030`](https://redirect.github.com/nodejs/node/commit/13cc480030)] - **module**: remove outdated comment (Michaël Zasso) [#​54118](https://redirect.github.com/nodejs/node/pull/54118) - \[[`e676d98435`](https://redirect.github.com/nodejs/node/commit/e676d98435)] - **module,win**: fix long path resolve (Hüseyin Açacak) [#​53294](https://redirect.github.com/nodejs/node/pull/53294) - \[[`9aec536083`](https://redirect.github.com/nodejs/node/commit/9aec536083)] - **path**: change `posix.join` to use array (Wiyeong Seo) [#​54331](https://redirect.github.com/nodejs/node/pull/54331) - \[[`8a770cf5c9`](https://redirect.github.com/nodejs/node/commit/8a770cf5c9)] - **path**: fix relative on Windows (Hüseyin Açacak) [#​53991](https://redirect.github.com/nodejs/node/pull/53991) - \[[`267cd7f361`](https://redirect.github.com/nodejs/node/commit/267cd7f361)] - **path**: use the correct name in `validateString` (Benjamin Pasero) [#​53669](https://redirect.github.com/nodejs/node/pull/53669) - \[[`31adeea855`](https://redirect.github.com/nodejs/node/commit/31adeea855)] - **sea**: don't set code cache flags when snapshot is used (Joyee Cheung) [#​54120](https://redirect.github.com/nodejs/node/pull/54120) - \[[`7f1bf1ce24`](https://redirect.github.com/nodejs/node/commit/7f1bf1ce24)] - **sqlite**: split up large test file (Colin Ihrig) [#​54014](https://redirect.github.com/nodejs/node/pull/54014) - \[[`94e2ea6f5c`](https://redirect.github.com/nodejs/node/commit/94e2ea6f5c)] - **sqlite**: ensure statement finalization on db close (Colin Ihrig) [#​54014](https://redirect.github.com/nodejs/node/pull/54014) - \[[`e077ff1f38`](https://redirect.github.com/nodejs/node/commit/e077ff1f38)] - **src**: update compile cache storage structure (Joyee Cheung) [#​54291](https://redirect.github.com/nodejs/node/pull/54291) - \[[`4e4d1def7e`](https://redirect.github.com/nodejs/node/commit/4e4d1def7e)] - **src**: refactor http parser binding initialization (Joyee Cheung) [#​54276](https://redirect.github.com/nodejs/node/pull/54276) - \[[`409d9eb09b`](https://redirect.github.com/nodejs/node/commit/409d9eb09b)] - **src**: shift even moar x509 to ncrypto (James M Snell) [#​54340](https://redirect.github.com/nodejs/node/pull/54340) - \[[`f87aa27274`](https://redirect.github.com/nodejs/node/commit/f87aa27274)] - **src**: don't match after `--` in `Dotenv::GetPathFromArgs` (Aviv Keller) [#​54237](https://redirect.github.com/nodejs/node/pull/54237) - \[[`b6927dd981`](https://redirect.github.com/nodejs/node/commit/b6927dd981)] - **src**: move some X509Certificate stuff to ncrypto (James M Snell) [#​54241](https://redirect.github.com/nodejs/node/pull/54241) - \[[`a394219fa5`](https://redirect.github.com/nodejs/node/commit/a394219fa5)] - **src**: skip inspector wait in internal workers (Chengzhong Wu) [#​54219](https://redirect.github.com/nodejs/node/pull/54219) - \[[`8daeccfe92`](https://redirect.github.com/nodejs/node/commit/8daeccfe92)] - **src**: shift more crypto impl details to ncrypto (James M Snell) [#​54028](https://redirect.github.com/nodejs/node/pull/54028) - \[[`e619133ac9`](https://redirect.github.com/nodejs/node/commit/e619133ac9)] - **src**: move spkac methods to ncrypto (James M Snell) [#​53985](https://redirect.github.com/nodejs/node/pull/53985) - \[[`b52c2fff75`](https://redirect.github.com/nodejs/node/commit/b52c2fff75)] - **src**: account for OpenSSL unexpected version (Shelley Vohr) [#​54038](https://redirect.github.com/nodejs/node/pull/54038) - \[[`0b16af1689`](https://redirect.github.com/nodejs/node/commit/0b16af1689)] - **src,test**: track `URL.canParse` fast API calls (Michaël Zasso) [#​54356](https://redirect.github.com/nodejs/node/pull/54356) - \[[`2be78b03c3`](https://redirect.github.com/nodejs/node/commit/2be78b03c3)] - **src,test**: ensure that V8 fast APIs are called (Michaël Zasso) [#​54317](https://redirect.github.com/nodejs/node/pull/54317) - \[[`9297d29cdb`](https://redirect.github.com/nodejs/node/commit/9297d29cdb)] - **stream**: make checking pendingcb on WritableStream backward compatible (jakecastelli) [#​54142](https://redirect.github.com/nodejs/node/pull/54142) - \[[`2a6a12e493`](https://redirect.github.com/nodejs/node/commit/2a6a12e493)] - **stream**: throw TypeError when criteria fulfilled in getIterator (jakecastelli) [#​53825](https://redirect.github.com/nodejs/node/pull/53825) - \[[`7f68cc0f7f`](https://redirect.github.com/nodejs/node/commit/7f68cc0f7f)] - **test**: make snapshot comparison more flexible (Shelley Vohr) [#​54375](https://redirect.github.com/nodejs/node/pull/54375) - \[[`3df7938832`](https://redirect.github.com/nodejs/node/commit/3df7938832)] - **test**: make sure current run result is pushed and reset (jakecastelli) [#​54332](https://redirect.github.com/nodejs/node/pull/54332) - \[[`3e25be7b28`](https://redirect.github.com/nodejs/node/commit/3e25be7b28)] - **test**: use relative paths in test-cli-permission tests (sendoru) [#​54188](https://redirect.github.com/nodejs/node/pull/54188) - \[[`f49f1bb3e9`](https://redirect.github.com/nodejs/node/commit/f49f1bb3e9)] - **test**: unmark test-sqlite as flaky (Colin Ihrig) [#​54014](https://redirect.github.com/nodejs/node/pull/54014) - \[[`2f68a74702`](https://redirect.github.com/nodejs/node/commit/2f68a74702)] - **test**: fix timeout not being cleared (Isaac-yz-Liu) [#​54242](https://redirect.github.com/nodejs/node/pull/54242) - \[[`f5cfa4454e`](https://redirect.github.com/nodejs/node/commit/f5cfa4454e)] - **test**: refactor `test-runner-module-mocking` (Antoine du Hamel) [#​54233](https://redirect.github.com/nodejs/node/pull/54233) - \[[`b85b13b418`](https://redirect.github.com/nodejs/node/commit/b85b13b418)] - **test**: use assert.{s,deepS}trictEqual() (Luigi Pinca) [#​54208](https://redirect.github.com/nodejs/node/pull/54208) - \[[`6bcbfcd7bc`](https://redirect.github.com/nodejs/node/commit/6bcbfcd7bc)] - **test**: add subtests to test-node-run (sungpaks) [#​54204](https://redirect.github.com/nodejs/node/pull/54204) - \[[`dafe97548f`](https://redirect.github.com/nodejs/node/commit/dafe97548f)] - **test**: set test-structuredclone-jstransferable non-flaky (Stefan Stojanovic) [#​54115](https://redirect.github.com/nodejs/node/pull/54115) - \[[`be61793db5`](https://redirect.github.com/nodejs/node/commit/be61793db5)] - **test**: update wpt test for streams (devstone) [#​54129](https://redirect.github.com/nodejs/node/pull/54129) - \[[`670c796449`](https://redirect.github.com/nodejs/node/commit/670c796449)] - **test**: fix typo in test (Sonny) [#​54137](https://redirect.github.com/nodejs/node/pull/54137) - \[[`1a15f3f613`](https://redirect.github.com/nodejs/node/commit/1a15f3f613)] - **test**: add initial pull delay and prototype pollution prevention tests (Sonny) [#​54061](https://redirect.github.com/nodejs/node/pull/54061) - \[[`5dbff81b71`](https://redirect.github.com/nodejs/node/commit/5dbff81b71)] - **test**: add coverage for webstorage quota (jakecastelli) [#​53964](https://redirect.github.com/nodejs/node/pull/53964) - \[[`141e9fe7cc`](https://redirect.github.com/nodejs/node/commit/141e9fe7cc)] - **test_runner**: use validateStringArray for `timers.enable()` (Deokjin Kim) [#​49534](https://redirect.github.com/nodejs/node/pull/49534) - \[[`e70711e190`](https://redirect.github.com/nodejs/node/commit/e70711e190)] - **test_runner**: report failures in filtered suites (Colin Ihrig) [#​54387](https://redirect.github.com/nodejs/node/pull/54387) - \[[`7766c1dc9b`](https://redirect.github.com/nodejs/node/commit/7766c1dc9b)] - **test_runner**: remove parseCommandLine() from test.js (Colin Ihrig) [#​54353](https://redirect.github.com/nodejs/node/pull/54353) - \[[`961cbf0be0`](https://redirect.github.com/nodejs/node/commit/961cbf0be0)] - **test_runner**: refactor hook creation (Colin Ihrig) [#​54353](https://redirect.github.com/nodejs/node/pull/54353) - \[[`69c78ca2f5`](https://redirect.github.com/nodejs/node/commit/69c78ca2f5)] - **test_runner**: return setup() from parseCommandLine() (Colin Ihrig) [#​54353](https://redirect.github.com/nodejs/node/pull/54353) - \[[`ed1ede8c26`](https://redirect.github.com/nodejs/node/commit/ed1ede8c26)] - **test_runner**: pass global options to createTestTree() (Colin Ihrig) [#​54353](https://redirect.github.com/nodejs/node/pull/54353) - \[[`1e88045a69`](https://redirect.github.com/nodejs/node/commit/1e88045a69)] - **test_runner**: pass harness object as option to root test (Colin Ihrig) [#​54353](https://redirect.github.com/nodejs/node/pull/54353) - \[[`e3378f0679`](https://redirect.github.com/nodejs/node/commit/e3378f0679)] - **test_runner**: use run() argument names in parseCommandLine() (Colin Ihrig) [#​54353](https://redirect.github.com/nodejs/node/pull/54353) - \[[`676bbd5c09`](https://redirect.github.com/nodejs/node/commit/676bbd5c09)] - **test_runner**: fix delete test file cause dependency file not watched (jakecastelli) [#​53533](https://redirect.github.com/nodejs/node/pull/53533) - \[[`fe793a6103`](https://redirect.github.com/nodejs/node/commit/fe793a6103)] - **test_runner**: do not expose internal loader (Antoine du Hamel) [#​54106](https://redirect.github.com/nodejs/node/pull/54106) - \[[`7fad771bbf`](https://redirect.github.com/nodejs/node/commit/7fad771bbf)] - **test_runner**: fix erroneous diagnostic warning when only: false (Pietro Marchini) [#​54116](https://redirect.github.com/nodejs/node/pull/54116) - \[[`dc465736fb`](https://redirect.github.com/nodejs/node/commit/dc465736fb)] - **test_runner**: make mock_loader not confuse CJS and ESM resolution (Sung Ye In) [#​53846](https://redirect.github.com/nodejs/node/pull/53846) - \[[`5a1afb2139`](https://redirect.github.com/nodejs/node/commit/5a1afb2139)] - **t

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.



Read more information about the use of Renovate Bot within Laminas.