node-aix-ppc64 22.7.0 → 22.9.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 22
26
- #define NODE_MINOR_VERSION 7
26
+ #define NODE_MINOR_VERSION 9
27
27
  #define NODE_PATCH_VERSION 0
28
28
 
29
29
  #define NODE_VERSION_IS_LTS 0
@@ -9,6 +9,7 @@
9
9
  #include <stdint.h>
10
10
 
11
11
  #include <memory>
12
+ #include <string>
12
13
  #include <utility>
13
14
 
14
15
  #include "cppgc/common.h"
@@ -1711,6 +1712,12 @@ class V8_EXPORT Isolate {
1711
1712
  */
1712
1713
  void LocaleConfigurationChangeNotification();
1713
1714
 
1715
+ /**
1716
+ * Returns the default locale in a string if Intl support is enabled.
1717
+ * Otherwise returns an empty string.
1718
+ */
1719
+ std::string GetDefaultLocale();
1720
+
1714
1721
  Isolate() = delete;
1715
1722
  ~Isolate() = delete;
1716
1723
  Isolate(const Isolate&) = delete;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-aix-ppc64",
3
- "version": "v22.7.0",
3
+ "version": "v22.9.0",
4
4
  "description": "node",
5
5
  "bin": {
6
6
  "node": "bin/node"
@@ -185,6 +185,9 @@ Enable the experimental node:sqlite module.
185
185
  .It Fl -experimental-test-coverage
186
186
  Enable code coverage in the test runner.
187
187
  .
188
+ .It Fl -experimental-test-isolation Ns = Ns Ar mode
189
+ Configures the type of test isolation used in the test runner.
190
+ .
188
191
  .It Fl -experimental-test-module-mocks
189
192
  Enable module mocking in the test runner.
190
193
  .
@@ -447,12 +450,21 @@ Starts the Node.js command line test runner.
447
450
  The maximum number of test files that the test runner CLI will execute
448
451
  concurrently.
449
452
  .
453
+ .It Fl -test-coverage-branches Ns = Ns Ar threshold
454
+ Require a minimum threshold for branch coverage (0 - 100).
455
+ .
450
456
  .It Fl -test-coverage-exclude
451
457
  A glob pattern that excludes matching files from the coverage report
452
458
  .
459
+ .It Fl -test-coverage-functions Ns = Ns Ar threshold
460
+ Require a minimum threshold for function coverage (0 - 100).
461
+ .
453
462
  .It Fl -test-coverage-include
454
463
  A glob pattern that only includes matching files in the coverage report
455
464
  .
465
+ .It Fl -test-coverage-lines Ns = Ns Ar threshold
466
+ Require a minimum threshold for line coverage (0 - 100).
467
+ .
456
468
  .It Fl -test-force-exit
457
469
  Configures the test runner to exit the process once all known tests have
458
470
  finished executing even if the event loop would otherwise remain active.