node-aix-ppc64 22.15.0 → 22.16.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.
@@ -67,7 +67,8 @@
67
67
  #endif
68
68
 
69
69
  #ifdef _WIN32
70
- # define SIGKILL 9
70
+ #define SIGQUIT 3
71
+ #define SIGKILL 9
71
72
  #endif
72
73
 
73
74
  #include "v8.h" // NOLINT(build/include_order)
@@ -1386,6 +1387,12 @@ NODE_EXTERN void RequestInterrupt(Environment* env,
1386
1387
  * I/O from native code. */
1387
1388
  NODE_EXTERN async_id AsyncHooksGetExecutionAsyncId(v8::Isolate* isolate);
1388
1389
 
1390
+ /* Returns the id of the current execution context. If the return value is
1391
+ * zero then no execution has been set. This will happen if the user handles
1392
+ * I/O from native code. */
1393
+ NODE_EXTERN async_id
1394
+ AsyncHooksGetExecutionAsyncId(v8::Local<v8::Context> context);
1395
+
1389
1396
  /* Return same value as async_hooks.triggerAsyncId(); */
1390
1397
  NODE_EXTERN async_id AsyncHooksGetTriggerAsyncId(v8::Isolate* isolate);
1391
1398
 
@@ -23,7 +23,7 @@
23
23
  #define SRC_NODE_VERSION_H_
24
24
 
25
25
  #define NODE_MAJOR_VERSION 22
26
- #define NODE_MINOR_VERSION 15
26
+ #define NODE_MINOR_VERSION 16
27
27
  #define NODE_PATCH_VERSION 0
28
28
 
29
29
  #define NODE_VERSION_IS_LTS 1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-aix-ppc64",
3
- "version": "v22.15.0",
3
+ "version": "v22.16.0",
4
4
  "description": "node",
5
5
  "bin": {
6
6
  "node": "bin/node"
@@ -168,6 +168,12 @@ Interpret as either ES modules or CommonJS modules input via --eval or STDIN, wh
168
168
  .js or extensionless files with no sibling or parent package.json;
169
169
  .js or extensionless files whose nearest parent package.json lacks a "type" field, unless under node_modules.
170
170
  .
171
+ .It Fl -experimental-config-file
172
+ Specifies the configuration file to load.
173
+ .
174
+ .It Fl -experimental-default-config-file
175
+ Enable support for automatically loading node.config.json.
176
+ .
171
177
  .It Fl -experimental-import-meta-resolve
172
178
  Enable experimental ES modules support for import.meta.resolve().
173
179
  .