node-aix-ppc64 22.2.0 → 22.4.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 +290 -0
- package/LICENSE +1 -1
- package/README.md +8 -4
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +5 -1
- package/include/node/node.exp +446 -91
- package/include/node/node_version.h +1 -1
- package/include/node/v8-version.h +1 -1
- package/package.json +1 -1
- package/share/man/man1/node.1 +21 -5
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
#define V8_MAJOR_VERSION 12
|
|
12
12
|
#define V8_MINOR_VERSION 4
|
|
13
13
|
#define V8_BUILD_NUMBER 254
|
|
14
|
-
#define V8_PATCH_LEVEL
|
|
14
|
+
#define V8_PATCH_LEVEL 21
|
|
15
15
|
|
|
16
16
|
// Use 1 for candidates and 0 otherwise.
|
|
17
17
|
// (Boolean macro values are not supported by all preprocessors.)
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -88,6 +88,9 @@ Allow using native addons when using the permission model.
|
|
|
88
88
|
.It Fl -allow-child-process
|
|
89
89
|
Allow spawning process when using the permission model.
|
|
90
90
|
.
|
|
91
|
+
.It Fl -allow-wasi
|
|
92
|
+
Allow execution of WASI when using the permission model.
|
|
93
|
+
.
|
|
91
94
|
.It Fl -allow-worker
|
|
92
95
|
Allow creating worker threads when using the permission model.
|
|
93
96
|
.
|
|
@@ -185,12 +188,24 @@ Use this flag to enable ShadowRealm support.
|
|
|
185
188
|
.It Fl -experimental-test-coverage
|
|
186
189
|
Enable code coverage in the test runner.
|
|
187
190
|
.
|
|
191
|
+
.It Fl -experimental-test-module-mocks
|
|
192
|
+
Enable module mocking in the test runner.
|
|
193
|
+
.
|
|
194
|
+
.It Fl -experimental-test-snapshots
|
|
195
|
+
Enable snapshot testing in the test runner.
|
|
196
|
+
.
|
|
197
|
+
.It Fl -experimental-eventsource
|
|
198
|
+
Enable experimental support for the EventSource Web API.
|
|
199
|
+
.
|
|
188
200
|
.It Fl -no-experimental-fetch
|
|
189
201
|
Disable experimental support for the Fetch API.
|
|
190
202
|
.
|
|
191
203
|
.It Fl -no-experimental-websocket
|
|
192
204
|
Disable experimental support for the WebSocket API.
|
|
193
205
|
.
|
|
206
|
+
.It Fl -experimental-webstorage
|
|
207
|
+
Enable experimental support for the Web Storage API.
|
|
208
|
+
.
|
|
194
209
|
.It Fl -no-experimental-global-customevent
|
|
195
210
|
Disable exposition of the CustomEvent on the global scope.
|
|
196
211
|
.
|
|
@@ -310,6 +325,9 @@ other platforms, but the performance impact may be severe.
|
|
|
310
325
|
This flag is inherited from V8 and is subject to change upstream. It may
|
|
311
326
|
disappear in a non-semver-major release.
|
|
312
327
|
.
|
|
328
|
+
.It Fl -localstorage-file Ns = Ns Ar file
|
|
329
|
+
The file used to store localStorage data.
|
|
330
|
+
.
|
|
313
331
|
.It Fl -max-http-header-size Ns = Ns Ar size
|
|
314
332
|
Specify the maximum size of HTTP headers in bytes. Defaults to 16 KiB.
|
|
315
333
|
.
|
|
@@ -454,6 +472,9 @@ whose name matches the provided pattern.
|
|
|
454
472
|
.It Fl -test-timeout
|
|
455
473
|
A number of milliseconds the test execution will fail after.
|
|
456
474
|
.
|
|
475
|
+
.It Fl -test-update-snapshots
|
|
476
|
+
Regenerates the snapshot file used by the test runner for snapshot testing.
|
|
477
|
+
.
|
|
457
478
|
.It Fl -throw-deprecation
|
|
458
479
|
Throw errors for deprecations.
|
|
459
480
|
.
|
|
@@ -797,8 +818,3 @@ Documentation:
|
|
|
797
818
|
.Pp
|
|
798
819
|
GitHub repository and issue tracker:
|
|
799
820
|
.Sy https://github.com/nodejs/node
|
|
800
|
-
.
|
|
801
|
-
.Pp
|
|
802
|
-
IRC (general questions):
|
|
803
|
-
.Sy "libera.chat #node.js"
|
|
804
|
-
(unofficial)
|