File tree 4 files changed +19
-1
lines changed
4 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -1217,8 +1217,11 @@ for TLSv1.2, which is not as secure as TLSv1.3.
1217
1217
1218
1218
<!-- YAML
1219
1219
added: v14.3.0
1220
+ deprecated: REPLACEME
1220
1221
-->
1221
1222
1223
+ > Stability: 0 - Deprecated
1224
+
1222
1225
Print short summaries of calls to [ ` Atomics.wait() ` ] [ ] to stderr.
1223
1226
The output could look like this:
1224
1227
Original file line number Diff line number Diff line change @@ -3169,13 +3169,27 @@ Type: Documentation-only
3169
3169
` code ` values other than ` undefined ` , ` null ` , integer numbers and integer
3170
3170
strings (e.g., '1') are deprecated as parameter in [ ` process.exit() ` ] [ ] .
3171
3171
3172
+ ### DEP0165: ` --trace-atomics-wait `
3173
+
3174
+ <!-- YAML
3175
+ changes:
3176
+ - version: REPLACEME
3177
+ pr-url: https://github.com/nodejs/node/pull/44093
3178
+ description: Documentation-only deprecation.
3179
+ -->
3180
+
3181
+ Type: Documentation-only
3182
+
3183
+ The [ ` --trace-atomics-wait ` ] [ ] flag is deprecated.
3184
+
3172
3185
[ Legacy URL API ] : url.md#legacy-url-api
3173
3186
[ NIST SP 800-38D ] : https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf
3174
3187
[ RFC 6066 ] : https://tools.ietf.org/html/rfc6066#section-3
3175
3188
[ WHATWG URL API ] : url.md#the-whatwg-url-api
3176
3189
[ `"exports"` or `"main"` entry ] : packages.md#main-entry-point-export
3177
3190
[ `--pending-deprecation` ] : cli.md#--pending-deprecation
3178
3191
[ `--throw-deprecation` ] : cli.md#--throw-deprecation
3192
+ [ `--trace-atomics-wait` ] : cli.md#--trace-atomics-wait
3179
3193
[ `--unhandled-rejections` ] : cli.md#--unhandled-rejectionsmode
3180
3194
[ `Buffer.allocUnsafeSlow(size)` ] : buffer.md#static-method-bufferallocunsafeslowsize
3181
3195
[ `Buffer.from(array)` ] : buffer.md#static-method-bufferfromarray
Original file line number Diff line number Diff line change @@ -432,6 +432,7 @@ favour of TLSv1.3, which is more secure.
432
432
Print short summaries of calls to
433
433
.Sy Atomics.wait() .
434
434
.
435
+ This flag is deprecated.
435
436
.It Fl -trace-deprecation
436
437
Print stack traces for deprecations.
437
438
.
Original file line number Diff line number Diff line change @@ -540,7 +540,7 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() {
540
540
&EnvironmentOptions::throw_deprecation,
541
541
kAllowedInEnvironment );
542
542
AddOption (" --trace-atomics-wait" ,
543
- " trace Atomics.wait() operations" ,
543
+ " (deprecated) trace Atomics.wait() operations" ,
544
544
&EnvironmentOptions::trace_atomics_wait,
545
545
kAllowedInEnvironment );
546
546
AddOption (" --trace-deprecation" ,
You can’t perform that action at this time.
0 commit comments