node-aix-ppc64 22.0.0 → 22.1.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.
@@ -537,6 +537,7 @@ class EmbedderSnapshotData {
537
537
  // If the snapshot is invalid, this returns an empty pointer.
538
538
  static Pointer FromFile(FILE* in);
539
539
  static Pointer FromBlob(const std::vector<char>& in);
540
+ static Pointer FromBlob(std::string_view in);
540
541
 
541
542
  // Write this EmbedderSnapshotData object to an output file.
542
543
  // Calling this method will not close the FILE* handle.
@@ -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 0
26
+ #define NODE_MINOR_VERSION 1
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": "v22.0.0",
3
+ "version": "v22.1.0",
4
4
  "description": "node",
5
5
  "bin": {
6
6
  "node": "bin/node"
@@ -442,7 +442,11 @@ option set.
442
442
  .
443
443
  .It Fl -test-shard
444
444
  Test suite shard to execute in a format of <index>/<total>.
445
-
445
+ .
446
+ .It Fl -test-skip-pattern
447
+ A regular expression that configures the test runner to skip tests
448
+ whose name matches the provided pattern.
449
+ .
446
450
  .It Fl -test-timeout
447
451
  A number of milliseconds the test execution will fail after.
448
452
  .