node-aix-ppc64 22.1.0 → 22.2.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.
- package/CHANGELOG.md +165 -0
- package/README.md +16 -14
- package/bin/node +0 -0
- package/include/node/common.gypi +34 -12
- package/include/node/config.gypi +6 -5
- package/include/node/node.exp +439 -169
- package/include/node/node.h +7 -3
- package/include/node/node_version.h +1 -1
- package/package.json +1 -1
- package/share/man/man1/node.1 +10 -11
package/include/node/node.h
CHANGED
|
@@ -349,7 +349,7 @@ NODE_DEPRECATED("Use InitializeOncePerProcess() instead",
|
|
|
349
349
|
// including the arguments split into argv/exec_argv, a list of potential
|
|
350
350
|
// errors encountered during initialization, and a potential suggested
|
|
351
351
|
// exit code.
|
|
352
|
-
NODE_EXTERN std::
|
|
352
|
+
NODE_EXTERN std::shared_ptr<InitializationResult> InitializeOncePerProcess(
|
|
353
353
|
const std::vector<std::string>& args,
|
|
354
354
|
ProcessInitializationFlags::Flags flags =
|
|
355
355
|
ProcessInitializationFlags::kNoFlags);
|
|
@@ -358,7 +358,7 @@ NODE_EXTERN std::unique_ptr<InitializationResult> InitializeOncePerProcess(
|
|
|
358
358
|
NODE_EXTERN void TearDownOncePerProcess();
|
|
359
359
|
// Convenience overload for specifying multiple flags without having
|
|
360
360
|
// to worry about casts.
|
|
361
|
-
inline std::
|
|
361
|
+
inline std::shared_ptr<InitializationResult> InitializeOncePerProcess(
|
|
362
362
|
const std::vector<std::string>& args,
|
|
363
363
|
std::initializer_list<ProcessInitializationFlags::Flags> list) {
|
|
364
364
|
uint64_t flags_accum = ProcessInitializationFlags::kNoFlags;
|
|
@@ -657,7 +657,11 @@ enum Flags : uint64_t {
|
|
|
657
657
|
// This control is needed by embedders who may not want to initialize the V8
|
|
658
658
|
// inspector in situations where one has already been created,
|
|
659
659
|
// e.g. Blink's in Chromium.
|
|
660
|
-
kNoCreateInspector = 1 << 9
|
|
660
|
+
kNoCreateInspector = 1 << 9,
|
|
661
|
+
// Controls where or not the InspectorAgent for this Environment should
|
|
662
|
+
// call StartDebugSignalHandler. This control is needed by embedders who may
|
|
663
|
+
// not want to allow other processes to start the V8 inspector.
|
|
664
|
+
kNoStartDebugSignalHandler = 1 << 10
|
|
661
665
|
};
|
|
662
666
|
} // namespace EnvironmentFlags
|
|
663
667
|
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -142,6 +142,11 @@ is `delete`, the property will be removed entirely. If
|
|
|
142
142
|
is `throw`, accesses to the property will throw an exception with the code
|
|
143
143
|
`ERR_PROTO_ACCESS`.
|
|
144
144
|
.
|
|
145
|
+
.It Fl -disable-wasm-trap-handler Ns = Ns Ar mode
|
|
146
|
+
Disable trap-handler-based WebAssembly bound checks and fall back to
|
|
147
|
+
inline bound checks so that WebAssembly can be run with limited virtual
|
|
148
|
+
memory.
|
|
149
|
+
.
|
|
145
150
|
.It Fl -disallow-code-generation-from-strings
|
|
146
151
|
Make built-in language features like `eval` and `new Function` that generate
|
|
147
152
|
code from strings throw an exception instead. This does not affect the Node.js
|
|
@@ -174,9 +179,6 @@ Enable experimental support for loading modules using `import` over `https:`.
|
|
|
174
179
|
.It Fl -experimental-permission
|
|
175
180
|
Enable the experimental permission model.
|
|
176
181
|
.
|
|
177
|
-
.It Fl -experimental-policy
|
|
178
|
-
Use the specified file as a security policy.
|
|
179
|
-
.
|
|
180
182
|
.It Fl -experimental-shadow-realm
|
|
181
183
|
Use this flag to enable ShadowRealm support.
|
|
182
184
|
.
|
|
@@ -279,6 +281,11 @@ and
|
|
|
279
281
|
Default is
|
|
280
282
|
.Sy stderr,http .
|
|
281
283
|
.
|
|
284
|
+
.It Fl -inspect-wait Ns = Ns Ar [host:]port
|
|
285
|
+
Activate inspector on
|
|
286
|
+
.Ar host:port
|
|
287
|
+
and wait for debugger to be attached.
|
|
288
|
+
.
|
|
282
289
|
.It Fl -inspect Ns = Ns Ar [host:]port
|
|
283
290
|
Activate inspector on
|
|
284
291
|
.Ar host:port .
|
|
@@ -343,9 +350,6 @@ Among other uses, this can be used to enable FIPS-compliant crypto if Node.js is
|
|
|
343
350
|
.It Fl -pending-deprecation
|
|
344
351
|
Emit pending deprecation warnings.
|
|
345
352
|
.
|
|
346
|
-
.It Fl -policy-integrity Ns = Ns Ar sri
|
|
347
|
-
Instructs Node.js to error prior to running any code if the policy does not have the specified integrity. It expects a Subresource Integrity string as a parameter.
|
|
348
|
-
.
|
|
349
353
|
.It Fl -preserve-symlinks
|
|
350
354
|
Instructs the module loader to preserve symbolic links when resolving and caching modules other than the main module.
|
|
351
355
|
.
|
|
@@ -798,8 +802,3 @@ GitHub repository and issue tracker:
|
|
|
798
802
|
IRC (general questions):
|
|
799
803
|
.Sy "libera.chat #node.js"
|
|
800
804
|
(unofficial)
|
|
801
|
-
.
|
|
802
|
-
.\"======================================================================
|
|
803
|
-
.Sh AUTHORS
|
|
804
|
-
Written and maintained by 1000+ contributors:
|
|
805
|
-
.Sy https://github.com/nodejs/node/blob/HEAD/AUTHORS
|