node-aix-ppc64 24.6.0 → 24.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.
@@ -758,6 +758,12 @@ NODE_EXTERN std::unique_ptr<InspectorParentHandle> GetInspectorParentHandle(
758
758
  const char* child_url,
759
759
  const char* name);
760
760
 
761
+ NODE_EXTERN std::unique_ptr<InspectorParentHandle> GetInspectorParentHandle(
762
+ Environment* parent_env,
763
+ ThreadId child_thread_id,
764
+ std::string_view child_url,
765
+ std::string_view name);
766
+
761
767
  struct StartExecutionCallbackInfo {
762
768
  v8::Local<v8::Object> process_object;
763
769
  v8::Local<v8::Function> native_require;
@@ -23,7 +23,7 @@
23
23
  #define SRC_NODE_VERSION_H_
24
24
 
25
25
  #define NODE_MAJOR_VERSION 24
26
- #define NODE_MINOR_VERSION 6
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": "v24.6.0",
3
+ "version": "v24.8.0",
4
4
  "description": "node",
5
5
  "bin": {
6
6
  "node": "bin/node"
@@ -490,6 +490,10 @@ A test reporter to use when running tests.
490
490
  .It Fl -test-reporter-destination
491
491
  The destination for the corresponding test reporter.
492
492
  .
493
+ .It Fl -test-rerun-failures
494
+ Configures the tests runner to persist the state of tests to allow
495
+ rerunning only failed tests.
496
+ .
493
497
  .It Fl -test-only
494
498
  Configures the test runner to only execute top level tests that have the `only`
495
499
  option set.