node-aix-ppc64 18.11.0 → 19.0.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.
Files changed (39) hide show
  1. package/CHANGELOG.md +132 -1731
  2. package/bin/node +0 -0
  3. package/include/node/common.gypi +1 -1
  4. package/include/node/config.gypi +5 -5
  5. package/include/node/cppgc/common.h +0 -1
  6. package/include/node/node.exp +6371 -3068
  7. package/include/node/node.h +6 -6
  8. package/include/node/node_version.h +3 -3
  9. package/include/node/v8-callbacks.h +19 -5
  10. package/include/node/v8-context.h +12 -8
  11. package/include/node/v8-date.h +5 -0
  12. package/include/node/v8-embedder-heap.h +8 -3
  13. package/include/node/v8-exception.h +1 -1
  14. package/include/node/v8-function.h +8 -0
  15. package/include/node/v8-initialization.h +23 -49
  16. package/include/node/v8-internal.h +312 -123
  17. package/include/node/v8-isolate.h +26 -42
  18. package/include/node/v8-local-handle.h +5 -5
  19. package/include/node/v8-locker.h +0 -11
  20. package/include/node/v8-maybe.h +24 -1
  21. package/include/node/v8-message.h +2 -4
  22. package/include/node/v8-microtask-queue.h +1 -1
  23. package/include/node/v8-object.h +8 -15
  24. package/include/node/v8-persistent-handle.h +0 -2
  25. package/include/node/v8-platform.h +54 -25
  26. package/include/node/v8-primitive.h +8 -8
  27. package/include/node/v8-profiler.h +84 -22
  28. package/include/node/v8-regexp.h +2 -1
  29. package/include/node/v8-script.h +62 -6
  30. package/include/node/v8-template.h +13 -76
  31. package/include/node/v8-value-serializer.h +46 -23
  32. package/include/node/v8-version.h +3 -3
  33. package/include/node/v8-wasm.h +5 -62
  34. package/include/node/v8-weak-callback-info.h +0 -7
  35. package/include/node/v8config.h +247 -13
  36. package/package.json +1 -1
  37. package/share/doc/node/gdbinit +9 -1
  38. package/share/man/man1/node.1 +9 -6
  39. package/share/systemtap/tapset/node.stp +0 -146
package/bin/node CHANGED
Binary file
@@ -36,7 +36,7 @@
36
36
 
37
37
  # Reset this number to 0 on major V8 upgrades.
38
38
  # Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string': '-node.12',
39
+ 'v8_embedder_string': '-node.16',
40
40
 
41
41
  ##### V8 defaults for Node.js #####
42
42
 
@@ -22,6 +22,7 @@
22
22
  'libdir': 'lib',
23
23
  'llvm_version': '0.0',
24
24
  'napi_build_version': '8',
25
+ 'node_builtin_shareable_builtins': ['deps/cjs-module-lexer/lexer.js', 'deps/cjs-module-lexer/dist/lexer.js', 'deps/undici/undici.js'],
25
26
  'node_byteorder': 'big',
26
27
  'node_debug_lib': 'false',
27
28
  'node_enable_d8': 'false',
@@ -63,6 +64,7 @@
63
64
  'lib/http2.js',
64
65
  'lib/https.js',
65
66
  'lib/inspector.js',
67
+ 'lib/inspector/promises.js',
66
68
  'lib/internal/abort_controller.js',
67
69
  'lib/internal/assert.js',
68
70
  'lib/internal/assert/assertion_error.js',
@@ -118,7 +120,6 @@
118
120
  'lib/internal/dns/callback_resolver.js',
119
121
  'lib/internal/dns/promises.js',
120
122
  'lib/internal/dns/utils.js',
121
- 'lib/internal/dtrace.js',
122
123
  'lib/internal/encoding.js',
123
124
  'lib/internal/error_serdes.js',
124
125
  'lib/internal/errors.js',
@@ -274,6 +275,7 @@
274
275
  'lib/internal/wasm_web_api.js',
275
276
  'lib/internal/watch_mode/files_watcher.js',
276
277
  'lib/internal/watchdog.js',
278
+ 'lib/internal/webidl.js',
277
279
  'lib/internal/webstreams/adapters.js',
278
280
  'lib/internal/webstreams/compression.js',
279
281
  'lib/internal/webstreams/encoding.js',
@@ -319,7 +321,7 @@
319
321
  'lib/wasi.js',
320
322
  'lib/worker_threads.js',
321
323
  'lib/zlib.js'],
322
- 'node_module_version': 108,
324
+ 'node_module_version': 111,
323
325
  'node_no_browser_globals': 'false',
324
326
  'node_prefix': '/',
325
327
  'node_release_urlbase': 'https://nodejs.org/download/release/',
@@ -336,8 +338,6 @@
336
338
  'node_tag': '',
337
339
  'node_target_type': 'executable',
338
340
  'node_use_bundled_v8': 'true',
339
- 'node_use_dtrace': 'false',
340
- 'node_use_etw': 'false',
341
341
  'node_use_node_code_cache': 'true',
342
342
  'node_use_node_snapshot': 'true',
343
343
  'node_use_openssl': 'true',
@@ -347,7 +347,7 @@
347
347
  'openssl_is_fips': 'false',
348
348
  'openssl_quic': 'true',
349
349
  'ossfuzz': 'false',
350
- 'shlib_suffix': '108.a',
350
+ 'shlib_suffix': '111.a',
351
351
  'target_arch': 'ppc64',
352
352
  'v8_enable_31bit_smis_on_64bit_arch': 0,
353
353
  'v8_enable_gdbjit': 0,
@@ -5,7 +5,6 @@
5
5
  #ifndef INCLUDE_CPPGC_COMMON_H_
6
6
  #define INCLUDE_CPPGC_COMMON_H_
7
7
 
8
- // TODO(chromium:1056170): Remove dependency on v8.
9
8
  #include "v8config.h" // NOLINT(build/include_directory)
10
9
 
11
10
  namespace cppgc {