Skip to content

Commit 853bee0

Browse files
committed
lib: move DEP0023 to end of life
This commit moves DEP0023 to end of life status. The os.getNetworkInterfaces() method was introduced in the unstable 0.5.0 release, and runtime deprecated in 0.6.0, the first stable release of its existence. This commit also fixes an inaccuracy in the deprecation, as the replacement (os.networkInterfaces()) is actually a method. PR-URL: #25280 Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Anto Aravinth <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Сковорода Никита Андреевич <[email protected]> Reviewed-By: Matteo Collina <[email protected]>
1 parent 6c01621 commit 853bee0

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

doc/api/deprecations.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -513,6 +513,9 @@ The `os.tmpDir()` API is deprecated. Please use [`os.tmpdir()`][] instead.
513513
### DEP0023: os.getNetworkInterfaces()
514514
<!-- YAML
515515
changes:
516+
- version: REPLACEME
517+
pr-url: https://github.com/nodejs/node/pull/25280
518+
description: End-of-Life.
516519
- version:
517520
- v4.8.6
518521
- v6.12.0
@@ -523,10 +526,10 @@ changes:
523526
description: Runtime deprecation.
524527
-->
525528

526-
Type: Runtime
529+
Type: End-of-Life
527530

528531
The `os.getNetworkInterfaces()` method is deprecated. Please use the
529-
[`os.networkInterfaces`][] property instead.
532+
[`os.networkInterfaces()`][] method instead.
530533

531534
<a id="DEP0024"></a>
532535
### DEP0024: REPLServer.prototype.convertToContext()
@@ -2366,7 +2369,7 @@ Setting the TLS ServerName to an IP address is not permitted by
23662369
[`http.request()`]: http.html#http_http_request_options_callback
23672370
[`https.get()`]: https.html#https_https_get_options_callback
23682371
[`https.request()`]: https.html#https_https_request_options_callback
2369-
[`os.networkInterfaces`]: os.html#os_os_networkinterfaces
2372+
[`os.networkInterfaces()`]: os.html#os_os_networkinterfaces
23702373
[`os.tmpdir()`]: os.html#os_os_tmpdir
23712374
[`process.env`]: process.html#process_process_env
23722375
[`punycode`]: punycode.html

lib/os.js

-6
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,6 @@ const kEndianness = isBigEndian ? 'BE' : 'LE';
7878
const tmpDirDeprecationMsg =
7979
'os.tmpDir() is deprecated. Use os.tmpdir() instead.';
8080

81-
const getNetworkInterfacesDepMsg =
82-
'os.getNetworkInterfaces is deprecated. Use os.networkInterfaces instead.';
83-
8481
const avgValues = new Float64Array(3);
8582

8683
function loadavg() {
@@ -269,9 +266,6 @@ module.exports = {
269266
uptime: getUptime,
270267

271268
// Deprecated APIs
272-
getNetworkInterfaces: deprecate(getInterfaceAddresses,
273-
getNetworkInterfacesDepMsg,
274-
'DEP0023'),
275269
tmpDir: deprecate(tmpdir, tmpDirDeprecationMsg, 'DEP0022')
276270
};
277271

0 commit comments

Comments
 (0)