summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2019-01-07 12:42:17 -0500
committercjihrig <cjihrig@gmail.com>2019-01-10 08:59:57 -0500
commit2d578ad996de13acbe1227a8565c89dcd95d8bc8 (patch)
treebabe6ad7e611efb7ca5aa75b135e00d9a8139005 /doc
parentdce2f3ed93ffd3a6374a4e578f686343494519ad (diff)
downloadandroid-node-v8-2d578ad996de13acbe1227a8565c89dcd95d8bc8.tar.gz
android-node-v8-2d578ad996de13acbe1227a8565c89dcd95d8bc8.tar.bz2
android-node-v8-2d578ad996de13acbe1227a8565c89dcd95d8bc8.zip
lib: move DEP0026 to end of life
PR-URL: https://github.com/nodejs/node/pull/25377 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/deprecations.md9
-rw-r--r--doc/api/util.md10
2 files changed, 5 insertions, 14 deletions
diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md
index 215c4767c4..63faf07626 100644
--- a/doc/api/deprecations.md
+++ b/doc/api/deprecations.md
@@ -569,6 +569,9 @@ The `sys` module is deprecated. Please use the [`util`][] module instead.
### DEP0026: util.print()
<!-- YAML
changes:
+ - version: REPLACEME
+ pr-url: https://github.com/nodejs/node/pull/xxxxx
+ description: End-of-Life.
- version:
- v4.8.6
- v6.12.0
@@ -579,10 +582,9 @@ changes:
description: Runtime deprecation.
-->
-Type: Runtime
+Type: End-of-Life
-The [`util.print()`][] API is deprecated. Please use [`console.log()`][]
-instead.
+`util.print()` has been removed. Please use [`console.log()`][] instead.
<a id="DEP0027"></a>
### DEP0027: util.puts()
@@ -2411,7 +2413,6 @@ Setting the TLS ServerName to an IP address is not permitted by
[`util.isSymbol()`]: util.html#util_util_issymbol_object
[`util.isUndefined()`]: util.html#util_util_isundefined_object
[`util.log()`]: util.html#util_util_log_string
-[`util.print()`]: util.html#util_util_print_strings
[`util.puts()`]: util.html#util_util_puts_strings
[`util.types`]: util.html#util_util_types
[`util`]: util.html
diff --git a/doc/api/util.md b/doc/api/util.md
index 3cb2c20ed0..db25a0be05 100644
--- a/doc/api/util.md
+++ b/doc/api/util.md
@@ -2167,16 +2167,6 @@ const util = require('util');
util.log('Timestamped message.');
```
-### util.print([...strings])
-<!-- YAML
-added: v0.3.0
-deprecated: v0.11.3
--->
-
-> Stability: 0 - Deprecated: Use [`console.log()`][] instead.
-
-Deprecated predecessor of `console.log`.
-
### util.puts([...strings])
<!-- YAML
added: v0.3.0