summaryrefslogtreecommitdiff
path: root/doc/api/deprecations.md
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2019-01-31 03:29:30 +0800
committerJoyee Cheung <joyeec9h3@gmail.com>2019-02-02 05:45:05 +0800
commitfa5e09753055edfe0e9a0f700dfcb4f356ac3c9d (patch)
tree9bca96daf093b2bd96791b794efd9197b5c29cca /doc/api/deprecations.md
parent154efc9bdef3ba8df5d3dfe3b32102baf3ac4311 (diff)
downloadandroid-node-v8-fa5e09753055edfe0e9a0f700dfcb4f356ac3c9d.tar.gz
android-node-v8-fa5e09753055edfe0e9a0f700dfcb4f356ac3c9d.tar.bz2
android-node-v8-fa5e09753055edfe0e9a0f700dfcb4f356ac3c9d.zip
process: move DEP0062 (node --debug) to end-of-life
This has already been practically end-of-life since `node --debug` alone would exit the process. This patch drops support of `node --inspect --debug-brk` as well. `node --inspect --debug-brk` has been deprecated since v8, it has been maintained so that vendors can target Node.js v6 and above without detecting versions. The support of `--inspect`, which starts from v6, will reach end-of-life in April 2019, it should be safe to drop the support of `--inspect --debug-brk` altogether in v12. Also removes `process._deprecatedDebugBrk` PR-URL: https://github.com/nodejs/node/pull/25828 Refs: https://github.com/nodejs/node/pull/12949 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Eugene Ostroukhov <eostroukhov@google.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'doc/api/deprecations.md')
-rw-r--r--doc/api/deprecations.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md
index ecaea8f4d9..169b5a5131 100644
--- a/doc/api/deprecations.md
+++ b/doc/api/deprecations.md
@@ -1279,9 +1279,12 @@ changes:
- version: v8.0.0
pr-url: https://github.com/nodejs/node/pull/10970
description: Runtime deprecation.
+ - version: REPLACEME
+ pr-url: https://github.com/nodejs/node/pull/25828
+ description: End-of-Life.
-->
-Type: Runtime
+Type: End-Of-Life
`--debug` activates the legacy V8 debugger interface, which was removed as
of V8 5.8. It is replaced by Inspector which is activated with `--inspect`