node-aix-ppc64 19.7.0 → 19.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.
@@ -696,6 +696,12 @@ NODE_EXTERN std::unique_ptr<InspectorParentHandle> GetInspectorParentHandle(
696
696
  ThreadId child_thread_id,
697
697
  const char* child_url);
698
698
 
699
+ NODE_EXTERN std::unique_ptr<InspectorParentHandle> GetInspectorParentHandle(
700
+ Environment* parent_env,
701
+ ThreadId child_thread_id,
702
+ const char* child_url,
703
+ const char* name);
704
+
699
705
  struct StartExecutionCallbackInfo {
700
706
  v8::Local<v8::Object> process_object;
701
707
  v8::Local<v8::Function> native_require;
@@ -175,6 +175,7 @@ NAPI_EXTERN napi_status NAPI_CDECL napi_get_buffer_info(napi_env env,
175
175
  void** data,
176
176
  size_t* length);
177
177
 
178
+ #ifndef __wasm32__
178
179
  // Methods to manage simple async operations
179
180
  NAPI_EXTERN napi_status NAPI_CDECL
180
181
  napi_create_async_work(napi_env env,
@@ -190,6 +191,7 @@ NAPI_EXTERN napi_status NAPI_CDECL napi_queue_async_work(napi_env env,
190
191
  napi_async_work work);
191
192
  NAPI_EXTERN napi_status NAPI_CDECL napi_cancel_async_work(napi_env env,
192
193
  napi_async_work work);
194
+ #endif // __wasm32__
193
195
 
194
196
  // version management
195
197
  NAPI_EXTERN napi_status NAPI_CDECL
@@ -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 7
26
+ #define NODE_MINOR_VERSION 8
27
27
  #define NODE_PATCH_VERSION 0
28
28
 
29
29
  #define NODE_VERSION_IS_LTS 0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-aix-ppc64",
3
- "version": "v19.7.0",
3
+ "version": "v19.8.0",
4
4
  "description": "node",
5
5
  "bin": {
6
6
  "node": "bin/node"
@@ -398,6 +398,12 @@ Starts the Node.js command line test runner.
398
398
  A regular expression that configures the test runner to only execute tests
399
399
  whose name matches the provided pattern.
400
400
  .
401
+ .It Fl -test-reporter
402
+ A test reporter to use when running tests.
403
+ .
404
+ .It Fl -test-reporter-destination
405
+ The destination for the corresponding test reporter.
406
+ .
401
407
  .It Fl -test-only
402
408
  Configures the test runner to only execute top level tests that have the `only`
403
409
  option set.