node-aix-ppc64 19.3.0 → 19.5.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.
@@ -23,7 +23,7 @@
23
23
  #define SRC_NODE_VERSION_H_
24
24
 
25
25
  #define NODE_MAJOR_VERSION 19
26
- #define NODE_MINOR_VERSION 3
26
+ #define NODE_MINOR_VERSION 5
27
27
  #define NODE_PATCH_VERSION 0
28
28
 
29
29
  #define NODE_VERSION_IS_LTS 0
@@ -398,7 +398,8 @@ constexpr uint64_t kAllExternalPointerTypeTags[] = {
398
398
  V(kWasmInternalFunctionCallTargetTag, sandboxed, TAG(17)) \
399
399
  V(kWasmTypeInfoNativeTypeTag, sandboxed, TAG(18)) \
400
400
  V(kWasmExportedFunctionDataSignatureTag, sandboxed, TAG(19)) \
401
- V(kWasmContinuationJmpbufTag, sandboxed, TAG(20))
401
+ V(kWasmContinuationJmpbufTag, sandboxed, TAG(20)) \
402
+ V(kArrayBufferExtensionTag, sandboxed, TAG(21))
402
403
 
403
404
  // All external pointer tags.
404
405
  #define ALL_EXTERNAL_POINTER_TAGS(V) \
@@ -11,7 +11,7 @@
11
11
  #define V8_MAJOR_VERSION 10
12
12
  #define V8_MINOR_VERSION 8
13
13
  #define V8_BUILD_NUMBER 168
14
- #define V8_PATCH_LEVEL 21
14
+ #define V8_PATCH_LEVEL 25
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-aix-ppc64",
3
- "version": "v19.3.0",
3
+ "version": "v19.5.0",
4
4
  "description": "node",
5
5
  "bin": {
6
6
  "node": "bin/node"
@@ -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.