Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMyles Borins <mylesborins@github.com>2021-04-05 19:58:43 +0300
committerMyles Borins <mylesborins@github.com>2021-04-06 22:55:23 +0300
commit78b6f389d0f83b27178512baefe3872c4046c0a7 (patch)
tree69a3b4533eb97b2e945cace383f66be678fd2f2b /doc/api/net.md
parent1522a93646c5e6f9dd25f1e18874b2ce6c0be3ad (diff)
2021-04-06, Version 15.14.0 (Current)
Notable Changes: This is a security release. Vulnerabilities fixed: - **CVE-2021-3450**: OpenSSL - CA certificate check bypass with X509_V_FLAG_X509_STRICT (High) - **CVE-2021-3449**: OpenSSL - NULL pointer deref in signature_algorithms processing (High) - **CVE-2020-7774**: npm upgrade - Update y18n to fix Prototype-Pollution (High) Other Notable changes: fs: * (SEMVER-MINOR) add support for async iterators to `fsPromises.writeFile` (HiroyukiYagihashi) https://github.com/nodejs/node/pull/37490 net: * (SEMVER-MINOR) allow net.BlockList to use net.SocketAddress objects (James M Snell) https://github.com/nodejs/node/pull/37917 * (SEMVER-MINOR) add SocketAddress class (James M Snell) https://github.com/nodejs/node/pull/37917 * (SEMVER-MINOR) make net.BlockList cloneable (James M Snell) https://github.com/nodejs/node/pull/37917 net,tls: * (SEMVER-MINOR) add abort signal support to connect (Nitzan Uziely) https://github.com/nodejs/node/pull/37735 readline: * (SEMVER-MINOR) add AbortSignal support to interface (Nitzan Uziely) https://github.com/nodejs/node/pull/37932 PR-URL: https://github.com/nodejs/node/pull/38084
Diffstat (limited to 'doc/api/net.md')
-rw-r--r--doc/api/net.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/api/net.md b/doc/api/net.md
index 9a4b48317ea..699b1ba4d57 100644
--- a/doc/api/net.md
+++ b/doc/api/net.md
@@ -138,11 +138,11 @@ The list of rules added to the blocklist.
## Class: `net.SocketAddress`
<!-- YAML
-added: REPLACEME
+added: v15.14.0
-->
### `new net.SocketAddress([options])`
<!-- YAML
-added: REPLACEME
+added: v15.14.0
-->
* `options` {Object}
@@ -155,28 +155,28 @@ added: REPLACEME
### `socketaddress.address`
<!-- YAML
-added: REPLACEME
+added: v15.14.0
-->
* Type {string}
### `socketaddress.family`
<!-- YAML
-added: REPLACEME
+added: v15.14.0
-->
* Type {string} Either `'ipv4'` or `'ipv6'`.
### `socketaddress.flowlabel`
<!-- YAML
-added: REPLACEME
+added: v15.14.0
-->
* Type {number}
### `socketaddress.port`
<!-- YAML
-added: REPLACEME
+added: v15.14.0
-->
* Type {number}
@@ -543,7 +543,7 @@ it to interact with the client.
<!-- YAML
added: v0.3.4
changes:
- - version: REPLACEME
+ - version: v15.14.0
pr-url: https://github.com/nodejs/node/pull/37735
description: AbortSignal support was added.
-->