node-aix-ppc64 18.7.0 → 18.8.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 +238 -0
- package/README.md +11 -1
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +4 -2
- package/include/node/node.exp +202 -87
- package/include/node/node_api.h +1 -1
- package/include/node/node_version.h +1 -1
- package/include/node/v8-array-buffer.h +12 -0
- package/package.json +1 -1
- package/share/man/man1/node.1 +9 -0
package/include/node/node_api.h
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#ifdef BUILDING_NODE_EXTENSION
|
|
5
5
|
#ifdef _WIN32
|
|
6
|
-
// Building native
|
|
6
|
+
// Building native addon against node
|
|
7
7
|
#define NAPI_EXTERN __declspec(dllimport)
|
|
8
8
|
#elif defined(__wasm32__)
|
|
9
9
|
#define NAPI_EXTERN __attribute__((__import_module__("napi")))
|
|
@@ -256,6 +256,12 @@ class V8_EXPORT ArrayBuffer : public Object {
|
|
|
256
256
|
*/
|
|
257
257
|
std::shared_ptr<BackingStore> GetBackingStore();
|
|
258
258
|
|
|
259
|
+
/**
|
|
260
|
+
* More efficient shortcut for GetBackingStore()->Data(). The returned pointer
|
|
261
|
+
* is valid as long as the ArrayBuffer is alive.
|
|
262
|
+
*/
|
|
263
|
+
void* Data() const;
|
|
264
|
+
|
|
259
265
|
V8_INLINE static ArrayBuffer* Cast(Value* value) {
|
|
260
266
|
#ifdef V8_ENABLE_CHECKS
|
|
261
267
|
CheckCast(value);
|
|
@@ -414,6 +420,12 @@ class V8_EXPORT SharedArrayBuffer : public Object {
|
|
|
414
420
|
*/
|
|
415
421
|
std::shared_ptr<BackingStore> GetBackingStore();
|
|
416
422
|
|
|
423
|
+
/**
|
|
424
|
+
* More efficient shortcut for GetBackingStore()->Data(). The returned pointer
|
|
425
|
+
* is valid as long as the ArrayBuffer is alive.
|
|
426
|
+
*/
|
|
427
|
+
void* Data() const;
|
|
428
|
+
|
|
417
429
|
V8_INLINE static SharedArrayBuffer* Cast(Value* value) {
|
|
418
430
|
#ifdef V8_ENABLE_CHECKS
|
|
419
431
|
CheckCast(value);
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -432,6 +432,7 @@ favour of TLSv1.3, which is more secure.
|
|
|
432
432
|
Print short summaries of calls to
|
|
433
433
|
.Sy Atomics.wait() .
|
|
434
434
|
.
|
|
435
|
+
This flag is deprecated.
|
|
435
436
|
.It Fl -trace-deprecation
|
|
436
437
|
Print stack traces for deprecations.
|
|
437
438
|
.
|
|
@@ -648,6 +649,7 @@ instead of printing to stderr.
|
|
|
648
649
|
Equivalent to passing
|
|
649
650
|
.Fl -redirect-warnings Ar file
|
|
650
651
|
on the command line.
|
|
652
|
+
.
|
|
651
653
|
.It Ev NODE_REPL_HISTORY Ar file
|
|
652
654
|
Path to the
|
|
653
655
|
.Ar file
|
|
@@ -657,6 +659,10 @@ The default path is
|
|
|
657
659
|
which is overridden by this variable.
|
|
658
660
|
Setting the value to an empty string ("" or " ") will disable persistent REPL history.
|
|
659
661
|
.
|
|
662
|
+
.It Ev NODE_REPL_EXTERNAL_MODULE Ar file
|
|
663
|
+
Path to a Node.js module which will be loaded in place of the built-in REPL.
|
|
664
|
+
Overriding this value to an empty string (`''`) will use the built-in REPL.
|
|
665
|
+
.
|
|
660
666
|
.It Ev NODE_SKIP_PLATFORM_CHECK
|
|
661
667
|
When set to
|
|
662
668
|
.Ar 1 ,
|
|
@@ -692,6 +698,9 @@ If
|
|
|
692
698
|
.Fl -use-openssl-ca
|
|
693
699
|
is enabled, this overrides and sets OpenSSL's file containing trusted certificates.
|
|
694
700
|
.
|
|
701
|
+
.It Ev TZ
|
|
702
|
+
Specify the timezone configuration.
|
|
703
|
+
.
|
|
695
704
|
.It Ev UV_THREADPOOL_SIZE Ar size
|
|
696
705
|
Sets the number of threads used in libuv's threadpool to
|
|
697
706
|
.Ar size .
|