node-linux-arm64 22.0.0 → 22.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +147 -0
- package/LICENSE +3 -33
- package/README.md +40 -38
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +2 -2
- package/include/node/node.h +1 -0
- package/include/node/node_version.h +1 -1
- package/package.json +1 -1
- package/share/man/man1/node.1 +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
</tr>
|
|
9
9
|
<tr>
|
|
10
10
|
<td>
|
|
11
|
+
<a href="#22.1.0">22.1.0</a><br/>
|
|
11
12
|
<a href="#22.0.0">22.0.0</a><br/>
|
|
12
13
|
</td>
|
|
13
14
|
</tr>
|
|
@@ -37,6 +38,152 @@
|
|
|
37
38
|
* [io.js](CHANGELOG_IOJS.md)
|
|
38
39
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
39
40
|
|
|
41
|
+
<a id="22.1.0"></a>
|
|
42
|
+
|
|
43
|
+
## 2024-05-02, Version 22.1.0 (Current), @targos prepared by @aduh95
|
|
44
|
+
|
|
45
|
+
### module: implement `NODE_COMPILE_CACHE` for automatic on-disk code caching
|
|
46
|
+
|
|
47
|
+
This patch implements automatic on-disk code caching that can be enabled
|
|
48
|
+
via an environment variable `NODE_COMPILE_CACHE=/path/to/cache/dir`.
|
|
49
|
+
|
|
50
|
+
When set, whenever Node.js compiles a CommonJS or a ECMAScript Module,
|
|
51
|
+
it will use on-disk [V8 code cache](https://v8.dev/blog/code-caching-for-devs)
|
|
52
|
+
persisted in the specified directory
|
|
53
|
+
to speed up the compilation. This may slow down the first load of a
|
|
54
|
+
module graph, but subsequent loads of the same module graph may get
|
|
55
|
+
a significant speedup if the contents of the modules do not change.
|
|
56
|
+
Locally, this speeds up loading of `test/fixtures/snapshot/typescript.js`
|
|
57
|
+
from \~130ms to \~80ms.
|
|
58
|
+
|
|
59
|
+
To clean up the generated code cache, simply remove the directory.
|
|
60
|
+
It will be recreated the next time the same directory is used for
|
|
61
|
+
`NODE_COMPILE_CACHE`.
|
|
62
|
+
|
|
63
|
+
Compilation cache generated by one version of Node.js may not be used
|
|
64
|
+
by a different version of Node.js. Cache generated by different versions
|
|
65
|
+
of Node.js will be stored separately if the same directory is used
|
|
66
|
+
to persist the cache, so they can co-exist.
|
|
67
|
+
|
|
68
|
+
Caveat: currently when using this with V8 JavaScript code coverage, the
|
|
69
|
+
coverage being collected by V8 may be less precise in functions that are
|
|
70
|
+
deserialized from the code cache. It's recommended to turn this off when
|
|
71
|
+
running tests to generate precise coverage.
|
|
72
|
+
|
|
73
|
+
Contributed by Joyee Cheung in [#52535](https://github.com/nodejs/node/pull/52535).
|
|
74
|
+
|
|
75
|
+
### Other Notable Changes
|
|
76
|
+
|
|
77
|
+
* \[[`44ee04cf9f`](https://github.com/nodejs/node/commit/44ee04cf9f)] - **buffer**: improve `base64` and `base64url` performance (Yagiz Nizipli) [#52428](https://github.com/nodejs/node/pull/52428)
|
|
78
|
+
* \[[`3c37ce5710`](https://github.com/nodejs/node/commit/3c37ce5710)] - **(SEMVER-MINOR)** **dns**: add order option and support ipv6first (Paolo Insogna) [#52492](https://github.com/nodejs/node/pull/52492)
|
|
79
|
+
* \[[`3026401be1`](https://github.com/nodejs/node/commit/3026401be1)] - **events,doc**: mark CustomEvent as stable (Daeyeon Jeong) [#52618](https://github.com/nodejs/node/pull/52618)
|
|
80
|
+
* \[[`64428dc1c9`](https://github.com/nodejs/node/commit/64428dc1c9)] - **(SEMVER-MINOR)** **lib, url**: add a `windows` option to path parsing (Aviv Keller) [#52509](https://github.com/nodejs/node/pull/52509)
|
|
81
|
+
* \[[`d79ae74f71`](https://github.com/nodejs/node/commit/d79ae74f71)] - **(SEMVER-MINOR)** **net**: add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) [#52474](https://github.com/nodejs/node/pull/52474)
|
|
82
|
+
* \[[`43fa6a1a45`](https://github.com/nodejs/node/commit/43fa6a1a45)] - **(SEMVER-MINOR)** **src**: add `string_view` overload to snapshot FromBlob (Anna Henningsen) [#52595](https://github.com/nodejs/node/pull/52595)
|
|
83
|
+
* \[[`c6fe433d42`](https://github.com/nodejs/node/commit/c6fe433d42)] - **src,permission**: throw async errors on async APIs (Rafael Gonzaga) [#52730](https://github.com/nodejs/node/pull/52730)
|
|
84
|
+
* \[[`e247a61d15`](https://github.com/nodejs/node/commit/e247a61d15)] - **(SEMVER-MINOR)** **test\_runner**: add --test-skip-pattern cli option (Aviv Keller) [#52529](https://github.com/nodejs/node/pull/52529)
|
|
85
|
+
* \[[`9b18df9dcb`](https://github.com/nodejs/node/commit/9b18df9dcb)] - **(SEMVER-MINOR)** **url**: implement parse method for safer URL parsing (Ali Hassan) [#52280](https://github.com/nodejs/node/pull/52280)
|
|
86
|
+
|
|
87
|
+
### Commits
|
|
88
|
+
|
|
89
|
+
* \[[`35643c18c0`](https://github.com/nodejs/node/commit/35643c18c0)] - **benchmark**: reduce the buffer size for blob (Debadree Chatterjee) [#52548](https://github.com/nodejs/node/pull/52548)
|
|
90
|
+
* \[[`7cdfe8a3fc`](https://github.com/nodejs/node/commit/7cdfe8a3fc)] - **benchmark**: inherit stdio/stderr instead of pipe (Ali Hassan) [#52456](https://github.com/nodejs/node/pull/52456)
|
|
91
|
+
* \[[`7b82c17f22`](https://github.com/nodejs/node/commit/7b82c17f22)] - **benchmark**: add ipc support to spawn stdio config (Ali Hassan) [#52456](https://github.com/nodejs/node/pull/52456)
|
|
92
|
+
* \[[`dfda6fed61`](https://github.com/nodejs/node/commit/dfda6fed61)] - **buffer**: add missing ARG\_TYPE(ArrayBuffer) for isUtf8 (Jungku Lee) [#52477](https://github.com/nodejs/node/pull/52477)
|
|
93
|
+
* \[[`44ee04cf9f`](https://github.com/nodejs/node/commit/44ee04cf9f)] - **buffer**: improve `base64` and `base64url` performance (Yagiz Nizipli) [#52428](https://github.com/nodejs/node/pull/52428)
|
|
94
|
+
* \[[`c64a1a3b89`](https://github.com/nodejs/node/commit/c64a1a3b89)] - **build**: fix typo in node.gyp (Michaël Zasso) [#52719](https://github.com/nodejs/node/pull/52719)
|
|
95
|
+
* \[[`4f713fbc2e`](https://github.com/nodejs/node/commit/4f713fbc2e)] - **build**: fix headers install for shared mode on Win (Segev Finer) [#52442](https://github.com/nodejs/node/pull/52442)
|
|
96
|
+
* \[[`4baeb7b21d`](https://github.com/nodejs/node/commit/4baeb7b21d)] - **build**: fix arm64 cross-compilation bug on non-arm machines (Mahdi Sharifi) [#52559](https://github.com/nodejs/node/pull/52559)
|
|
97
|
+
* \[[`d5cd468ce8`](https://github.com/nodejs/node/commit/d5cd468ce8)] - **build,tools,node-api**: fix building node-api tests for Windows Debug (Vladimir Morozov) [#52632](https://github.com/nodejs/node/pull/52632)
|
|
98
|
+
* \[[`910533fcfd`](https://github.com/nodejs/node/commit/910533fcfd)] - **crypto**: simplify assertions in Safe\*Print (David Benjamin) [#49709](https://github.com/nodejs/node/pull/49709)
|
|
99
|
+
* \[[`61e1ac0b8c`](https://github.com/nodejs/node/commit/61e1ac0b8c)] - **crypto**: enable NODE\_EXTRA\_CA\_CERTS with BoringSSL (Shelley Vohr) [#52217](https://github.com/nodejs/node/pull/52217)
|
|
100
|
+
* \[[`6e98eee256`](https://github.com/nodejs/node/commit/6e98eee256)] - **deps**: upgrade npm to 10.7.0 (npm team) [#52767](https://github.com/nodejs/node/pull/52767)
|
|
101
|
+
* \[[`27a5f9418c`](https://github.com/nodejs/node/commit/27a5f9418c)] - **deps**: V8: cherry-pick 500de8bd371b (Richard Lau) [#52676](https://github.com/nodejs/node/pull/52676)
|
|
102
|
+
* \[[`3b422ddcea`](https://github.com/nodejs/node/commit/3b422ddcea)] - **deps**: update corepack to 0.28.0 (Node.js GitHub Bot) [#52616](https://github.com/nodejs/node/pull/52616)
|
|
103
|
+
* \[[`d40e4d4c42`](https://github.com/nodejs/node/commit/d40e4d4c42)] - **deps**: update ada to 2.7.8 (Node.js GitHub Bot) [#52517](https://github.com/nodejs/node/pull/52517)
|
|
104
|
+
* \[[`5b52a4870a`](https://github.com/nodejs/node/commit/5b52a4870a)] - **deps**: update icu to 75.1 (Node.js GitHub Bot) [#52573](https://github.com/nodejs/node/pull/52573)
|
|
105
|
+
* \[[`80cbe72c1f`](https://github.com/nodejs/node/commit/80cbe72c1f)] - **deps**: update undici to 6.13.0 (Node.js GitHub Bot) [#52493](https://github.com/nodejs/node/pull/52493)
|
|
106
|
+
* \[[`9a44059055`](https://github.com/nodejs/node/commit/9a44059055)] - **deps**: update zlib to 1.3.0.1-motley-7d77fb7 (Node.js GitHub Bot) [#52516](https://github.com/nodejs/node/pull/52516)
|
|
107
|
+
* \[[`d67a9a5360`](https://github.com/nodejs/node/commit/d67a9a5360)] - **deps**: update minimatch to 9.0.4 (Node.js GitHub Bot) [#52524](https://github.com/nodejs/node/pull/52524)
|
|
108
|
+
* \[[`8738b89971`](https://github.com/nodejs/node/commit/8738b89971)] - **deps**: upgrade npm to 10.5.2 (npm team) [#52458](https://github.com/nodejs/node/pull/52458)
|
|
109
|
+
* \[[`8e4fd2842b`](https://github.com/nodejs/node/commit/8e4fd2842b)] - **deps,src**: simplify base64 encoding (Daniel Lemire) [#52714](https://github.com/nodejs/node/pull/52714)
|
|
110
|
+
* \[[`3c37ce5710`](https://github.com/nodejs/node/commit/3c37ce5710)] - **(SEMVER-MINOR)** **dns**: add order option and support ipv6first (Paolo Insogna) [#52492](https://github.com/nodejs/node/pull/52492)
|
|
111
|
+
* \[[`3987a28a9e`](https://github.com/nodejs/node/commit/3987a28a9e)] - **doc**: update process.versions properties (ishabi) [#52736](https://github.com/nodejs/node/pull/52736)
|
|
112
|
+
* \[[`c0b58e07f1`](https://github.com/nodejs/node/commit/c0b58e07f1)] - **doc**: remove mold use on mac for speeding up build (Cong Zhang) [#52252](https://github.com/nodejs/node/pull/52252)
|
|
113
|
+
* \[[`9a032cf6e2`](https://github.com/nodejs/node/commit/9a032cf6e2)] - **doc**: remove relative limitation to pm (Rafael Gonzaga) [#52648](https://github.com/nodejs/node/pull/52648)
|
|
114
|
+
* \[[`90c6e77238`](https://github.com/nodejs/node/commit/90c6e77238)] - **doc**: fix info string causing duplicated code blocks (Mathieu Leenhardt) [#52660](https://github.com/nodejs/node/pull/52660)
|
|
115
|
+
* \[[`4d577fa048`](https://github.com/nodejs/node/commit/4d577fa048)] - **doc**: add .gitattributes for md files (Hüseyin Açacak) [#52161](https://github.com/nodejs/node/pull/52161)
|
|
116
|
+
* \[[`04c8e110e5`](https://github.com/nodejs/node/commit/04c8e110e5)] - **doc**: run license-builder (github-actions\[bot]) [#52631](https://github.com/nodejs/node/pull/52631)
|
|
117
|
+
* \[[`3552829594`](https://github.com/nodejs/node/commit/3552829594)] - **doc**: add info on contributor spotlight program (Michael Dawson) [#52598](https://github.com/nodejs/node/pull/52598)
|
|
118
|
+
* \[[`eeb80ad836`](https://github.com/nodejs/node/commit/eeb80ad836)] - **doc**: correct unsafe URL example in http docs (Malte Legenhausen) [#52555](https://github.com/nodejs/node/pull/52555)
|
|
119
|
+
* \[[`c83526a688`](https://github.com/nodejs/node/commit/c83526a688)] - **doc**: replace U+00A0 with U+0020 (Luigi Pinca) [#52590](https://github.com/nodejs/node/pull/52590)
|
|
120
|
+
* \[[`31831e9db8`](https://github.com/nodejs/node/commit/31831e9db8)] - **doc**: sort options alphabetically (Luigi Pinca) [#52589](https://github.com/nodejs/node/pull/52589)
|
|
121
|
+
* \[[`a93f5d4aaa`](https://github.com/nodejs/node/commit/a93f5d4aaa)] - **doc**: correct stream.finished changes (KaKa) [#52551](https://github.com/nodejs/node/pull/52551)
|
|
122
|
+
* \[[`27ffa35540`](https://github.com/nodejs/node/commit/27ffa35540)] - **doc**: add RedYetiDev to triage team (Aviv Keller) [#52556](https://github.com/nodejs/node/pull/52556)
|
|
123
|
+
* \[[`63cc2b870e`](https://github.com/nodejs/node/commit/63cc2b870e)] - **doc**: fix issue detected in markdown lint update (Rich Trott) [#52566](https://github.com/nodejs/node/pull/52566)
|
|
124
|
+
* \[[`7e93c4892b`](https://github.com/nodejs/node/commit/7e93c4892b)] - **doc**: update test runner coverage limitations (Moshe Atlow) [#52515](https://github.com/nodejs/node/pull/52515)
|
|
125
|
+
* \[[`3026401be1`](https://github.com/nodejs/node/commit/3026401be1)] - **events,doc**: mark CustomEvent as stable (Daeyeon Jeong) [#52618](https://github.com/nodejs/node/pull/52618)
|
|
126
|
+
* \[[`c6e0fe2f22`](https://github.com/nodejs/node/commit/c6e0fe2f22)] - **fs**: allow setting Stat date properties (Nicolò Ribaudo) [#52708](https://github.com/nodejs/node/pull/52708)
|
|
127
|
+
* \[[`f23fa1de72`](https://github.com/nodejs/node/commit/f23fa1de72)] - **fs**: fix read / readSync positional offset types (Ruy Adorno) [#52603](https://github.com/nodejs/node/pull/52603)
|
|
128
|
+
* \[[`a7e03d301a`](https://github.com/nodejs/node/commit/a7e03d301a)] - **fs**: fixes recursive fs.watch crash on Linux when deleting files (Matteo Collina) [#52349](https://github.com/nodejs/node/pull/52349)
|
|
129
|
+
* \[[`d5ecb6cd00`](https://github.com/nodejs/node/commit/d5ecb6cd00)] - **http2**: fix excessive CPU usage when using `allowHTTP1=true` (Eugene) [#52713](https://github.com/nodejs/node/pull/52713)
|
|
130
|
+
* \[[`d1adc9b140`](https://github.com/nodejs/node/commit/d1adc9b140)] - **lib**: enforce ASCII order in error code imports (Antoine du Hamel) [#52625](https://github.com/nodejs/node/pull/52625)
|
|
131
|
+
* \[[`9ffdcade37`](https://github.com/nodejs/node/commit/9ffdcade37)] - **lib**: use predefined variable instead of bit operation (Deokjin Kim) [#52580](https://github.com/nodejs/node/pull/52580)
|
|
132
|
+
* \[[`fdcde845ee`](https://github.com/nodejs/node/commit/fdcde845ee)] - **lib**: refactor lazy loading of undici for fetch method (Victor Chen) [#52275](https://github.com/nodejs/node/pull/52275)
|
|
133
|
+
* \[[`f6145aa2ca`](https://github.com/nodejs/node/commit/f6145aa2ca)] - **lib**: convert WeakMaps in cjs loader with private symbol properties (Chengzhong Wu) [#52095](https://github.com/nodejs/node/pull/52095)
|
|
134
|
+
* \[[`014bf01efc`](https://github.com/nodejs/node/commit/014bf01efc)] - **lib**: replace string prototype usage with alternatives (Aviv Keller) [#52440](https://github.com/nodejs/node/pull/52440)
|
|
135
|
+
* \[[`dc399ddd03`](https://github.com/nodejs/node/commit/dc399ddd03)] - **lib, doc**: rename readme.md to README.md (Aviv Keller) [#52471](https://github.com/nodejs/node/pull/52471)
|
|
136
|
+
* \[[`64428dc1c9`](https://github.com/nodejs/node/commit/64428dc1c9)] - **(SEMVER-MINOR)** **lib, url**: add a `windows` option to path parsing (Aviv Keller) [#52509](https://github.com/nodejs/node/pull/52509)
|
|
137
|
+
* \[[`9b2b6abb62`](https://github.com/nodejs/node/commit/9b2b6abb62)] - **lib,src**: iterate module requests of a module wrap in JS (Chengzhong Wu) [#52058](https://github.com/nodejs/node/pull/52058)
|
|
138
|
+
* \[[`896a80e366`](https://github.com/nodejs/node/commit/896a80e366)] - **meta**: standardize regex (Aviv Keller) [#52693](https://github.com/nodejs/node/pull/52693)
|
|
139
|
+
* \[[`20c07e922e`](https://github.com/nodejs/node/commit/20c07e922e)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#52633](https://github.com/nodejs/node/pull/52633)
|
|
140
|
+
* \[[`e70d8a4fa9`](https://github.com/nodejs/node/commit/e70d8a4fa9)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#52457](https://github.com/nodejs/node/pull/52457)
|
|
141
|
+
* \[[`20ab8f2a88`](https://github.com/nodejs/node/commit/20ab8f2a88)] - **module**: support ESM detection in the CJS loader (Joyee Cheung) [#52047](https://github.com/nodejs/node/pull/52047)
|
|
142
|
+
* \[[`544c602b75`](https://github.com/nodejs/node/commit/544c602b75)] - **module**: skip NODE\_COMPILE\_CACHE when policy is enabled (Joyee Cheung) [#52577](https://github.com/nodejs/node/pull/52577)
|
|
143
|
+
* \[[`3df3afc284`](https://github.com/nodejs/node/commit/3df3afc284)] - **module**: detect ESM syntax by trying to recompile as SourceTextModule (Joyee Cheung) [#52413](https://github.com/nodejs/node/pull/52413)
|
|
144
|
+
* \[[`4d77fd2c46`](https://github.com/nodejs/node/commit/4d77fd2c46)] - **(SEMVER-MINOR)** **module**: implement NODE\_COMPILE\_CACHE for automatic on-disk code caching (Joyee Cheung) [#52535](https://github.com/nodejs/node/pull/52535)
|
|
145
|
+
* \[[`9794d21b07`](https://github.com/nodejs/node/commit/9794d21b07)] - **module**: fix submodules loaded by require() and import() (Joyee Cheung) [#52487](https://github.com/nodejs/node/pull/52487)
|
|
146
|
+
* \[[`b00766d9e7`](https://github.com/nodejs/node/commit/b00766d9e7)] - **module**: tidy code and comments (Jacob Smith) [#52437](https://github.com/nodejs/node/pull/52437)
|
|
147
|
+
* \[[`d79ae74f71`](https://github.com/nodejs/node/commit/d79ae74f71)] - **(SEMVER-MINOR)** **net**: add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) [#52474](https://github.com/nodejs/node/pull/52474)
|
|
148
|
+
* \[[`b17cfea289`](https://github.com/nodejs/node/commit/b17cfea289)] - **node-api**: address coverity report (Michael Dawson) [#52584](https://github.com/nodejs/node/pull/52584)
|
|
149
|
+
* \[[`1fca8baac1`](https://github.com/nodejs/node/commit/1fca8baac1)] - **node-api**: copy external type tags when they are set (Niels Martignène) [#52426](https://github.com/nodejs/node/pull/52426)
|
|
150
|
+
* \[[`d086ab42a1`](https://github.com/nodejs/node/commit/d086ab42a1)] - **quic**: address recent coverity warnings (Michael Dawson) [#52647](https://github.com/nodejs/node/pull/52647)
|
|
151
|
+
* \[[`fb4edf70cf`](https://github.com/nodejs/node/commit/fb4edf70cf)] - **quic**: rework TLSContext, additional cleanups (James M Snell) [#51340](https://github.com/nodejs/node/pull/51340)
|
|
152
|
+
* \[[`0c58d0319b`](https://github.com/nodejs/node/commit/0c58d0319b)] - **src**: remove misplaced windows code under posix guard in node.cc (Ali Hassan) [#52545](https://github.com/nodejs/node/pull/52545)
|
|
153
|
+
* \[[`e20d2f1de3`](https://github.com/nodejs/node/commit/e20d2f1de3)] - **src**: cast to v8::Value before using v8::EmbedderGraph::V8Node (Joyee Cheung) [#52638](https://github.com/nodejs/node/pull/52638)
|
|
154
|
+
* \[[`43fa6a1a45`](https://github.com/nodejs/node/commit/43fa6a1a45)] - **(SEMVER-MINOR)** **src**: add `string_view` overload to snapshot FromBlob (Anna Henningsen) [#52595](https://github.com/nodejs/node/pull/52595)
|
|
155
|
+
* \[[`a56faff4d0`](https://github.com/nodejs/node/commit/a56faff4d0)] - **src**: parse inspector profiles with simdjson (Joyee Cheung) [#51783](https://github.com/nodejs/node/pull/51783)
|
|
156
|
+
* \[[`ac04c6434a`](https://github.com/nodejs/node/commit/ac04c6434a)] - **src**: remove regex usage for env file parsing (IlyasShabi) [#52406](https://github.com/nodejs/node/pull/52406)
|
|
157
|
+
* \[[`f283d27285`](https://github.com/nodejs/node/commit/f283d27285)] - **src**: fix loadEnvFile ENOENT error (mathis-west-1) [#52438](https://github.com/nodejs/node/pull/52438)
|
|
158
|
+
* \[[`c6fe433d42`](https://github.com/nodejs/node/commit/c6fe433d42)] - **src,permission**: throw async errors on async APIs (Rafael Gonzaga) [#52730](https://github.com/nodejs/node/pull/52730)
|
|
159
|
+
* \[[`9f9eca965a`](https://github.com/nodejs/node/commit/9f9eca965a)] - **stream**: update ongoing promise in async iterator return() method (Mattias Buelens) [#52657](https://github.com/nodejs/node/pull/52657)
|
|
160
|
+
* \[[`d568a9a38e`](https://github.com/nodejs/node/commit/d568a9a38e)] - **test**: mark `test-error-serdes` as flaky (Antoine du Hamel) [#52739](https://github.com/nodejs/node/pull/52739)
|
|
161
|
+
* \[[`45f7002b90`](https://github.com/nodejs/node/commit/45f7002b90)] - **test**: mark test as flaky (Michael Dawson) [#52671](https://github.com/nodejs/node/pull/52671)
|
|
162
|
+
* \[[`10596e20e8`](https://github.com/nodejs/node/commit/10596e20e8)] - **test**: fix backtick usage in docs (Aviv Keller) [#52643](https://github.com/nodejs/node/pull/52643)
|
|
163
|
+
* \[[`b2f754c9f1`](https://github.com/nodejs/node/commit/b2f754c9f1)] - **test**: skip test-fs-watch-recursive-delete.js on IBM i (Abdirahim Musse) [#52645](https://github.com/nodejs/node/pull/52645)
|
|
164
|
+
* \[[`ed080d868d`](https://github.com/nodejs/node/commit/ed080d868d)] - **test**: ensure that all worker servers are ready (Luigi Pinca) [#52563](https://github.com/nodejs/node/pull/52563)
|
|
165
|
+
* \[[`c8c61737e4`](https://github.com/nodejs/node/commit/c8c61737e4)] - **test**: fix test-tls-ticket-cluster.js (Hüseyin Açacak) [#52431](https://github.com/nodejs/node/pull/52431)
|
|
166
|
+
* \[[`18aa5d6640`](https://github.com/nodejs/node/commit/18aa5d6640)] - **test**: split wasi poll test for windows (Hüseyin Açacak) [#52538](https://github.com/nodejs/node/pull/52538)
|
|
167
|
+
* \[[`e34e0a9ba1`](https://github.com/nodejs/node/commit/e34e0a9ba1)] - **test**: write tests for assertIsArray http2 util (Sinan Sonmez (Chaush)) [#52511](https://github.com/nodejs/node/pull/52511)
|
|
168
|
+
* \[[`e247a61d15`](https://github.com/nodejs/node/commit/e247a61d15)] - **(SEMVER-MINOR)** **test\_runner**: add --test-skip-pattern cli option (Aviv Keller) [#52529](https://github.com/nodejs/node/pull/52529)
|
|
169
|
+
* \[[`e066ba2ae4`](https://github.com/nodejs/node/commit/e066ba2ae4)] - **test\_runner**: better error handing for test hook (Alex Yang) [#52401](https://github.com/nodejs/node/pull/52401)
|
|
170
|
+
* \[[`328755341d`](https://github.com/nodejs/node/commit/328755341d)] - **test\_runner**: don't exceed call stack when filtering (Colin Ihrig) [#52488](https://github.com/nodejs/node/pull/52488)
|
|
171
|
+
* \[[`b4ccb6c626`](https://github.com/nodejs/node/commit/b4ccb6c626)] - **test\_runner**: move end of work check to finalize() (Colin Ihrig) [#52488](https://github.com/nodejs/node/pull/52488)
|
|
172
|
+
* \[[`2ef9380472`](https://github.com/nodejs/node/commit/2ef9380472)] - **tools**: update lint-md-dependencies to rollup\@4.17.0 (Node.js GitHub Bot) [#52729](https://github.com/nodejs/node/pull/52729)
|
|
173
|
+
* \[[`db421bdefc`](https://github.com/nodejs/node/commit/db421bdefc)] - **tools**: take co-authors into account in `find-inactive-collaborators` (Antoine du Hamel) [#52669](https://github.com/nodejs/node/pull/52669)
|
|
174
|
+
* \[[`01103a85cb`](https://github.com/nodejs/node/commit/01103a85cb)] - **tools**: fix invalid escape sequence in mkssldef (Michaël Zasso) [#52624](https://github.com/nodejs/node/pull/52624)
|
|
175
|
+
* \[[`382d951b01`](https://github.com/nodejs/node/commit/382d951b01)] - **tools**: update lint-md-dependencies to rollup\@4.15.0 (Node.js GitHub Bot) [#52617](https://github.com/nodejs/node/pull/52617)
|
|
176
|
+
* \[[`f9ddd77ff3`](https://github.com/nodejs/node/commit/f9ddd77ff3)] - **tools**: add lint rule to keep primordials in ASCII order (Antoine du Hamel) [#52592](https://github.com/nodejs/node/pull/52592)
|
|
177
|
+
* \[[`552642a498`](https://github.com/nodejs/node/commit/552642a498)] - **tools**: update lint-md-dependencies (Rich Trott) [#52581](https://github.com/nodejs/node/pull/52581)
|
|
178
|
+
* \[[`df61feb655`](https://github.com/nodejs/node/commit/df61feb655)] - **tools**: fix heading spaces for osx-entitlements.plist (Jackson Tian) [#52561](https://github.com/nodejs/node/pull/52561)
|
|
179
|
+
* \[[`6b4bbfbb1f`](https://github.com/nodejs/node/commit/6b4bbfbb1f)] - **tools**: update lint-md-dependencies to rollup\@4.14.2 vfile-reporter\@8.1.1 (Node.js GitHub Bot) [#52518](https://github.com/nodejs/node/pull/52518)
|
|
180
|
+
* \[[`4e5ce3afb7`](https://github.com/nodejs/node/commit/4e5ce3afb7)] - **tools**: use stylistic ESLint plugin for formatting (Michaël Zasso) [#50714](https://github.com/nodejs/node/pull/50714)
|
|
181
|
+
* \[[`15c5686381`](https://github.com/nodejs/node/commit/15c5686381)] - **tools**: update minimatch index path (Marco Ippolito) [#52523](https://github.com/nodejs/node/pull/52523)
|
|
182
|
+
* \[[`8ae1507ae1`](https://github.com/nodejs/node/commit/8ae1507ae1)] - **tools**: add a linter for README lists (Antoine du Hamel) [#52476](https://github.com/nodejs/node/pull/52476)
|
|
183
|
+
* \[[`0b970316bc`](https://github.com/nodejs/node/commit/0b970316bc)] - **typings**: fix invalid JSDoc declarations (Yagiz Nizipli) [#52659](https://github.com/nodejs/node/pull/52659)
|
|
184
|
+
* \[[`9b18df9dcb`](https://github.com/nodejs/node/commit/9b18df9dcb)] - **(SEMVER-MINOR)** **url**: implement parse method for safer URL parsing (Ali Hassan) [#52280](https://github.com/nodejs/node/pull/52280)
|
|
185
|
+
* \[[`d33131af3a`](https://github.com/nodejs/node/commit/d33131af3a)] - **vm**: fix ASCII-betical order (Aviv Keller) [#52686](https://github.com/nodejs/node/pull/52686)
|
|
186
|
+
|
|
40
187
|
<a id="22.0.0"></a>
|
|
41
188
|
|
|
42
189
|
## 2024-04-24, Version 22.0.0 (Current), @RafaelGSS and @marco-ippolito
|
package/LICENSE
CHANGED
|
@@ -136,7 +136,7 @@ The externally maintained libraries used by Node.js are:
|
|
|
136
136
|
|
|
137
137
|
COPYRIGHT AND PERMISSION NOTICE
|
|
138
138
|
|
|
139
|
-
Copyright © 2016-
|
|
139
|
+
Copyright © 2016-2024 Unicode, Inc.
|
|
140
140
|
|
|
141
141
|
NOTICE TO USER: Carefully read the following legal agreement. BY
|
|
142
142
|
DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
|
|
@@ -172,6 +172,8 @@ The externally maintained libraries used by Node.js are:
|
|
|
172
172
|
dealings in these Data Files or Software without prior written
|
|
173
173
|
authorization of the copyright holder.
|
|
174
174
|
|
|
175
|
+
SPDX-License-Identifier: Unicode-3.0
|
|
176
|
+
|
|
175
177
|
----------------------------------------------------------------------
|
|
176
178
|
|
|
177
179
|
Third-Party Software Licenses
|
|
@@ -2376,35 +2378,3 @@ The externally maintained libraries used by Node.js are:
|
|
|
2376
2378
|
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
2377
2379
|
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2378
2380
|
"""
|
|
2379
|
-
|
|
2380
|
-
- base64, located at deps/base64/base64/, is licensed as follows:
|
|
2381
|
-
"""
|
|
2382
|
-
Copyright (c) 2005-2007, Nick Galbreath
|
|
2383
|
-
Copyright (c) 2015-2018, Wojciech Muła
|
|
2384
|
-
Copyright (c) 2016-2017, Matthieu Darbois
|
|
2385
|
-
Copyright (c) 2013-2022, Alfred Klomp
|
|
2386
|
-
All rights reserved.
|
|
2387
|
-
|
|
2388
|
-
Redistribution and use in source and binary forms, with or without
|
|
2389
|
-
modification, are permitted provided that the following conditions are
|
|
2390
|
-
met:
|
|
2391
|
-
|
|
2392
|
-
- Redistributions of source code must retain the above copyright notice,
|
|
2393
|
-
this list of conditions and the following disclaimer.
|
|
2394
|
-
|
|
2395
|
-
- Redistributions in binary form must reproduce the above copyright
|
|
2396
|
-
notice, this list of conditions and the following disclaimer in the
|
|
2397
|
-
documentation and/or other materials provided with the distribution.
|
|
2398
|
-
|
|
2399
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
|
2400
|
-
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
2401
|
-
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
|
2402
|
-
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
2403
|
-
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
2404
|
-
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
|
2405
|
-
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
2406
|
-
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
2407
|
-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
2408
|
-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
2409
|
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2410
|
-
"""
|
package/README.md
CHANGED
|
@@ -209,8 +209,6 @@ For information about the governance of the Node.js project, see
|
|
|
209
209
|
**Beth Griggs** <<bethanyngriggs@gmail.com>> (she/her)
|
|
210
210
|
* [bnoordhuis](https://github.com/bnoordhuis) -
|
|
211
211
|
**Ben Noordhuis** <<info@bnoordhuis.nl>>
|
|
212
|
-
* [ChALkeR](https://github.com/ChALkeR) -
|
|
213
|
-
**Сковорода Никита Андреевич** <<chalkerx@gmail.com>> (he/him)
|
|
214
212
|
* [cjihrig](https://github.com/cjihrig) -
|
|
215
213
|
**Colin Ihrig** <<cjihrig@gmail.com>> (he/him)
|
|
216
214
|
* [codebytere](https://github.com/codebytere) -
|
|
@@ -219,8 +217,6 @@ For information about the governance of the Node.js project, see
|
|
|
219
217
|
**Danielle Adams** <<adamzdanielle@gmail.com>> (she/her)
|
|
220
218
|
* [MylesBorins](https://github.com/MylesBorins) -
|
|
221
219
|
**Myles Borins** <<myles.borins@gmail.com>> (he/him)
|
|
222
|
-
* [TimothyGu](https://github.com/TimothyGu) -
|
|
223
|
-
**Tiancheng "Timothy" Gu** <<timothygu99@gmail.com>> (he/him)
|
|
224
220
|
* [Trott](https://github.com/Trott) -
|
|
225
221
|
**Rich Trott** <<rtrott@gmail.com>> (he/him)
|
|
226
222
|
|
|
@@ -232,6 +228,8 @@ For information about the governance of the Node.js project, see
|
|
|
232
228
|
|
|
233
229
|
* [addaleax](https://github.com/addaleax) -
|
|
234
230
|
**Anna Henningsen** <<anna@addaleax.net>> (she/her)
|
|
231
|
+
* [ChALkeR](https://github.com/ChALkeR) -
|
|
232
|
+
**Сковорода Никита Андреевич** <<chalkerx@gmail.com>> (he/him)
|
|
235
233
|
* [chrisdickinson](https://github.com/chrisdickinson) -
|
|
236
234
|
**Chris Dickinson** <<christopher.s.dickinson@gmail.com>>
|
|
237
235
|
* [danbev](https://github.com/danbev) -
|
|
@@ -274,6 +272,8 @@ For information about the governance of the Node.js project, see
|
|
|
274
272
|
**Shigeki Ohtsu** <<ohtsu@ohtsu.org>> (he/him)
|
|
275
273
|
* [thefourtheye](https://github.com/thefourtheye) -
|
|
276
274
|
**Sakthipriyan Vairamani** <<thechargingvolcano@gmail.com>> (he/him)
|
|
275
|
+
* [TimothyGu](https://github.com/TimothyGu) -
|
|
276
|
+
**Tiancheng "Timothy" Gu** <<timothygu99@gmail.com>> (he/him)
|
|
277
277
|
* [trevnorris](https://github.com/trevnorris) -
|
|
278
278
|
**Trevor Norris** <<trev.norris@gmail.com>>
|
|
279
279
|
|
|
@@ -291,12 +291,8 @@ For information about the governance of the Node.js project, see
|
|
|
291
291
|
**Antoine du Hamel** <<duhamelantoine1995@gmail.com>> (he/him)
|
|
292
292
|
* [anonrig](https://github.com/anonrig) -
|
|
293
293
|
**Yagiz Nizipli** <<yagiz.nizipli@sentry.io>> (he/him)
|
|
294
|
-
* [antsmartian](https://github.com/antsmartian) -
|
|
295
|
-
**Anto Aravinth** <<anto.aravinth.cse@gmail.com>> (he/him)
|
|
296
294
|
* [apapirovski](https://github.com/apapirovski) -
|
|
297
295
|
**Anatoli Papirovski** <<apapirovski@mac.com>> (he/him)
|
|
298
|
-
* [AshCripps](https://github.com/AshCripps) -
|
|
299
|
-
**Ash Cripps** <<email@ashleycripps.co.uk>>
|
|
300
296
|
* [atlowChemi](https://github.com/atlowChemi) -
|
|
301
297
|
**Chemi Atlow** <<chemi@atlow.co.il>> (he/him)
|
|
302
298
|
* [Ayase-252](https://github.com/Ayase-252) -
|
|
@@ -307,8 +303,6 @@ For information about the governance of the Node.js project, see
|
|
|
307
303
|
**Benjamin Gruenbaum** <<benjamingr@gmail.com>>
|
|
308
304
|
* [BethGriggs](https://github.com/BethGriggs) -
|
|
309
305
|
**Beth Griggs** <<bethanyngriggs@gmail.com>> (she/her)
|
|
310
|
-
* [bmeck](https://github.com/bmeck) -
|
|
311
|
-
**Bradley Farias** <<bradley.meck@gmail.com>>
|
|
312
306
|
* [bnb](https://github.com/bnb) -
|
|
313
307
|
**Tierney Cyren** <<hello@bnb.im>> (they/them)
|
|
314
308
|
* [bnoordhuis](https://github.com/bnoordhuis) -
|
|
@@ -317,8 +311,6 @@ For information about the governance of the Node.js project, see
|
|
|
317
311
|
**Ruben Bridgewater** <<ruben@bridgewater.de>> (he/him)
|
|
318
312
|
* [cclauss](https://github.com/cclauss) -
|
|
319
313
|
**Christian Clauss** <<cclauss@me.com>> (he/him)
|
|
320
|
-
* [ChALkeR](https://github.com/ChALkeR) -
|
|
321
|
-
**Сковорода Никита Андреевич** <<chalkerx@gmail.com>> (he/him)
|
|
322
314
|
* [cjihrig](https://github.com/cjihrig) -
|
|
323
315
|
**Colin Ihrig** <<cjihrig@gmail.com>> (he/him)
|
|
324
316
|
* [codebytere](https://github.com/codebytere) -
|
|
@@ -327,26 +319,22 @@ For information about the governance of the Node.js project, see
|
|
|
327
319
|
**Kohei Ueno** <<kohei.ueno119@gmail.com>> (he/him)
|
|
328
320
|
* [daeyeon](https://github.com/daeyeon) -
|
|
329
321
|
**Daeyeon Jeong** <<daeyeon.dev@gmail.com>> (he/him)
|
|
330
|
-
* [danbev](https://github.com/danbev) -
|
|
331
|
-
**Daniel Bevenius** <<daniel.bevenius@gmail.com>> (he/him)
|
|
332
322
|
* [danielleadams](https://github.com/danielleadams) -
|
|
333
323
|
**Danielle Adams** <<adamzdanielle@gmail.com>> (she/her)
|
|
334
324
|
* [debadree25](https://github.com/debadree25) -
|
|
335
325
|
**Debadree Chatterjee** <<debadree333@gmail.com>> (he/him)
|
|
336
326
|
* [deokjinkim](https://github.com/deokjinkim) -
|
|
337
327
|
**Deokjin Kim** <<deokjin81.kim@gmail.com>> (he/him)
|
|
338
|
-
* [devsnek](https://github.com/devsnek) -
|
|
339
|
-
**Gus Caplan** <<me@gus.host>> (they/them)
|
|
340
328
|
* [edsadr](https://github.com/edsadr) -
|
|
341
329
|
**Adrian Estrada** <<edsadr@gmail.com>> (he/him)
|
|
342
330
|
* [erickwendel](https://github.com/erickwendel) -
|
|
343
331
|
**Erick Wendel** <<erick.workspace@gmail.com>> (he/him)
|
|
344
332
|
* [Ethan-Arrowood](https://github.com/Ethan-Arrowood) -
|
|
345
333
|
**Ethan Arrowood** <<ethan@arrowood.dev>> (he/him)
|
|
346
|
-
* [fhinkel](https://github.com/fhinkel) -
|
|
347
|
-
**Franziska Hinkelmann** <<franziska.hinkelmann@gmail.com>> (she/her)
|
|
348
334
|
* [F3n67u](https://github.com/F3n67u) -
|
|
349
335
|
**Feng Yu** <<F3n67u@outlook.com>> (he/him)
|
|
336
|
+
* [fhinkel](https://github.com/fhinkel) -
|
|
337
|
+
**Franziska Hinkelmann** <<franziska.hinkelmann@gmail.com>> (she/her)
|
|
350
338
|
* [Flarna](https://github.com/Flarna) -
|
|
351
339
|
**Gerhard Stöbich** <<deb2001-github@yahoo.de>> (he/they)
|
|
352
340
|
* [gabrielschulhof](https://github.com/gabrielschulhof) -
|
|
@@ -417,8 +405,6 @@ For information about the governance of the Node.js project, see
|
|
|
417
405
|
**Moshe Atlow** <<moshe@atlow.co.il>> (he/him)
|
|
418
406
|
* [MrJithil](https://github.com/MrJithil) -
|
|
419
407
|
**Jithil P Ponnan** <<jithil@outlook.com>> (he/him)
|
|
420
|
-
* [mscdex](https://github.com/mscdex) -
|
|
421
|
-
**Brian White** <<mscdex@mscdex.net>>
|
|
422
408
|
* [MylesBorins](https://github.com/MylesBorins) -
|
|
423
409
|
**Myles Borins** <<myles.borins@gmail.com>> (he/him)
|
|
424
410
|
* [ovflowd](https://github.com/ovflowd) -
|
|
@@ -429,22 +415,16 @@ For information about the governance of the Node.js project, see
|
|
|
429
415
|
**Stephen Belanger** <<admin@stephenbelanger.com>> (he/him)
|
|
430
416
|
* [RafaelGSS](https://github.com/RafaelGSS) -
|
|
431
417
|
**Rafael Gonzaga** <<rafael.nunu@hotmail.com>> (he/him)
|
|
432
|
-
* [rluvaton](https://github.com/rluvaton) -
|
|
433
|
-
**Raz Luvaton** <<rluvaton@gmail.com>> (he/him)
|
|
434
418
|
* [richardlau](https://github.com/richardlau) -
|
|
435
419
|
**Richard Lau** <<rlau@redhat.com>>
|
|
436
|
-
* [
|
|
437
|
-
**
|
|
420
|
+
* [rluvaton](https://github.com/rluvaton) -
|
|
421
|
+
**Raz Luvaton** <<rluvaton@gmail.com>> (he/him)
|
|
438
422
|
* [ronag](https://github.com/ronag) -
|
|
439
423
|
**Robert Nagy** <<ronagy@icloud.com>>
|
|
440
424
|
* [ruyadorno](https://github.com/ruyadorno) -
|
|
441
425
|
**Ruy Adorno** <<ruy@vlt.sh>> (he/him)
|
|
442
|
-
* [ryzokuken](https://github.com/ryzokuken) -
|
|
443
|
-
**Ujjwal Sharma** <<ryzokuken@disroot.org>> (he/him)
|
|
444
426
|
* [santigimeno](https://github.com/santigimeno) -
|
|
445
427
|
**Santiago Gimeno** <<santiago.gimeno@gmail.com>>
|
|
446
|
-
* [shisama](https://github.com/shisama) -
|
|
447
|
-
**Masashi Hirano** <<shisama07@gmail.com>> (he/him)
|
|
448
428
|
* [ShogunPanda](https://github.com/ShogunPanda) -
|
|
449
429
|
**Paolo Insogna** <<paolo@cowtech.it>> (he/him)
|
|
450
430
|
* [srl295](https://github.com/srl295) -
|
|
@@ -455,8 +435,6 @@ For information about the governance of the Node.js project, see
|
|
|
455
435
|
**Michaël Zasso** <<targos@protonmail.com>> (he/him)
|
|
456
436
|
* [theanarkh](https://github.com/theanarkh) -
|
|
457
437
|
**theanarkh** <<theratliter@gmail.com>> (he/him)
|
|
458
|
-
* [TimothyGu](https://github.com/TimothyGu) -
|
|
459
|
-
**Tiancheng "Timothy" Gu** <<timothygu99@gmail.com>> (he/him)
|
|
460
438
|
* [tniessen](https://github.com/tniessen) -
|
|
461
439
|
**Tobias Nießen** <<tniessen@tnie.de>> (he/him)
|
|
462
440
|
* [trivikr](https://github.com/trivikr) -
|
|
@@ -465,8 +443,6 @@ For information about the governance of the Node.js project, see
|
|
|
465
443
|
**Rich Trott** <<rtrott@gmail.com>> (he/him)
|
|
466
444
|
* [UlisesGascon](https://github.com/ulisesgascon) -
|
|
467
445
|
**Ulises Gascón** <<ulisesgascongonzalez@gmail.com>> (he/him)
|
|
468
|
-
* [vdeturckheim](https://github.com/vdeturckheim) -
|
|
469
|
-
**Vladimir de Turckheim** <<vlad2t@hotmail.com>> (he/him)
|
|
470
446
|
* [vmoroz](https://github.com/vmoroz) -
|
|
471
447
|
**Vladimir Morozov** <<vmorozov@microsoft.com>> (he/him)
|
|
472
448
|
* [VoltrexKeyva](https://github.com/VoltrexKeyva) -
|
|
@@ -477,10 +453,10 @@ For information about the governance of the Node.js project, see
|
|
|
477
453
|
**Khaidi Chu** <<i@2333.moe>> (he/him)
|
|
478
454
|
* [yashLadha](https://github.com/yashLadha) -
|
|
479
455
|
**Yash Ladha** <<yash@yashladha.in>> (he/him)
|
|
480
|
-
* [ZYSzys](https://github.com/ZYSzys) -
|
|
481
|
-
**Yongsheng Zhang** <<zyszys98@gmail.com>> (he/him)
|
|
482
456
|
* [zcbenz](https://github.com/zcbenz) -
|
|
483
457
|
**Cheng Zhao** <<zcbenz@gmail.com>> (he/him)
|
|
458
|
+
* [ZYSzys](https://github.com/ZYSzys) -
|
|
459
|
+
**Yongsheng Zhang** <<zyszys98@gmail.com>> (he/him)
|
|
484
460
|
|
|
485
461
|
<details>
|
|
486
462
|
|
|
@@ -495,14 +471,20 @@ For information about the governance of the Node.js project, see
|
|
|
495
471
|
**Aleksei Koziatinskii** <<ak239spb@gmail.com>>
|
|
496
472
|
* [andrasq](https://github.com/andrasq) -
|
|
497
473
|
**Andras** <<andras@kinvey.com>>
|
|
498
|
-
* [AnnaMag](https://github.com/AnnaMag) -
|
|
499
|
-
**Anna M. Kedzierska** <<anna.m.kedzierska@gmail.com>>
|
|
500
474
|
* [AndreasMadsen](https://github.com/AndreasMadsen) -
|
|
501
475
|
**Andreas Madsen** <<amwebdk@gmail.com>> (he/him)
|
|
476
|
+
* [AnnaMag](https://github.com/AnnaMag) -
|
|
477
|
+
**Anna M. Kedzierska** <<anna.m.kedzierska@gmail.com>>
|
|
478
|
+
* [antsmartian](https://github.com/antsmartian) -
|
|
479
|
+
**Anto Aravinth** <<anto.aravinth.cse@gmail.com>> (he/him)
|
|
502
480
|
* [aqrln](https://github.com/aqrln) -
|
|
503
481
|
**Alexey Orlenko** <<eaglexrlnk@gmail.com>> (he/him)
|
|
482
|
+
* [AshCripps](https://github.com/AshCripps) -
|
|
483
|
+
**Ash Cripps** <<email@ashleycripps.co.uk>>
|
|
504
484
|
* [bcoe](https://github.com/bcoe) -
|
|
505
485
|
**Ben Coe** <<bencoe@gmail.com>> (he/him)
|
|
486
|
+
* [bmeck](https://github.com/bmeck) -
|
|
487
|
+
**Bradley Farias** <<bradley.meck@gmail.com>>
|
|
506
488
|
* [bmeurer](https://github.com/bmeurer) -
|
|
507
489
|
**Benedikt Meurer** <<benedikt.meurer@gmail.com>>
|
|
508
490
|
* [boneskull](https://github.com/boneskull) -
|
|
@@ -513,16 +495,22 @@ For information about the governance of the Node.js project, see
|
|
|
513
495
|
**Bartosz Sosnowski** <<bartosz@janeasystems.com>>
|
|
514
496
|
* [calvinmetcalf](https://github.com/calvinmetcalf) -
|
|
515
497
|
**Calvin Metcalf** <<calvin.metcalf@gmail.com>>
|
|
498
|
+
* [ChALkeR](https://github.com/ChALkeR) -
|
|
499
|
+
**Сковорода Никита Андреевич** <<chalkerx@gmail.com>> (he/him)
|
|
516
500
|
* [chrisdickinson](https://github.com/chrisdickinson) -
|
|
517
501
|
**Chris Dickinson** <<christopher.s.dickinson@gmail.com>>
|
|
518
502
|
* [claudiorodriguez](https://github.com/claudiorodriguez) -
|
|
519
503
|
**Claudio Rodriguez** <<cjrodr@yahoo.com>>
|
|
504
|
+
* [danbev](https://github.com/danbev) -
|
|
505
|
+
**Daniel Bevenius** <<daniel.bevenius@gmail.com>> (he/him)
|
|
520
506
|
* [DavidCai1993](https://github.com/DavidCai1993) -
|
|
521
507
|
**David Cai** <<davidcai1993@yahoo.com>> (he/him)
|
|
522
508
|
* [davisjam](https://github.com/davisjam) -
|
|
523
509
|
**Jamie Davis** <<davisjam@vt.edu>> (he/him)
|
|
524
510
|
* [devnexen](https://github.com/devnexen) -
|
|
525
511
|
**David Carlier** <<devnexen@gmail.com>>
|
|
512
|
+
* [devsnek](https://github.com/devsnek) -
|
|
513
|
+
**Gus Caplan** <<me@gus.host>> (they/them)
|
|
526
514
|
* [digitalinfinity](https://github.com/digitalinfinity) -
|
|
527
515
|
**Hitesh Kanwathirtha** <<digitalinfinity@gmail.com>> (he/him)
|
|
528
516
|
* [dmabupt](https://github.com/dmabupt) -
|
|
@@ -617,6 +605,8 @@ For information about the governance of the Node.js project, see
|
|
|
617
605
|
**Christopher Monsanto** <<chris@monsan.to>>
|
|
618
606
|
* [MoonBall](https://github.com/MoonBall) -
|
|
619
607
|
**Chen Gang** <<gangc.cxy@foxmail.com>>
|
|
608
|
+
* [mscdex](https://github.com/mscdex) -
|
|
609
|
+
**Brian White** <<mscdex@mscdex.net>>
|
|
620
610
|
* [not-an-aardvark](https://github.com/not-an-aardvark) -
|
|
621
611
|
**Teddy Katz** <<teddy.katz@gmail.com>> (he/him)
|
|
622
612
|
* [ofrobots](https://github.com/ofrobots) -
|
|
@@ -651,6 +641,8 @@ For information about the governance of the Node.js project, see
|
|
|
651
641
|
**Refael Ackermann (רפאל פלחי)** <<refack@gmail.com>> (he/him/הוא/אתה)
|
|
652
642
|
* [rexagod](https://github.com/rexagod) -
|
|
653
643
|
**Pranshu Srivastava** <<rexagod@gmail.com>> (he/him)
|
|
644
|
+
* [rickyes](https://github.com/rickyes) -
|
|
645
|
+
**Ricky Zhou** <<0x19951125@gmail.com>> (he/him)
|
|
654
646
|
* [rlidwka](https://github.com/rlidwka) -
|
|
655
647
|
**Alex Kocharin** <<alex@kocharin.ru>>
|
|
656
648
|
* [rmg](https://github.com/rmg) -
|
|
@@ -667,6 +659,8 @@ For information about the governance of the Node.js project, see
|
|
|
667
659
|
**Sam Ruby** <<rubys@intertwingly.net>>
|
|
668
660
|
* [rvagg](https://github.com/rvagg) -
|
|
669
661
|
**Rod Vagg** <<rod@vagg.org>>
|
|
662
|
+
* [ryzokuken](https://github.com/ryzokuken) -
|
|
663
|
+
**Ujjwal Sharma** <<ryzokuken@disroot.org>> (he/him)
|
|
670
664
|
* [saghul](https://github.com/saghul) -
|
|
671
665
|
**Saúl Ibarra Corretgé** <<s@saghul.net>>
|
|
672
666
|
* [sam-github](https://github.com/sam-github) -
|
|
@@ -677,6 +671,8 @@ For information about the governance of the Node.js project, see
|
|
|
677
671
|
**Nikolai Vavilov** <<vvnicholas@gmail.com>>
|
|
678
672
|
* [shigeki](https://github.com/shigeki) -
|
|
679
673
|
**Shigeki Ohtsu** <<ohtsu@ohtsu.org>> (he/him)
|
|
674
|
+
* [shisama](https://github.com/shisama) -
|
|
675
|
+
**Masashi Hirano** <<shisama07@gmail.com>> (he/him)
|
|
680
676
|
* [silverwind](https://github.com/silverwind) -
|
|
681
677
|
**Roman Reiss** <<me@silverwind.io>>
|
|
682
678
|
* [starkwang](https://github.com/starkwang) -
|
|
@@ -689,10 +685,14 @@ For information about the governance of the Node.js project, see
|
|
|
689
685
|
**Sakthipriyan Vairamani** <<thechargingvolcano@gmail.com>> (he/him)
|
|
690
686
|
* [thlorenz](https://github.com/thlorenz) -
|
|
691
687
|
**Thorsten Lorenz** <<thlorenz@gmx.de>>
|
|
688
|
+
* [TimothyGu](https://github.com/TimothyGu) -
|
|
689
|
+
**Tiancheng "Timothy" Gu** <<timothygu99@gmail.com>> (he/him)
|
|
692
690
|
* [trevnorris](https://github.com/trevnorris) -
|
|
693
691
|
**Trevor Norris** <<trev.norris@gmail.com>>
|
|
694
692
|
* [tunniclm](https://github.com/tunniclm) -
|
|
695
693
|
**Mike Tunnicliffe** <<m.j.tunnicliffe@gmail.com>>
|
|
694
|
+
* [vdeturckheim](https://github.com/vdeturckheim) -
|
|
695
|
+
**Vladimir de Turckheim** <<vlad2t@hotmail.com>> (he/him)
|
|
696
696
|
* [vkurchatkin](https://github.com/vkurchatkin) -
|
|
697
697
|
**Vladimir Kurchatkin** <<vladimir.kurchatkin@gmail.com>>
|
|
698
698
|
* [vsemozhetbyt](https://github.com/vsemozhetbyt) -
|
|
@@ -741,10 +741,12 @@ maintaining the Node.js project.
|
|
|
741
741
|
**Mert Can Altin** <<mertgold60@gmail.com>>
|
|
742
742
|
* [Mesteery](https://github.com/Mesteery) -
|
|
743
743
|
**Mestery** <<mestery@protonmail.com>> (he/him)
|
|
744
|
-
* [preveen-stack](https://github.com/preveen-stack) -
|
|
745
|
-
**Preveen Padmanabhan** <<wide4head@gmail.com>> (he/him)
|
|
746
744
|
* [PoojaDurgad](https://github.com/PoojaDurgad) -
|
|
747
745
|
**Pooja Durgad** <<Pooja.D.P@ibm.com>>
|
|
746
|
+
* [preveen-stack](https://github.com/preveen-stack) -
|
|
747
|
+
**Preveen Padmanabhan** <<wide4head@gmail.com>> (he/him)
|
|
748
|
+
* [RedYetiDev](https://github.com/redyetidev) -
|
|
749
|
+
**Aviv Keller** <<redyetidev@gmail.com>> (they/them)
|
|
748
750
|
* [VoltrexKeyva](https://github.com/VoltrexKeyva) -
|
|
749
751
|
**Mohammed Keyvanzadeh** <<mohammadkeyvanzade94@gmail.com>> (he/him)
|
|
750
752
|
|
package/bin/node
CHANGED
|
Binary file
|
package/include/node/common.gypi
CHANGED
package/include/node/config.gypi
CHANGED
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
'force_dynamic_crt': 0,
|
|
14
14
|
'gas_version': '2.35',
|
|
15
15
|
'host_arch': 'arm64',
|
|
16
|
-
'icu_data_in': '../../deps/icu-tmp/
|
|
16
|
+
'icu_data_in': '../../deps/icu-tmp/icudt75l.dat',
|
|
17
17
|
'icu_endianness': 'l',
|
|
18
18
|
'icu_gyp_path': 'tools/icu/icu-generic.gyp',
|
|
19
19
|
'icu_path': 'deps/icu-small',
|
|
20
20
|
'icu_small': 'false',
|
|
21
|
-
'icu_ver_major': '
|
|
21
|
+
'icu_ver_major': '75',
|
|
22
22
|
'is_debug': 0,
|
|
23
23
|
'libdir': 'lib',
|
|
24
24
|
'llvm_version': '0.0',
|
package/include/node/node.h
CHANGED
|
@@ -537,6 +537,7 @@ class EmbedderSnapshotData {
|
|
|
537
537
|
// If the snapshot is invalid, this returns an empty pointer.
|
|
538
538
|
static Pointer FromFile(FILE* in);
|
|
539
539
|
static Pointer FromBlob(const std::vector<char>& in);
|
|
540
|
+
static Pointer FromBlob(std::string_view in);
|
|
540
541
|
|
|
541
542
|
// Write this EmbedderSnapshotData object to an output file.
|
|
542
543
|
// Calling this method will not close the FILE* handle.
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -442,7 +442,11 @@ option set.
|
|
|
442
442
|
.
|
|
443
443
|
.It Fl -test-shard
|
|
444
444
|
Test suite shard to execute in a format of <index>/<total>.
|
|
445
|
-
|
|
445
|
+
.
|
|
446
|
+
.It Fl -test-skip-pattern
|
|
447
|
+
A regular expression that configures the test runner to skip tests
|
|
448
|
+
whose name matches the provided pattern.
|
|
449
|
+
.
|
|
446
450
|
.It Fl -test-timeout
|
|
447
451
|
A number of milliseconds the test execution will fail after.
|
|
448
452
|
.
|