node-linux-arm64 18.13.0 → 18.14.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 +287 -0
- package/LICENSE +262 -0
- package/README.md +9 -4
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +1 -1
- package/include/node/js_native_api.h +1 -1
- package/include/node/node_version.h +1 -1
- package/package.json +1 -1
- package/share/man/man1/node.1 +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
</tr>
|
|
10
10
|
<tr>
|
|
11
11
|
<td>
|
|
12
|
+
<a href="#18.14.0">18.14.0</a><br/>
|
|
12
13
|
<a href="#18.13.0">18.13.0</a><br/>
|
|
13
14
|
<a href="#18.12.1">18.12.1</a><br/>
|
|
14
15
|
<a href="#18.12.0">18.12.0</a><br/>
|
|
@@ -51,6 +52,292 @@
|
|
|
51
52
|
* [io.js](CHANGELOG_IOJS.md)
|
|
52
53
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
53
54
|
|
|
55
|
+
<a id="18.14.0"></a>
|
|
56
|
+
|
|
57
|
+
## 2023-02-02, Version 18.14.0 'Hydrogen' (LTS), @BethGriggs prepared by @juanarbol
|
|
58
|
+
|
|
59
|
+
### Notable changes
|
|
60
|
+
|
|
61
|
+
#### Updated npm to 9.3.1
|
|
62
|
+
|
|
63
|
+
Based on the [list of guidelines we've established on integrating `npm` and `node`](https://github.com/npm/cli/wiki/Integrating-with-node),
|
|
64
|
+
here is a grouped list of the breaking changes with the reasoning as to why they
|
|
65
|
+
fit within the guidelines linked above. Note that all the breaking changes were
|
|
66
|
+
made in [9.0.0](https://github.com/npm/cli/releases/tag/v9.0.0).
|
|
67
|
+
All subsequent minor and patch releases after `npm@9.0.0` do not contain any
|
|
68
|
+
breaking changes.
|
|
69
|
+
|
|
70
|
+
##### Engines
|
|
71
|
+
|
|
72
|
+
> Explanation: the node engines supported by `npm@9` make it safe to allow `npm@9` as the default in any LTS version of `14` or `16`, as well as anything later than or including `18.0.0`
|
|
73
|
+
|
|
74
|
+
* `npm` is now compatible with the following semver range for node: `^14.17.0 || ^16.13.0 || >=18.0.0`
|
|
75
|
+
|
|
76
|
+
##### Filesystem
|
|
77
|
+
|
|
78
|
+
> Explanation: when run as root previous versions of npm attempted to manage file ownership automatically on the user's behalf. this behavior was problematic in many cases and has been removed in favor of allowing users to manage their own filesystem permissions
|
|
79
|
+
|
|
80
|
+
* `npm` will no longer attempt to modify ownership of files it creates.
|
|
81
|
+
|
|
82
|
+
##### Auth
|
|
83
|
+
|
|
84
|
+
> Explanation: any errors thrown from users having unsupported auth configurations will show `npm config fix` in the remediation instructions, which will allow the user to automatically have their auth config fixed.
|
|
85
|
+
|
|
86
|
+
* The presence of auth related settings that are not scoped to a specific
|
|
87
|
+
registry found in a config file is no longer supported and will throw errors.
|
|
88
|
+
|
|
89
|
+
##### Login
|
|
90
|
+
|
|
91
|
+
> Explanation: the default `auth-type` has changed and users can opt back into the old behavior with `npm config set auth-type=legacy`. `login` and `adduser` have also been seperated making each command more closely match it's name instead of being aliases for each other.
|
|
92
|
+
|
|
93
|
+
* Legacy auth types `sso`, `saml` & `legacy` have been consolidated into `"legacy"`.
|
|
94
|
+
* `auth-type` defaults to `"web"`
|
|
95
|
+
* `login` and `adduser` are now separate commands that send different data to the registry.
|
|
96
|
+
* `auth-type` config values `web` and `legacy` only try their respective methods,
|
|
97
|
+
npm no longer tries them all and waits to see which one doesn't fail.
|
|
98
|
+
|
|
99
|
+
##### Tarball Packing
|
|
100
|
+
|
|
101
|
+
> Explanation: previously using multiple ignore/allow lists when packing was an undefined behavior, and now the order of operations is strictly defined when packing a tarball making it easier to follow and should only affect users relying on the previously undefined behavior.
|
|
102
|
+
|
|
103
|
+
* `npm pack` now follows a strict order of operations when applying ignore rules.
|
|
104
|
+
If a `files` array is present in the `package.json`, then rules in `.gitignore`
|
|
105
|
+
and `.npmignore` files from the root will be ignored.
|
|
106
|
+
|
|
107
|
+
##### Display/Debug/Timing Info
|
|
108
|
+
|
|
109
|
+
> Explanation: these changes center around the display of information to the terminal including timing and debug log info. We do not anticipate these changes breaking any existing workflows.
|
|
110
|
+
|
|
111
|
+
* Links generated from git urls will now use `HEAD` instead of `master` as the default ref.
|
|
112
|
+
* `timing` has been removed as a value for `--loglevel`.
|
|
113
|
+
* `--timing` will show timing information regardless of `--loglevel`, except when `--silent`.
|
|
114
|
+
* When run with the `--timing` flag, `npm` now writes timing data to a file
|
|
115
|
+
alongside the debug log data, respecting the `logs-dir` option and falling
|
|
116
|
+
back to `<CACHE>/_logs/` dir, instead of directly inside the cache directory.
|
|
117
|
+
* The timing file data is no longer newline delimited JSON, and instead each run
|
|
118
|
+
will create a uniquely named `<ID>-timing.json` file, with the `<ID>` portion
|
|
119
|
+
being the same as the debug log.
|
|
120
|
+
* `npm` now outputs some json errors on stdout. Previously `npm` would output
|
|
121
|
+
all json formatted errors on stderr, making it difficult to parse as the
|
|
122
|
+
stderr stream usually has logs already written to it.
|
|
123
|
+
|
|
124
|
+
##### Config/Command Deprecations or Removals
|
|
125
|
+
|
|
126
|
+
> Explanation: `install-links` is the only config or command in the list that has an effect on package installs. We fixed a number of issues that came up during prereleases with this change. It will also only be applied to new package trees created without a package-lock.json file. Any install with an existing lock file will not be changed.
|
|
127
|
+
|
|
128
|
+
* Deprecate boolean install flags in favor of `--install-strategy`.
|
|
129
|
+
* `npm config set` will no longer accept deprecated or invalid config options.
|
|
130
|
+
* `install-links` config defaults to `"true"`.
|
|
131
|
+
* `node-version` config has been removed.
|
|
132
|
+
* `npm-version` config has been removed.
|
|
133
|
+
* `npm access` subcommands have been renamed.
|
|
134
|
+
* `npm birthday` has been removed.
|
|
135
|
+
* `npm set-script` has been removed.
|
|
136
|
+
* `npm bin` has been removed (use `npx` or `npm exec` to execute binaries).
|
|
137
|
+
|
|
138
|
+
#### Other notable changes
|
|
139
|
+
|
|
140
|
+
* **doc**:
|
|
141
|
+
* add parallelism note to os.cpus() (Colin Ihrig) [#45895](https://github.com/nodejs/node/pull/45895)
|
|
142
|
+
* **http**:
|
|
143
|
+
* join authorization headers (Marco Ippolito) [#45982](https://github.com/nodejs/node/pull/45982)
|
|
144
|
+
* improved timeout defaults handling (Paolo Insogna) [#45778](https://github.com/nodejs/node/pull/45778)
|
|
145
|
+
* **stream**:
|
|
146
|
+
* implement finished() for ReadableStream and WritableStream (Debadree Chatterjee) [#46205](https://github.com/nodejs/node/pull/46205)
|
|
147
|
+
|
|
148
|
+
### Commits
|
|
149
|
+
|
|
150
|
+
* \[[`1352f08778`](https://github.com/nodejs/node/commit/1352f08778)] - **assert**: remove `assert.snapshot` (Moshe Atlow) [#46112](https://github.com/nodejs/node/pull/46112)
|
|
151
|
+
* \[[`4ee3238643`](https://github.com/nodejs/node/commit/4ee3238643)] - **async\_hooks**: refactor to use `validateObject` (Deokjin Kim) [#46004](https://github.com/nodejs/node/pull/46004)
|
|
152
|
+
* \[[`79e0bf9b64`](https://github.com/nodejs/node/commit/79e0bf9b64)] - **benchmark**: include webstreams benchmark (Rafael Gonzaga) [#45876](https://github.com/nodejs/node/pull/45876)
|
|
153
|
+
* \[[`ed1ac82469`](https://github.com/nodejs/node/commit/ed1ac82469)] - **benchmark,tools**: use os.availableParallelism() (Deokjin Kim) [#46003](https://github.com/nodejs/node/pull/46003)
|
|
154
|
+
* \[[`16ee02f2eb`](https://github.com/nodejs/node/commit/16ee02f2eb)] - **(SEMVER-MINOR)** **buffer**: add buffer.isUtf8 for utf8 validation (Yagiz Nizipli) [#45947](https://github.com/nodejs/node/pull/45947)
|
|
155
|
+
* \[[`3bf2371a57`](https://github.com/nodejs/node/commit/3bf2371a57)] - **build**: add extra semi check (Jiawen Geng) [#46194](https://github.com/nodejs/node/pull/46194)
|
|
156
|
+
* \[[`560ee24157`](https://github.com/nodejs/node/commit/560ee24157)] - **build**: fix arm64 cross-compile from powershell (Stefan Stojanovic) [#45890](https://github.com/nodejs/node/pull/45890)
|
|
157
|
+
* \[[`48e3ad3aca`](https://github.com/nodejs/node/commit/48e3ad3aca)] - **build**: add option to disable shared readonly heap (Anna Henningsen) [#45887](https://github.com/nodejs/node/pull/45887)
|
|
158
|
+
* \[[`52a7887b94`](https://github.com/nodejs/node/commit/52a7887b94)] - **(SEMVER-MINOR)** **crypto**: add CryptoKey Symbol.toStringTag (Filip Skokan) [#46042](https://github.com/nodejs/node/pull/46042)
|
|
159
|
+
* \[[`a558774a40`](https://github.com/nodejs/node/commit/a558774a40)] - **crypto**: add cipher update/final methods encoding validation (vitpavlenko) [#45990](https://github.com/nodejs/node/pull/45990)
|
|
160
|
+
* \[[`599d1dc841`](https://github.com/nodejs/node/commit/599d1dc841)] - **crypto**: ensure auth tag set for chacha20-poly1305 (Ben Noordhuis) [#46185](https://github.com/nodejs/node/pull/46185)
|
|
161
|
+
* \[[`24a101698c`](https://github.com/nodejs/node/commit/24a101698c)] - **crypto**: return correct bit length in KeyObject's asymmetricKeyDetails (Filip Skokan) [#46106](https://github.com/nodejs/node/pull/46106)
|
|
162
|
+
* \[[`2de50fef84`](https://github.com/nodejs/node/commit/2de50fef84)] - **(SEMVER-MINOR)** **crypto**: add KeyObject Symbol.toStringTag (Filip Skokan) [#46043](https://github.com/nodejs/node/pull/46043)
|
|
163
|
+
* \[[`782b6f6f9f`](https://github.com/nodejs/node/commit/782b6f6f9f)] - **crypto**: ensure exported webcrypto EC keys use uncompressed point format (Ben Noordhuis) [#46021](https://github.com/nodejs/node/pull/46021)
|
|
164
|
+
* \[[`7a97f3f43b`](https://github.com/nodejs/node/commit/7a97f3f43b)] - **crypto**: fix CryptoKey prototype WPT (Filip Skokan) [#45857](https://github.com/nodejs/node/pull/45857)
|
|
165
|
+
* \[[`1a8aa50aa2`](https://github.com/nodejs/node/commit/1a8aa50aa2)] - **crypto**: fix CryptoKey WebIDL conformance (Filip Skokan) [#45855](https://github.com/nodejs/node/pull/45855)
|
|
166
|
+
* \[[`c6436450ee`](https://github.com/nodejs/node/commit/c6436450ee)] - **crypto**: fix error when getRandomValues is called without arguments (Filip Skokan) [#45854](https://github.com/nodejs/node/pull/45854)
|
|
167
|
+
* \[[`4cdf0002c5`](https://github.com/nodejs/node/commit/4cdf0002c5)] - **debugger**: refactor console in lib/internal/debugger/inspect.js (Debadree Chatterjee) [#45847](https://github.com/nodejs/node/pull/45847)
|
|
168
|
+
* \[[`b7fe8c70fa`](https://github.com/nodejs/node/commit/b7fe8c70fa)] - **deps**: update simdutf to 3.1.0 (Node.js GitHub Bot) [#46257](https://github.com/nodejs/node/pull/46257)
|
|
169
|
+
* \[[`eaeb870cd7`](https://github.com/nodejs/node/commit/eaeb870cd7)] - **deps**: upgrade npm to 9.3.1 (npm team) [#46242](https://github.com/nodejs/node/pull/46242)
|
|
170
|
+
* \[[`7c03a3d676`](https://github.com/nodejs/node/commit/7c03a3d676)] - **deps**: upgrade npm to 9.3.0 (npm team) [#46193](https://github.com/nodejs/node/pull/46193)
|
|
171
|
+
* \[[`340d76accb`](https://github.com/nodejs/node/commit/340d76accb)] - **deps**: cherrypick simdutf patch (Jiawen Geng) [#46194](https://github.com/nodejs/node/pull/46194)
|
|
172
|
+
* \[[`cce2af4306`](https://github.com/nodejs/node/commit/cce2af4306)] - **deps**: bump googletest to 2023.01.13 (Jiawen Geng) [#46198](https://github.com/nodejs/node/pull/46198)
|
|
173
|
+
* \[[`d251a66bed`](https://github.com/nodejs/node/commit/d251a66bed)] - **deps**: add /deps/\*\*/.github/ to .gitignore (Luigi Pinca) [#46091](https://github.com/nodejs/node/pull/46091)
|
|
174
|
+
* \[[`874054f469`](https://github.com/nodejs/node/commit/874054f469)] - **deps**: add simdutf version to metadata (Mike Roth) [#46145](https://github.com/nodejs/node/pull/46145)
|
|
175
|
+
* \[[`2497702b82`](https://github.com/nodejs/node/commit/2497702b82)] - **deps**: update simdutf to 2.1.0 (Node.js GitHub Bot) [#46128](https://github.com/nodejs/node/pull/46128)
|
|
176
|
+
* \[[`c8492b7f4c`](https://github.com/nodejs/node/commit/c8492b7f4c)] - **deps**: update corepack to 0.15.3 (Node.js GitHub Bot) [#46037](https://github.com/nodejs/node/pull/46037)
|
|
177
|
+
* \[[`d148f357fd`](https://github.com/nodejs/node/commit/d148f357fd)] - **deps**: update simdutf to 2.0.9 (Node.js GitHub Bot) [#45975](https://github.com/nodejs/node/pull/45975)
|
|
178
|
+
* \[[`422a98199c`](https://github.com/nodejs/node/commit/422a98199c)] - **deps**: update to uvwasi 0.0.14 (Colin Ihrig) [#45970](https://github.com/nodejs/node/pull/45970)
|
|
179
|
+
* \[[`7812752db0`](https://github.com/nodejs/node/commit/7812752db0)] - **deps**: fix updater github workflow job (Yagiz Nizipli) [#45972](https://github.com/nodejs/node/pull/45972)
|
|
180
|
+
* \[[`4063cdcef6`](https://github.com/nodejs/node/commit/4063cdcef6)] - _**Revert**_ "**deps**: disable avx512 for simutf on benchmark ci" (Yagiz Nizipli) [#45948](https://github.com/nodejs/node/pull/45948)
|
|
181
|
+
* \[[`64d3e3f3ba`](https://github.com/nodejs/node/commit/64d3e3f3ba)] - **deps**: disable avx512 for simutf on benchmark ci (Yagiz Nizipli) [#45803](https://github.com/nodejs/node/pull/45803)
|
|
182
|
+
* \[[`c9845fc334`](https://github.com/nodejs/node/commit/c9845fc334)] - **deps**: add simdutf dependency (Yagiz Nizipli) [#45803](https://github.com/nodejs/node/pull/45803)
|
|
183
|
+
* \[[`6963c96547`](https://github.com/nodejs/node/commit/6963c96547)] - **deps**: update timezone to 2022g (Node.js GitHub Bot) [#45731](https://github.com/nodejs/node/pull/45731)
|
|
184
|
+
* \[[`874f6c340b`](https://github.com/nodejs/node/commit/874f6c340b)] - **deps**: update undici to 5.14.0 (Node.js GitHub Bot) [#45812](https://github.com/nodejs/node/pull/45812)
|
|
185
|
+
* \[[`7599b913d5`](https://github.com/nodejs/node/commit/7599b913d5)] - **deps**: upgrade npm to 9.2.0 (npm team) [#45780](https://github.com/nodejs/node/pull/45780)
|
|
186
|
+
* \[[`4844935ff3`](https://github.com/nodejs/node/commit/4844935ff3)] - **deps**: upgrade npm to 9.1.3 (npm team) [#45693](https://github.com/nodejs/node/pull/45693)
|
|
187
|
+
* \[[`8dce62c7fe`](https://github.com/nodejs/node/commit/8dce62c7fe)] - **deps**: V8: cherry-pick 5fe919f78321 (Richard Lau) [#45587](https://github.com/nodejs/node/pull/45587)
|
|
188
|
+
* \[[`8de642517e`](https://github.com/nodejs/node/commit/8de642517e)] - **dgram**: sync the old handle state to new handle (theanarkh) [#46041](https://github.com/nodejs/node/pull/46041)
|
|
189
|
+
* \[[`de2b7a9640`](https://github.com/nodejs/node/commit/de2b7a9640)] - **doc**: fix mismatched arguments of `NodeEventTarget` (Deokjin Kim) [#45678](https://github.com/nodejs/node/pull/45678)
|
|
190
|
+
* \[[`6317502d10`](https://github.com/nodejs/node/commit/6317502d10)] - **doc**: update events API example to have runnable code (Deokjin Kim) [#45760](https://github.com/nodejs/node/pull/45760)
|
|
191
|
+
* \[[`a9db45eee1`](https://github.com/nodejs/node/commit/a9db45eee1)] - **doc**: add note to tls docs about secureContext availability (Tim Gerk) [#46224](https://github.com/nodejs/node/pull/46224)
|
|
192
|
+
* \[[`5294371063`](https://github.com/nodejs/node/commit/5294371063)] - **doc**: add text around collaborative expectations (Michael Dawson) [#46121](https://github.com/nodejs/node/pull/46121)
|
|
193
|
+
* \[[`be85d5a6eb`](https://github.com/nodejs/node/commit/be85d5a6eb)] - **doc**: update to match changed `--dns-result-order` default (Mordy Tikotzky) [#46148](https://github.com/nodejs/node/pull/46148)
|
|
194
|
+
* \[[`4f2d9ea6da`](https://github.com/nodejs/node/commit/4f2d9ea6da)] - **doc**: add Node-API media link (Kevin Eady) [#46189](https://github.com/nodejs/node/pull/46189)
|
|
195
|
+
* \[[`9bfd40466f`](https://github.com/nodejs/node/commit/9bfd40466f)] - **doc**: update http.setMaxIdleHTTPParsers arguments (Debadree Chatterjee) [#46168](https://github.com/nodejs/node/pull/46168)
|
|
196
|
+
* \[[`d7a8c076e1`](https://github.com/nodejs/node/commit/d7a8c076e1)] - **doc**: use "file system" instead of "filesystem" (Rich Trott) [#46178](https://github.com/nodejs/node/pull/46178)
|
|
197
|
+
* \[[`e54483cd2b`](https://github.com/nodejs/node/commit/e54483cd2b)] - **doc**: https update default request timeout (Marco Ippolito) [#46184](https://github.com/nodejs/node/pull/46184)
|
|
198
|
+
* \[[`335110b0fb`](https://github.com/nodejs/node/commit/335110b0fb)] - **doc**: make options of readableStream.pipeTo as optional (Deokjin Kim) [#46180](https://github.com/nodejs/node/pull/46180)
|
|
199
|
+
* \[[`ec34cad712`](https://github.com/nodejs/node/commit/ec34cad712)] - **doc**: add PerformanceObserver.supportedEntryTypes to doc (theanarkh) [#45962](https://github.com/nodejs/node/pull/45962)
|
|
200
|
+
* \[[`d0f905bd6f`](https://github.com/nodejs/node/commit/d0f905bd6f)] - **doc**: duplex and readable from uncaught execption warning (Marco Ippolito) [#46135](https://github.com/nodejs/node/pull/46135)
|
|
201
|
+
* \[[`512feaafa4`](https://github.com/nodejs/node/commit/512feaafa4)] - **doc**: remove outdated sections from `maintaining-v8` (Antoine du Hamel) [#46137](https://github.com/nodejs/node/pull/46137)
|
|
202
|
+
* \[[`849a3e2ce7`](https://github.com/nodejs/node/commit/849a3e2ce7)] - **doc**: fix (EC)DHE remark in TLS docs (Tobias Nießen) [#46114](https://github.com/nodejs/node/pull/46114)
|
|
203
|
+
* \[[`a3c9c1b4e6`](https://github.com/nodejs/node/commit/a3c9c1b4e6)] - **doc**: fix ERR\_TLS\_RENEGOTIATION\_DISABLED text (Tobias Nießen) [#46122](https://github.com/nodejs/node/pull/46122)
|
|
204
|
+
* \[[`1834e94ebb`](https://github.com/nodejs/node/commit/1834e94ebb)] - **doc**: fix spelling in SECURITY.md (Vaishno Chaitanya) [#46124](https://github.com/nodejs/node/pull/46124)
|
|
205
|
+
* \[[`3968698af5`](https://github.com/nodejs/node/commit/3968698af5)] - **doc**: abort controller emits error in child process (Debadree Chatterjee) [#46072](https://github.com/nodejs/node/pull/46072)
|
|
206
|
+
* \[[`1ec14c2c61`](https://github.com/nodejs/node/commit/1ec14c2c61)] - **doc**: fix `event.cancelBubble` documentation (Deokjin Kim) [#45986](https://github.com/nodejs/node/pull/45986)
|
|
207
|
+
* \[[`5539977f80`](https://github.com/nodejs/node/commit/5539977f80)] - **doc**: add personal pronouns option (Filip Skokan) [#46118](https://github.com/nodejs/node/pull/46118)
|
|
208
|
+
* \[[`1fabef3a81`](https://github.com/nodejs/node/commit/1fabef3a81)] - **doc**: mention how to run ncu-ci citgm (Rafael Gonzaga) [#46090](https://github.com/nodejs/node/pull/46090)
|
|
209
|
+
* \[[`84dc65ab87`](https://github.com/nodejs/node/commit/84dc65ab87)] - **doc**: include updating release optional step (Rafael Gonzaga) [#46089](https://github.com/nodejs/node/pull/46089)
|
|
210
|
+
* \[[`76c7ea1e74`](https://github.com/nodejs/node/commit/76c7ea1e74)] - **doc**: describe argument of `Symbol.for` (Deokjin Kim) [#46019](https://github.com/nodejs/node/pull/46019)
|
|
211
|
+
* \[[`2307a74990`](https://github.com/nodejs/node/commit/2307a74990)] - **doc**: update isUtf8 description (Yagiz Nizipli) [#45973](https://github.com/nodejs/node/pull/45973)
|
|
212
|
+
* \[[`fa5b65ea24`](https://github.com/nodejs/node/commit/fa5b65ea24)] - **doc**: use console.error for error case in timers and tls (Deokjin Kim) [#46002](https://github.com/nodejs/node/pull/46002)
|
|
213
|
+
* \[[`29d509c100`](https://github.com/nodejs/node/commit/29d509c100)] - **doc**: fix wrong output of example in `url.protocol` (Deokjin Kim) [#45954](https://github.com/nodejs/node/pull/45954)
|
|
214
|
+
* \[[`61dbca2690`](https://github.com/nodejs/node/commit/61dbca2690)] - **doc**: use `os.availableParallelism()` in async\_context and cluster (Deokjin Kim) [#45979](https://github.com/nodejs/node/pull/45979)
|
|
215
|
+
* \[[`86b2c8cea2`](https://github.com/nodejs/node/commit/86b2c8cea2)] - **doc**: make EventEmitterAsyncResource's `options` as optional (Deokjin Kim) [#45985](https://github.com/nodejs/node/pull/45985)
|
|
216
|
+
* \[[`335acf7748`](https://github.com/nodejs/node/commit/335acf7748)] - **doc**: replace single executable champion in strategic initiatives doc (Darshan Sen) [#45956](https://github.com/nodejs/node/pull/45956)
|
|
217
|
+
* \[[`aab35a9388`](https://github.com/nodejs/node/commit/aab35a9388)] - **doc**: update error message of example in repl (Deokjin Kim) [#45920](https://github.com/nodejs/node/pull/45920)
|
|
218
|
+
* \[[`53a94a95ff`](https://github.com/nodejs/node/commit/53a94a95ff)] - **doc**: fix typos in packages.md (Eric Mutta) [#45957](https://github.com/nodejs/node/pull/45957)
|
|
219
|
+
* \[[`83875f46cf`](https://github.com/nodejs/node/commit/83875f46cf)] - **doc**: remove port from example in `url.hostname` (Deokjin Kim) [#45927](https://github.com/nodejs/node/pull/45927)
|
|
220
|
+
* \[[`162d3a94e3`](https://github.com/nodejs/node/commit/162d3a94e3)] - **doc**: show output of example in http (Deokjin Kim) [#45915](https://github.com/nodejs/node/pull/45915)
|
|
221
|
+
* \[[`53684e4506`](https://github.com/nodejs/node/commit/53684e4506)] - **(SEMVER-MINOR)** **doc**: add parallelism note to os.cpus() (Colin Ihrig) [#45895](https://github.com/nodejs/node/pull/45895)
|
|
222
|
+
* \[[`546e083d36`](https://github.com/nodejs/node/commit/546e083d36)] - **doc**: fix wrong output of example in `url.password` (Deokjin Kim) [#45928](https://github.com/nodejs/node/pull/45928)
|
|
223
|
+
* \[[`14c95ecd23`](https://github.com/nodejs/node/commit/14c95ecd23)] - **doc**: fix some history entries in `deprecations.md` (Antoine du Hamel) [#45891](https://github.com/nodejs/node/pull/45891)
|
|
224
|
+
* \[[`d94dba973b`](https://github.com/nodejs/node/commit/d94dba973b)] - **doc**: add tip for NODE\_MODULE (theanarkh) [#45797](https://github.com/nodejs/node/pull/45797)
|
|
225
|
+
* \[[`662f574c5b`](https://github.com/nodejs/node/commit/662f574c5b)] - **doc**: reduce likelihood of mismerges during release (Richard Lau) [#45864](https://github.com/nodejs/node/pull/45864)
|
|
226
|
+
* \[[`48ea28aa30`](https://github.com/nodejs/node/commit/48ea28aa30)] - **doc**: add backticks to webcrypto rsaOaepParams (Filip Skokan) [#45883](https://github.com/nodejs/node/pull/45883)
|
|
227
|
+
* \[[`726b285163`](https://github.com/nodejs/node/commit/726b285163)] - **doc**: remove release cleanup step (Michaël Zasso) [#45858](https://github.com/nodejs/node/pull/45858)
|
|
228
|
+
* \[[`5eb93f1de9`](https://github.com/nodejs/node/commit/5eb93f1de9)] - **doc**: add stream/promises pipeline and finished to doc (Marco Ippolito) [#45832](https://github.com/nodejs/node/pull/45832)
|
|
229
|
+
* \[[`f874d0ba74`](https://github.com/nodejs/node/commit/f874d0ba74)] - **doc**: remove Juan Jose keys (Rafael Gonzaga) [#45827](https://github.com/nodejs/node/pull/45827)
|
|
230
|
+
* \[[`67efe2a55e`](https://github.com/nodejs/node/commit/67efe2a55e)] - **doc**: fix wrong output of example in util (Deokjin Kim) [#45825](https://github.com/nodejs/node/pull/45825)
|
|
231
|
+
* \[[`b709af31e0`](https://github.com/nodejs/node/commit/b709af31e0)] - **doc**: sort http.createServer() options alphabetically (Luigi Pinca) [#45680](https://github.com/nodejs/node/pull/45680)
|
|
232
|
+
* \[[`ebe292113a`](https://github.com/nodejs/node/commit/ebe292113a)] - **doc,crypto**: fix WebCryptoAPI import keyData and export return (Filip Skokan) [#46076](https://github.com/nodejs/node/pull/46076)
|
|
233
|
+
* \[[`204757719c`](https://github.com/nodejs/node/commit/204757719c)] - **errors**: refactor to use a method that formats a list string (Daeyeon Jeong) [#45793](https://github.com/nodejs/node/pull/45793)
|
|
234
|
+
* \[[`463bb9602e`](https://github.com/nodejs/node/commit/463bb9602e)] - **esm**: mark `importAssertions` as required (Antoine du Hamel) [#46164](https://github.com/nodejs/node/pull/46164)
|
|
235
|
+
* \[[`0bdf2db079`](https://github.com/nodejs/node/commit/0bdf2db079)] - **esm**: rewrite loader hooks test (Geoffrey Booth) [#46016](https://github.com/nodejs/node/pull/46016)
|
|
236
|
+
* \[[`297773c6d1`](https://github.com/nodejs/node/commit/297773c6d1)] - **events**: change status of `event.returnvalue` to legacy (Deokjin Kim) [#46175](https://github.com/nodejs/node/pull/46175)
|
|
237
|
+
* \[[`d088d6e5c3`](https://github.com/nodejs/node/commit/d088d6e5c3)] - **events**: change status of `event.cancelBubble` to legacy (Deokjin Kim) [#46146](https://github.com/nodejs/node/pull/46146)
|
|
238
|
+
* \[[`36be0c4ee2`](https://github.com/nodejs/node/commit/36be0c4ee2)] - **events**: change status of `event.srcElement` to legacy (Deokjin Kim) [#46085](https://github.com/nodejs/node/pull/46085)
|
|
239
|
+
* \[[`b239f0684a`](https://github.com/nodejs/node/commit/b239f0684a)] - **events**: fix violation of symbol naming convention (Deokjin Kim) [#45978](https://github.com/nodejs/node/pull/45978)
|
|
240
|
+
* \[[`aec340b312`](https://github.com/nodejs/node/commit/aec340b312)] - **fs**: refactor to use `validateInteger` (Deokjin Kim) [#46008](https://github.com/nodejs/node/pull/46008)
|
|
241
|
+
* \[[`e620de6444`](https://github.com/nodejs/node/commit/e620de6444)] - **http**: refactor to use `validateHeaderName` (Deokjin Kim) [#46143](https://github.com/nodejs/node/pull/46143)
|
|
242
|
+
* \[[`3e70b7d863`](https://github.com/nodejs/node/commit/3e70b7d863)] - **http**: writeHead if statusmessage is undefined dont override headers (Marco Ippolito) [#46173](https://github.com/nodejs/node/pull/46173)
|
|
243
|
+
* \[[`3d1dd96c4f`](https://github.com/nodejs/node/commit/3d1dd96c4f)] - **http**: refactor to use min of validateNumber for maxTotalSockets (Deokjin Kim) [#46115](https://github.com/nodejs/node/pull/46115)
|
|
244
|
+
* \[[`4df1fcc9db`](https://github.com/nodejs/node/commit/4df1fcc9db)] - **(SEMVER-MINOR)** **http**: join authorization headers (Marco Ippolito) [#45982](https://github.com/nodejs/node/pull/45982)
|
|
245
|
+
* \[[`8c06e2f645`](https://github.com/nodejs/node/commit/8c06e2f645)] - **http**: replace `var` with `const` on code of comment (Deokjin Kim) [#45951](https://github.com/nodejs/node/pull/45951)
|
|
246
|
+
* \[[`3c0c5e0567`](https://github.com/nodejs/node/commit/3c0c5e0567)] - **(SEMVER-MINOR)** **http**: improved timeout defaults handling (Paolo Insogna) [#45778](https://github.com/nodejs/node/pull/45778)
|
|
247
|
+
* \[[`edcd4fc576`](https://github.com/nodejs/node/commit/edcd4fc576)] - **lib**: use kEmptyObject and update JSDoc in webstreams (Deokjin Kim) [#46183](https://github.com/nodejs/node/pull/46183)
|
|
248
|
+
* \[[`d6fc855b8a`](https://github.com/nodejs/node/commit/d6fc855b8a)] - **lib**: refactor to use validate function (Deokjin Kim) [#46101](https://github.com/nodejs/node/pull/46101)
|
|
249
|
+
* \[[`bc17f37b98`](https://github.com/nodejs/node/commit/bc17f37b98)] - **lib**: reuse invalid state errors on webstreams (Rafael Gonzaga) [#46086](https://github.com/nodejs/node/pull/46086)
|
|
250
|
+
* \[[`86554bf27c`](https://github.com/nodejs/node/commit/86554bf27c)] - **lib**: fix incorrect use of console intrinsic (Colin Ihrig) [#46044](https://github.com/nodejs/node/pull/46044)
|
|
251
|
+
* \[[`7fc7b19124`](https://github.com/nodejs/node/commit/7fc7b19124)] - **lib**: update JSDoc of `getOwnPropertyValueOrDefault` (Deokjin Kim) [#46010](https://github.com/nodejs/node/pull/46010)
|
|
252
|
+
* \[[`c1cc1f9e12`](https://github.com/nodejs/node/commit/c1cc1f9e12)] - **lib**: use `kEmptyObject` as default value for options (Deokjin Kim) [#46011](https://github.com/nodejs/node/pull/46011)
|
|
253
|
+
* \[[`db617222da`](https://github.com/nodejs/node/commit/db617222da)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#46215](https://github.com/nodejs/node/pull/46215)
|
|
254
|
+
* \[[`10afecd0d8`](https://github.com/nodejs/node/commit/10afecd0d8)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#46130](https://github.com/nodejs/node/pull/46130)
|
|
255
|
+
* \[[`d8ce990ce6`](https://github.com/nodejs/node/commit/d8ce990ce6)] - **meta**: update comment in `CODEOWNERS` to better reflect current policy (Antoine du Hamel) [#45944](https://github.com/nodejs/node/pull/45944)
|
|
256
|
+
* \[[`e3f0194168`](https://github.com/nodejs/node/commit/e3f0194168)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#46040](https://github.com/nodejs/node/pull/46040)
|
|
257
|
+
* \[[`d31c478929`](https://github.com/nodejs/node/commit/d31c478929)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#45968](https://github.com/nodejs/node/pull/45968)
|
|
258
|
+
* \[[`10a276a3e0`](https://github.com/nodejs/node/commit/10a276a3e0)] - **meta**: add `nodejs/loaders` to CODEOWNERS (Geoffrey Booth) [#45940](https://github.com/nodejs/node/pull/45940)
|
|
259
|
+
* \[[`56247d7c87`](https://github.com/nodejs/node/commit/56247d7c87)] - **meta**: add `nodejs/test_runner` to CODEOWNERS (Antoine du Hamel) [#45935](https://github.com/nodejs/node/pull/45935)
|
|
260
|
+
* \[[`3bef8bc743`](https://github.com/nodejs/node/commit/3bef8bc743)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#45899](https://github.com/nodejs/node/pull/45899)
|
|
261
|
+
* \[[`baf30ee935`](https://github.com/nodejs/node/commit/baf30ee935)] - **module**: fix unintended mutation (Antoine du Hamel) [#46108](https://github.com/nodejs/node/pull/46108)
|
|
262
|
+
* \[[`3ad584c357`](https://github.com/nodejs/node/commit/3ad584c357)] - **net**: handle socket.write(cb) edge case (Santiago Gimeno) [#45922](https://github.com/nodejs/node/pull/45922)
|
|
263
|
+
* \[[`2ab35cf0cc`](https://github.com/nodejs/node/commit/2ab35cf0cc)] - **node-api**: disambiguate napi\_add\_finalizer (Chengzhong Wu) [#45401](https://github.com/nodejs/node/pull/45401)
|
|
264
|
+
* \[[`6e9676e986`](https://github.com/nodejs/node/commit/6e9676e986)] - **node-api**: generalize finalizer second pass callback (Chengzhong Wu) [#44141](https://github.com/nodejs/node/pull/44141)
|
|
265
|
+
* \[[`b2faceff0a`](https://github.com/nodejs/node/commit/b2faceff0a)] - **(SEMVER-MINOR)** **os**: add availableParallelism() (Colin Ihrig) [#45895](https://github.com/nodejs/node/pull/45895)
|
|
266
|
+
* \[[`8fac4c5684`](https://github.com/nodejs/node/commit/8fac4c5684)] - **perf\_hooks**: fix checking range of `options.figures` in createHistogram (Deokjin Kim) [#45999](https://github.com/nodejs/node/pull/45999)
|
|
267
|
+
* \[[`ea73702847`](https://github.com/nodejs/node/commit/ea73702847)] - **process,worker**: ensure code after exit() effectless (ywave620) [#45620](https://github.com/nodejs/node/pull/45620)
|
|
268
|
+
* \[[`784ed594ea`](https://github.com/nodejs/node/commit/784ed594ea)] - **repl**: improve robustness wrt to prototype pollution (Antoine du Hamel) [#45604](https://github.com/nodejs/node/pull/45604)
|
|
269
|
+
* \[[`fcfde3412e`](https://github.com/nodejs/node/commit/fcfde3412e)] - **src**: rename internal module declaration as internal bindings (Chengzhong Wu) [#45551](https://github.com/nodejs/node/pull/45551)
|
|
270
|
+
* \[[`646cadccd0`](https://github.com/nodejs/node/commit/646cadccd0)] - **src**: fix endianness of simdutf (Yagiz Nizipli) [#46257](https://github.com/nodejs/node/pull/46257)
|
|
271
|
+
* \[[`94605b1665`](https://github.com/nodejs/node/commit/94605b1665)] - **src**: replace unreachable code with static\_assert (Tobias Nießen) [#46209](https://github.com/nodejs/node/pull/46209)
|
|
272
|
+
* \[[`3ce39bbcb7`](https://github.com/nodejs/node/commit/3ce39bbcb7)] - **src**: hide kMaxDigestMultiplier outside HKDF impl (Tobias Nießen) [#46206](https://github.com/nodejs/node/pull/46206)
|
|
273
|
+
* \[[`9648b06e09`](https://github.com/nodejs/node/commit/9648b06e09)] - **src**: distinguish env stopping flags (Chengzhong Wu) [#45907](https://github.com/nodejs/node/pull/45907)
|
|
274
|
+
* \[[`53ecd20bbd`](https://github.com/nodejs/node/commit/53ecd20bbd)] - **src**: remove return after abort (Shelley Vohr) [#46172](https://github.com/nodejs/node/pull/46172)
|
|
275
|
+
* \[[`c4c8931b9d`](https://github.com/nodejs/node/commit/c4c8931b9d)] - **src**: remove unnecessary semicolons (Shelley Vohr) [#46171](https://github.com/nodejs/node/pull/46171)
|
|
276
|
+
* \[[`fab72b1677`](https://github.com/nodejs/node/commit/fab72b1677)] - **src**: use simdutf for converting externalized builtins to UTF-16 (Anna Henningsen) [#46119](https://github.com/nodejs/node/pull/46119)
|
|
277
|
+
* \[[`67729961e7`](https://github.com/nodejs/node/commit/67729961e7)] - **src**: use constant strings for memory info names (Chengzhong Wu) [#46087](https://github.com/nodejs/node/pull/46087)
|
|
278
|
+
* \[[`0ac4e5dd34`](https://github.com/nodejs/node/commit/0ac4e5dd34)] - **src**: fix typo in node\_snapshotable.cc (Vadim) [#46103](https://github.com/nodejs/node/pull/46103)
|
|
279
|
+
* \[[`b454a7665d`](https://github.com/nodejs/node/commit/b454a7665d)] - **src**: keep PipeWrap::Open function consistent with TCPWrap (theanarkh) [#46064](https://github.com/nodejs/node/pull/46064)
|
|
280
|
+
* \[[`41f5a29cca`](https://github.com/nodejs/node/commit/41f5a29cca)] - **src**: speed up process.getActiveResourcesInfo() (Darshan Sen) [#46014](https://github.com/nodejs/node/pull/46014)
|
|
281
|
+
* \[[`02a61dd6bd`](https://github.com/nodejs/node/commit/02a61dd6bd)] - **src**: fix typo in `node_file.cc` (Vadim) [#45998](https://github.com/nodejs/node/pull/45998)
|
|
282
|
+
* \[[`99c033ed98`](https://github.com/nodejs/node/commit/99c033ed98)] - **src**: fix crash on OnStreamRead on Windows (Santiago Gimeno) [#45878](https://github.com/nodejs/node/pull/45878)
|
|
283
|
+
* \[[`27d6a8b2b1`](https://github.com/nodejs/node/commit/27d6a8b2b1)] - **src**: fix creating `Isolate`s from addons (Anna Henningsen) [#45885](https://github.com/nodejs/node/pull/45885)
|
|
284
|
+
* \[[`9ca31cdba3`](https://github.com/nodejs/node/commit/9ca31cdba3)] - **src**: use string\_view for FastStringKey implementation (Anna Henningsen) [#45914](https://github.com/nodejs/node/pull/45914)
|
|
285
|
+
* \[[`e4fc3abfd5`](https://github.com/nodejs/node/commit/e4fc3abfd5)] - **src**: fix UB in overflow checks (Ben Noordhuis) [#45882](https://github.com/nodejs/node/pull/45882)
|
|
286
|
+
* \[[`574afac26a`](https://github.com/nodejs/node/commit/574afac26a)] - **src**: check size of args before using for exec\_path (A. Wilcox) [#45902](https://github.com/nodejs/node/pull/45902)
|
|
287
|
+
* \[[`f0692468cd`](https://github.com/nodejs/node/commit/f0692468cd)] - **src**: fix tls certificate root store data race (Ben Noordhuis) [#45767](https://github.com/nodejs/node/pull/45767)
|
|
288
|
+
* \[[`a749ceda2e`](https://github.com/nodejs/node/commit/a749ceda2e)] - **src**: add undici and acorn to `process.versions` (Debadree Chatterjee) [#45621](https://github.com/nodejs/node/pull/45621)
|
|
289
|
+
* \[[`08a6a61575`](https://github.com/nodejs/node/commit/08a6a61575)] - **src,lib**: the handle keeps loop alive in cluster rr mode (theanarkh) [#46161](https://github.com/nodejs/node/pull/46161)
|
|
290
|
+
* \[[`a87963de6b`](https://github.com/nodejs/node/commit/a87963de6b)] - **stream**: fix pipeline calling end on destination more than once (Debadree Chatterjee) [#46226](https://github.com/nodejs/node/pull/46226)
|
|
291
|
+
* \[[`cde59606cd`](https://github.com/nodejs/node/commit/cde59606cd)] - **(SEMVER-MINOR)** **stream**: implement finished() for ReadableStream and WritableStream (Debadree Chatterjee) [#46205](https://github.com/nodejs/node/pull/46205)
|
|
292
|
+
* \[[`441d9de33e`](https://github.com/nodejs/node/commit/441d9de33e)] - **stream**: refactor to use `validateFunction` (Deokjin Kim) [#46007](https://github.com/nodejs/node/pull/46007)
|
|
293
|
+
* \[[`325fc08d48`](https://github.com/nodejs/node/commit/325fc08d48)] - **stream**: fix typo in JSDoc (Deokjin Kim) [#45991](https://github.com/nodejs/node/pull/45991)
|
|
294
|
+
* \[[`536322fa1c`](https://github.com/nodejs/node/commit/536322fa1c)] - **test**: update postject to 1.0.0-alpha.4 (Node.js GitHub Bot) [#46212](https://github.com/nodejs/node/pull/46212)
|
|
295
|
+
* \[[`a3056f4125`](https://github.com/nodejs/node/commit/a3056f4125)] - **test**: refactor to avoid mutation of global by a loader (Michaël Zasso) [#46220](https://github.com/nodejs/node/pull/46220)
|
|
296
|
+
* \[[`1790569518`](https://github.com/nodejs/node/commit/1790569518)] - **test**: improve test coverage for WHATWG `TextDecoder` (Juan José) [#45241](https://github.com/nodejs/node/pull/45241)
|
|
297
|
+
* \[[`896027c006`](https://github.com/nodejs/node/commit/896027c006)] - **test**: add fix so that test exits if port 42 is unprivileged (Suyash Nayan) [#45904](https://github.com/nodejs/node/pull/45904)
|
|
298
|
+
* \[[`257224da0e`](https://github.com/nodejs/node/commit/257224da0e)] - **test**: use `os.availableParallelism()` (Deokjin Kim) [#46003](https://github.com/nodejs/node/pull/46003)
|
|
299
|
+
* \[[`7e1462dd02`](https://github.com/nodejs/node/commit/7e1462dd02)] - **test**: update Web Events WPT (Deokjin Kim) [#46051](https://github.com/nodejs/node/pull/46051)
|
|
300
|
+
* \[[`40d52fbc5f`](https://github.com/nodejs/node/commit/40d52fbc5f)] - **test**: add test to once() in event lib (Jonathan Diaz) [#46126](https://github.com/nodejs/node/pull/46126)
|
|
301
|
+
* \[[`f3518f3337`](https://github.com/nodejs/node/commit/f3518f3337)] - **test**: use `process.hrtime.bigint` instead of `process.hrtime` (Deokjin Kim) [#45877](https://github.com/nodejs/node/pull/45877)
|
|
302
|
+
* \[[`4d6dd10464`](https://github.com/nodejs/node/commit/4d6dd10464)] - **test**: print failed JS/parallel tests (Geoffrey Booth) [#45960](https://github.com/nodejs/node/pull/45960)
|
|
303
|
+
* \[[`7cb6fef6d6`](https://github.com/nodejs/node/commit/7cb6fef6d6)] - **test**: fix test broken under --node-builtin-modules-path (Geoffrey Booth) [#45894](https://github.com/nodejs/node/pull/45894)
|
|
304
|
+
* \[[`55e4140c34`](https://github.com/nodejs/node/commit/55e4140c34)] - **test**: fix mock.method to support class instances (Erick Wendel) [#45608](https://github.com/nodejs/node/pull/45608)
|
|
305
|
+
* \[[`286acaa6fe`](https://github.com/nodejs/node/commit/286acaa6fe)] - **test**: update encoding wpt to latest (Yagiz Nizipli) [#45850](https://github.com/nodejs/node/pull/45850)
|
|
306
|
+
* \[[`22c1e918ce`](https://github.com/nodejs/node/commit/22c1e918ce)] - **test**: update url wpt to latest (Yagiz Nizipli) [#45852](https://github.com/nodejs/node/pull/45852)
|
|
307
|
+
* \[[`5fa6a70bbd`](https://github.com/nodejs/node/commit/5fa6a70bbd)] - **test**: add CryptoKey transferring tests (Filip Skokan) [#45811](https://github.com/nodejs/node/pull/45811)
|
|
308
|
+
* \[[`4aaec07266`](https://github.com/nodejs/node/commit/4aaec07266)] - **test**: add postject to fixtures (Darshan Sen) [#45298](https://github.com/nodejs/node/pull/45298)
|
|
309
|
+
* \[[`da78f9cbb8`](https://github.com/nodejs/node/commit/da78f9cbb8)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#45860](https://github.com/nodejs/node/pull/45860)
|
|
310
|
+
* \[[`3269423032`](https://github.com/nodejs/node/commit/3269423032)] - **test,esm**: validate more edge cases for dynamic imports (Antoine du Hamel) [#46059](https://github.com/nodejs/node/pull/46059)
|
|
311
|
+
* \[[`cade2fccf4`](https://github.com/nodejs/node/commit/cade2fccf4)] - **test\_runner**: run t.after() if test body throws (Colin Ihrig) [#45870](https://github.com/nodejs/node/pull/45870)
|
|
312
|
+
* \[[`87a0e86604`](https://github.com/nodejs/node/commit/87a0e86604)] - **test\_runner**: parse yaml (Moshe Atlow) [#45815](https://github.com/nodejs/node/pull/45815)
|
|
313
|
+
* \[[`757a022443`](https://github.com/nodejs/node/commit/757a022443)] - **tls**: don't treat fatal TLS alerts as EOF (David Benjamin) [#44563](https://github.com/nodejs/node/pull/44563)
|
|
314
|
+
* \[[`c6457cbf8d`](https://github.com/nodejs/node/commit/c6457cbf8d)] - **tls**: fix re-entrancy issue with TLS close\_notify (David Benjamin) [#44563](https://github.com/nodejs/node/pull/44563)
|
|
315
|
+
* \[[`fcca2d5ea6`](https://github.com/nodejs/node/commit/fcca2d5ea6)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#46214](https://github.com/nodejs/node/pull/46214)
|
|
316
|
+
* \[[`09adb86c19`](https://github.com/nodejs/node/commit/09adb86c19)] - **tools**: fix macro name in update-undici (Almeida) [#46217](https://github.com/nodejs/node/pull/46217)
|
|
317
|
+
* \[[`1b0cc79785`](https://github.com/nodejs/node/commit/1b0cc79785)] - **tools**: add automation for updating postject dependency (Darshan Sen) [#46157](https://github.com/nodejs/node/pull/46157)
|
|
318
|
+
* \[[`38df662119`](https://github.com/nodejs/node/commit/38df662119)] - **tools**: update create-or-update-pull-request-action (Michaël Zasso) [#46169](https://github.com/nodejs/node/pull/46169)
|
|
319
|
+
* \[[`3f4c0c0de1`](https://github.com/nodejs/node/commit/3f4c0c0de1)] - **tools**: update eslint to 8.31.0 (Node.js GitHub Bot) [#46131](https://github.com/nodejs/node/pull/46131)
|
|
320
|
+
* \[[`f3dc4329e6`](https://github.com/nodejs/node/commit/f3dc4329e6)] - **tools**: update lint-md-dependencies to rollup\@3.9.1 (Node.js GitHub Bot) [#46129](https://github.com/nodejs/node/pull/46129)
|
|
321
|
+
* \[[`fafbd1ca72`](https://github.com/nodejs/node/commit/fafbd1ca72)] - **tools**: move update-eslint.sh to dep\_updaters/ (Luigi Pinca) [#46088](https://github.com/nodejs/node/pull/46088)
|
|
322
|
+
* \[[`609df01fa9`](https://github.com/nodejs/node/commit/609df01fa9)] - **tools**: make update-eslint.sh work with npm\@9 (Luigi Pinca) [#46088](https://github.com/nodejs/node/pull/46088)
|
|
323
|
+
* \[[`31b8cf1a4d`](https://github.com/nodejs/node/commit/31b8cf1a4d)] - **tools**: fix lint rule recommendation (Colin Ihrig) [#46044](https://github.com/nodejs/node/pull/46044)
|
|
324
|
+
* \[[`0a80cbdcb1`](https://github.com/nodejs/node/commit/0a80cbdcb1)] - **tools**: update lint-md-dependencies to rollup\@3.9.0 (Node.js GitHub Bot) [#46039](https://github.com/nodejs/node/pull/46039)
|
|
325
|
+
* \[[`18503fa7ba`](https://github.com/nodejs/node/commit/18503fa7ba)] - **tools**: update doc to unist-util-select\@4.0.2 (Node.js GitHub Bot) [#46038](https://github.com/nodejs/node/pull/46038)
|
|
326
|
+
* \[[`b48e82ec1d`](https://github.com/nodejs/node/commit/b48e82ec1d)] - **tools**: add release host var to promotion script (Ruy Adorno) [#45913](https://github.com/nodejs/node/pull/45913)
|
|
327
|
+
* \[[`3b93b0c1f5`](https://github.com/nodejs/node/commit/3b93b0c1f5)] - **tools**: add url to `AUTHORS` update automation (Antoine du Hamel) [#45971](https://github.com/nodejs/node/pull/45971)
|
|
328
|
+
* \[[`623b0eba81`](https://github.com/nodejs/node/commit/623b0eba81)] - **tools**: update lint-md-dependencies to rollup\@3.8.1 (Node.js GitHub Bot) [#45967](https://github.com/nodejs/node/pull/45967)
|
|
329
|
+
* \[[`b0e88377fe`](https://github.com/nodejs/node/commit/b0e88377fe)] - **tools**: update GitHub workflow action (Mohammed Keyvanzadeh) [#45937](https://github.com/nodejs/node/pull/45937)
|
|
330
|
+
* \[[`974442e69d`](https://github.com/nodejs/node/commit/974442e69d)] - **tools**: update lint-md dependencies (Node.js GitHub Bot) [#45813](https://github.com/nodejs/node/pull/45813)
|
|
331
|
+
* \[[`5aaa8c3bbf`](https://github.com/nodejs/node/commit/5aaa8c3bbf)] - **tools**: enforce use of trailing commas in `tools/` (Antoine du Hamel) [#45889](https://github.com/nodejs/node/pull/45889)
|
|
332
|
+
* \[[`1e32520f72`](https://github.com/nodejs/node/commit/1e32520f72)] - **tools**: add `ArrayPrototypeConcat` to the list of primordials to avoid (Antoine du Hamel) [#44445](https://github.com/nodejs/node/pull/44445)
|
|
333
|
+
* \[[`e0cda56204`](https://github.com/nodejs/node/commit/e0cda56204)] - **tools**: fix incorrect version history order (Fabien Michel) [#45728](https://github.com/nodejs/node/pull/45728)
|
|
334
|
+
* \[[`7438ff175a`](https://github.com/nodejs/node/commit/7438ff175a)] - **tools**: update eslint to 8.29.0 (Node.js GitHub Bot) [#45733](https://github.com/nodejs/node/pull/45733)
|
|
335
|
+
* \[[`1e11247b91`](https://github.com/nodejs/node/commit/1e11247b91)] - _**Revert**_ "**tools**: update V8 gypfiles for RISC-V" (Lu Yahan) [#46156](https://github.com/nodejs/node/pull/46156)
|
|
336
|
+
* \[[`0defe4effa`](https://github.com/nodejs/node/commit/0defe4effa)] - **trace\_events**: refactor to use `validateStringArray` (Deokjin Kim) [#46012](https://github.com/nodejs/node/pull/46012)
|
|
337
|
+
* \[[`f1dcbe7652`](https://github.com/nodejs/node/commit/f1dcbe7652)] - **util**: add fast path for text-decoder fatal flag (Yagiz Nizipli) [#45803](https://github.com/nodejs/node/pull/45803)
|
|
338
|
+
* \[[`277d9da876`](https://github.com/nodejs/node/commit/277d9da876)] - **vm**: refactor to use validate function (Deokjin Kim) [#46176](https://github.com/nodejs/node/pull/46176)
|
|
339
|
+
* \[[`96f1b2e731`](https://github.com/nodejs/node/commit/96f1b2e731)] - **vm**: refactor to use `validateStringArray` (Deokjin Kim) [#46020](https://github.com/nodejs/node/pull/46020)
|
|
340
|
+
|
|
54
341
|
<a id="18.13.0"></a>
|
|
55
342
|
|
|
56
343
|
## 2023-01-05, Version 18.13.0 'Hydrogen' (LTS), @danielleadams
|
package/LICENSE
CHANGED
|
@@ -769,6 +769,246 @@ The externally maintained libraries used by Node.js are:
|
|
|
769
769
|
SOFTWARE.
|
|
770
770
|
"""
|
|
771
771
|
|
|
772
|
+
- postject, located at test/fixtures/postject-copy, is licensed as follows:
|
|
773
|
+
"""
|
|
774
|
+
Postject is licensed for use as follows:
|
|
775
|
+
|
|
776
|
+
"""
|
|
777
|
+
MIT License
|
|
778
|
+
|
|
779
|
+
Copyright (c) 2022 Postman, Inc
|
|
780
|
+
|
|
781
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
782
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
783
|
+
in the Software without restriction, including without limitation the rights
|
|
784
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
785
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
786
|
+
furnished to do so, subject to the following conditions:
|
|
787
|
+
|
|
788
|
+
The above copyright notice and this permission notice shall be included in all
|
|
789
|
+
copies or substantial portions of the Software.
|
|
790
|
+
|
|
791
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
792
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
793
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
794
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
795
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
796
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
797
|
+
SOFTWARE.
|
|
798
|
+
"""
|
|
799
|
+
|
|
800
|
+
The Postject license applies to all parts of Postject that are not externally
|
|
801
|
+
maintained libraries.
|
|
802
|
+
|
|
803
|
+
The externally maintained libraries used by Postject are:
|
|
804
|
+
|
|
805
|
+
- LIEF, located at vendor/LIEF, is licensed as follows:
|
|
806
|
+
"""
|
|
807
|
+
Apache License
|
|
808
|
+
Version 2.0, January 2004
|
|
809
|
+
http://www.apache.org/licenses/
|
|
810
|
+
|
|
811
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
812
|
+
|
|
813
|
+
1. Definitions.
|
|
814
|
+
|
|
815
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
816
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
817
|
+
|
|
818
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
819
|
+
the copyright owner that is granting the License.
|
|
820
|
+
|
|
821
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
822
|
+
other entities that control, are controlled by, or are under common
|
|
823
|
+
control with that entity. For the purposes of this definition,
|
|
824
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
825
|
+
direction or management of such entity, whether by contract or
|
|
826
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
827
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
828
|
+
|
|
829
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
830
|
+
exercising permissions granted by this License.
|
|
831
|
+
|
|
832
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
833
|
+
including but not limited to software source code, documentation
|
|
834
|
+
source, and configuration files.
|
|
835
|
+
|
|
836
|
+
"Object" form shall mean any form resulting from mechanical
|
|
837
|
+
transformation or translation of a Source form, including but
|
|
838
|
+
not limited to compiled object code, generated documentation,
|
|
839
|
+
and conversions to other media types.
|
|
840
|
+
|
|
841
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
842
|
+
Object form, made available under the License, as indicated by a
|
|
843
|
+
copyright notice that is included in or attached to the work
|
|
844
|
+
(an example is provided in the Appendix below).
|
|
845
|
+
|
|
846
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
847
|
+
form, that is based on (or derived from) the Work and for which the
|
|
848
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
849
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
850
|
+
of this License, Derivative Works shall not include works that remain
|
|
851
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
852
|
+
the Work and Derivative Works thereof.
|
|
853
|
+
|
|
854
|
+
"Contribution" shall mean any work of authorship, including
|
|
855
|
+
the original version of the Work and any modifications or additions
|
|
856
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
857
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
858
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
859
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
860
|
+
means any form of electronic, verbal, or written communication sent
|
|
861
|
+
to the Licensor or its representatives, including but not limited to
|
|
862
|
+
communication on electronic mailing lists, source code control systems,
|
|
863
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
864
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
865
|
+
excluding communication that is conspicuously marked or otherwise
|
|
866
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
867
|
+
|
|
868
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
869
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
870
|
+
subsequently incorporated within the Work.
|
|
871
|
+
|
|
872
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
873
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
874
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
875
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
876
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
877
|
+
Work and such Derivative Works in Source or Object form.
|
|
878
|
+
|
|
879
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
880
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
881
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
882
|
+
(except as stated in this section) patent license to make, have made,
|
|
883
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
884
|
+
where such license applies only to those patent claims licensable
|
|
885
|
+
by such Contributor that are necessarily infringed by their
|
|
886
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
887
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
888
|
+
institute patent litigation against any entity (including a
|
|
889
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
890
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
891
|
+
or contributory patent infringement, then any patent licenses
|
|
892
|
+
granted to You under this License for that Work shall terminate
|
|
893
|
+
as of the date such litigation is filed.
|
|
894
|
+
|
|
895
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
896
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
897
|
+
modifications, and in Source or Object form, provided that You
|
|
898
|
+
meet the following conditions:
|
|
899
|
+
|
|
900
|
+
(a) You must give any other recipients of the Work or
|
|
901
|
+
Derivative Works a copy of this License; and
|
|
902
|
+
|
|
903
|
+
(b) You must cause any modified files to carry prominent notices
|
|
904
|
+
stating that You changed the files; and
|
|
905
|
+
|
|
906
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
907
|
+
that You distribute, all copyright, patent, trademark, and
|
|
908
|
+
attribution notices from the Source form of the Work,
|
|
909
|
+
excluding those notices that do not pertain to any part of
|
|
910
|
+
the Derivative Works; and
|
|
911
|
+
|
|
912
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
913
|
+
distribution, then any Derivative Works that You distribute must
|
|
914
|
+
include a readable copy of the attribution notices contained
|
|
915
|
+
within such NOTICE file, excluding those notices that do not
|
|
916
|
+
pertain to any part of the Derivative Works, in at least one
|
|
917
|
+
of the following places: within a NOTICE text file distributed
|
|
918
|
+
as part of the Derivative Works; within the Source form or
|
|
919
|
+
documentation, if provided along with the Derivative Works; or,
|
|
920
|
+
within a display generated by the Derivative Works, if and
|
|
921
|
+
wherever such third-party notices normally appear. The contents
|
|
922
|
+
of the NOTICE file are for informational purposes only and
|
|
923
|
+
do not modify the License. You may add Your own attribution
|
|
924
|
+
notices within Derivative Works that You distribute, alongside
|
|
925
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
926
|
+
that such additional attribution notices cannot be construed
|
|
927
|
+
as modifying the License.
|
|
928
|
+
|
|
929
|
+
You may add Your own copyright statement to Your modifications and
|
|
930
|
+
may provide additional or different license terms and conditions
|
|
931
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
932
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
933
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
934
|
+
the conditions stated in this License.
|
|
935
|
+
|
|
936
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
937
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
938
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
939
|
+
this License, without any additional terms or conditions.
|
|
940
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
941
|
+
the terms of any separate license agreement you may have executed
|
|
942
|
+
with Licensor regarding such Contributions.
|
|
943
|
+
|
|
944
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
945
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
946
|
+
except as required for reasonable and customary use in describing the
|
|
947
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
948
|
+
|
|
949
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
950
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
951
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
952
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
953
|
+
implied, including, without limitation, any warranties or conditions
|
|
954
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
955
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
956
|
+
appropriateness of using or redistributing the Work and assume any
|
|
957
|
+
risks associated with Your exercise of permissions under this License.
|
|
958
|
+
|
|
959
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
960
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
961
|
+
unless required by applicable law (such as deliberate and grossly
|
|
962
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
963
|
+
liable to You for damages, including any direct, indirect, special,
|
|
964
|
+
incidental, or consequential damages of any character arising as a
|
|
965
|
+
result of this License or out of the use or inability to use the
|
|
966
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
967
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
968
|
+
other commercial damages or losses), even if such Contributor
|
|
969
|
+
has been advised of the possibility of such damages.
|
|
970
|
+
|
|
971
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
972
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
973
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
974
|
+
or other liability obligations and/or rights consistent with this
|
|
975
|
+
License. However, in accepting such obligations, You may act only
|
|
976
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
977
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
978
|
+
defend, and hold each Contributor harmless for any liability
|
|
979
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
980
|
+
of your accepting any such warranty or additional liability.
|
|
981
|
+
|
|
982
|
+
END OF TERMS AND CONDITIONS
|
|
983
|
+
|
|
984
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
985
|
+
|
|
986
|
+
To apply the Apache License to your work, attach the following
|
|
987
|
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
|
988
|
+
replaced with your own identifying information. (Don't include
|
|
989
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
990
|
+
comment syntax for the file format. We also recommend that a
|
|
991
|
+
file or class name and description of purpose be included on the
|
|
992
|
+
same "printed page" as the copyright notice for easier
|
|
993
|
+
identification within third-party archives.
|
|
994
|
+
|
|
995
|
+
Copyright 2017 - 2022 R. Thomas
|
|
996
|
+
Copyright 2017 - 2022 Quarkslab
|
|
997
|
+
|
|
998
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
999
|
+
you may not use this file except in compliance with the License.
|
|
1000
|
+
You may obtain a copy of the License at
|
|
1001
|
+
|
|
1002
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
1003
|
+
|
|
1004
|
+
Unless required by applicable law or agreed to in writing, software
|
|
1005
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
1006
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1007
|
+
See the License for the specific language governing permissions and
|
|
1008
|
+
limitations under the License.
|
|
1009
|
+
"""
|
|
1010
|
+
"""
|
|
1011
|
+
|
|
772
1012
|
- OpenSSL, located at deps/openssl, is licensed as follows:
|
|
773
1013
|
"""
|
|
774
1014
|
Apache License
|
|
@@ -1076,6 +1316,28 @@ The externally maintained libraries used by Node.js are:
|
|
|
1076
1316
|
jloup@gzip.org madler@alumni.caltech.edu
|
|
1077
1317
|
"""
|
|
1078
1318
|
|
|
1319
|
+
- simdutf, located at deps/simdutf, is licensed as follows:
|
|
1320
|
+
"""
|
|
1321
|
+
Copyright 2021 The simdutf authors
|
|
1322
|
+
|
|
1323
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
1324
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
1325
|
+
the Software without restriction, including without limitation the rights to
|
|
1326
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
1327
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
1328
|
+
subject to the following conditions:
|
|
1329
|
+
|
|
1330
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1331
|
+
copies or substantial portions of the Software.
|
|
1332
|
+
|
|
1333
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1334
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
1335
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
1336
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
1337
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
1338
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1339
|
+
"""
|
|
1340
|
+
|
|
1079
1341
|
- npm, located at deps/npm, is licensed as follows:
|
|
1080
1342
|
"""
|
|
1081
1343
|
The npm application
|
package/README.md
CHANGED
|
@@ -7,6 +7,12 @@ For information on using Node.js, see the [Node.js website][].
|
|
|
7
7
|
The Node.js project uses an [open governance model](./GOVERNANCE.md). The
|
|
8
8
|
[OpenJS Foundation][] provides support for the project.
|
|
9
9
|
|
|
10
|
+
Contributors are expected to act in a collaborative manner to move
|
|
11
|
+
the project forward. We encourage the constructive exchange of contrary
|
|
12
|
+
opinions and compromise. The [TSC](./GOVERNANCE.md#technical-steering-committee)
|
|
13
|
+
reserves the right to limit or block contributors who repeatedly act in ways
|
|
14
|
+
that discourage, exhaust, or otherwise negatively affect other participants.
|
|
15
|
+
|
|
10
16
|
**This project has a [Code of Conduct][].**
|
|
11
17
|
|
|
12
18
|
## Table of contents
|
|
@@ -399,7 +405,7 @@ For information about the governance of the Node.js project, see
|
|
|
399
405
|
* [oyyd](https://github.com/oyyd) -
|
|
400
406
|
**Ouyang Yadong** <<oyydoibh@gmail.com>> (he/him)
|
|
401
407
|
* [panva](https://github.com/panva) -
|
|
402
|
-
**Filip Skokan** <<panva.ip@gmail.com>>
|
|
408
|
+
**Filip Skokan** <<panva.ip@gmail.com>> (he/him)
|
|
403
409
|
* [puzpuzpuz](https://github.com/puzpuzpuz) -
|
|
404
410
|
**Andrey Pechkurov** <<apechkurov@gmail.com>> (he/him)
|
|
405
411
|
* [Qard](https://github.com/Qard) -
|
|
@@ -708,8 +714,6 @@ Primary GPG keys for Node.js Releasers (some Releasers sign with subkeys):
|
|
|
708
714
|
`141F07595B7B3FFE74309A937405533BE57C7D57`
|
|
709
715
|
* **Danielle Adams** <<adamzdanielle@gmail.com>>
|
|
710
716
|
`74F12602B6F1C4E913FAA37AD3A89613643B6201`
|
|
711
|
-
* **Juan José Arboleda** <<soyjuanarbol@gmail.com>>
|
|
712
|
-
`61FC681DFB92A079F1685E77973F295594EC4689`
|
|
713
717
|
* **Michaël Zasso** <<targos@protonmail.com>>
|
|
714
718
|
`8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600`
|
|
715
719
|
* **Myles Borins** <<myles.borins@gmail.com>>
|
|
@@ -728,7 +732,6 @@ to sign releases):
|
|
|
728
732
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys 4ED778F539E3634C779C87C6D7062848A1AB005C
|
|
729
733
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys 141F07595B7B3FFE74309A937405533BE57C7D57
|
|
730
734
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys 74F12602B6F1C4E913FAA37AD3A89613643B6201
|
|
731
|
-
gpg --keyserver hkps://keys.openpgp.org --recv-keys 61FC681DFB92A079F1685E77973F295594EC4689
|
|
732
735
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600
|
|
733
736
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8
|
|
734
737
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4
|
|
@@ -761,6 +764,8 @@ verify a downloaded file.
|
|
|
761
764
|
`71DCFD284A79C3B38668286BC97EC7A07EDE3FC1`
|
|
762
765
|
* **Jeremiah Senkpiel** <<fishrock@keybase.io>>
|
|
763
766
|
`FD3A5288F042B6850C66B31F09FE44734EB7990E`
|
|
767
|
+
* **Juan José Arboleda** <<soyjuanarbol@gmail.com>>
|
|
768
|
+
`61FC681DFB92A079F1685E77973F295594EC4689`
|
|
764
769
|
* **Julien Gilli** <<jgilli@fastmail.fm>>
|
|
765
770
|
`114F43EE0176B71C7BC219DD50A3051F888C628D`
|
|
766
771
|
* **Rod Vagg** <<rod@vagg.org>>
|
package/bin/node
CHANGED
|
Binary file
|
package/include/node/common.gypi
CHANGED
package/include/node/config.gypi
CHANGED
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
'lib/internal/assert.js',
|
|
71
71
|
'lib/internal/assert/assertion_error.js',
|
|
72
72
|
'lib/internal/assert/calltracker.js',
|
|
73
|
-
'lib/internal/assert/snapshot.js',
|
|
74
73
|
'lib/internal/async_hooks.js',
|
|
75
74
|
'lib/internal/blob.js',
|
|
76
75
|
'lib/internal/blocklist.js',
|
|
@@ -260,6 +259,7 @@
|
|
|
260
259
|
'lib/internal/test_runner/tap_stream.js',
|
|
261
260
|
'lib/internal/test_runner/test.js',
|
|
262
261
|
'lib/internal/test_runner/utils.js',
|
|
262
|
+
'lib/internal/test_runner/yaml_parser.js',
|
|
263
263
|
'lib/internal/timers.js',
|
|
264
264
|
'lib/internal/tls/secure-context.js',
|
|
265
265
|
'lib/internal/tls/secure-pair.js',
|
|
@@ -492,7 +492,7 @@ NAPI_EXTERN napi_status NAPI_CDECL napi_get_date_value(napi_env env,
|
|
|
492
492
|
// Add finalizer for pointer
|
|
493
493
|
NAPI_EXTERN napi_status NAPI_CDECL napi_add_finalizer(napi_env env,
|
|
494
494
|
napi_value js_object,
|
|
495
|
-
void*
|
|
495
|
+
void* finalize_data,
|
|
496
496
|
napi_finalize finalize_cb,
|
|
497
497
|
void* finalize_hint,
|
|
498
498
|
napi_ref* result);
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -491,9 +491,6 @@ Track heap object allocations for heap snapshots.
|
|
|
491
491
|
.It Fl -unhandled-rejections=mode
|
|
492
492
|
Define the behavior for unhandled rejections. Can be one of `strict` (raise an error), `warn` (enforce warnings) or `none` (silence warnings).
|
|
493
493
|
.
|
|
494
|
-
.It Fl -update-assert-snapshot
|
|
495
|
-
Updates snapshot files used by `assert.snapshot()`.
|
|
496
|
-
.
|
|
497
494
|
.It Fl -use-bundled-ca , Fl -use-openssl-ca
|
|
498
495
|
Use bundled Mozilla CA store as supplied by current Node.js version or use OpenSSL's default CA store.
|
|
499
496
|
The default store is selectable at build-time.
|