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:
authorMichaël Zasso <targos@protonmail.com>2019-11-05 12:55:13 +0300
committerMichaël Zasso <targos@protonmail.com>2019-11-05 21:39:20 +0300
commit309e1eae797d3060126ef2e13ee0ab124808f575 (patch)
tree5dd79bac549d3d51d9e4a36f06583456e08b3927 /doc/api/dgram.md
parent837fe533f7d2cc824f7f6f08ccab74969c46f886 (diff)
2019-11-05, Version 13.1.0 (Current)
Notable changes: * cli: * Added a new flag (`--trace-uncaught`) that makes Node.js print the stack trace at the time of throwing uncaught exceptions, rather than at the creation of the `Error` object, if there is any. This is disabled by default because it affects GC behavior. https://github.com/nodejs/node/pull/30025 * crypto * Added `Hash.prototype.copy()` method. It returns a new `Hash` object with its internal state cloned from the original one. https://github.com/nodejs/node/pull/29910 * dgram * Added source-specific multicast support. This adds methods to Datagram sockets to support RFC 4607 (https://tools.ietf.org/html/rfc4607) for IPv4 and IPv6. https://github.com/nodejs/node/pull/15735 * fs * Added a `bufferSize` option to `fs.opendir()`. It allows to control the number of entries that are buffered internally when reading from the directory. https://github.com/nodejs/node/pull/30114 * meta * Added Chengzhong Wu (https://github.com/legendecas) to collaborators. https://github.com/nodejs/node/pull/30115 PR-URL: https://github.com/nodejs/node/pull/30262
Diffstat (limited to 'doc/api/dgram.md')
-rw-r--r--doc/api/dgram.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/dgram.md b/doc/api/dgram.md
index 8639f894604..6499282d053 100644
--- a/doc/api/dgram.md
+++ b/doc/api/dgram.md
@@ -125,7 +125,7 @@ if (cluster.isMaster) {
### socket.addSourceSpecificMembership(sourceAddress, groupAddress\[, multicastInterface\])
<!-- YAML
-added: REPLACEME
+added: v13.1.0
-->
* `sourceAddress` {string}
* `groupAddress` {string}
@@ -314,7 +314,7 @@ drop membership on all valid interfaces.
### socket.dropSourceSpecificMembership(sourceAddress, groupAddress\[, multicastInterface\])
<!-- YAML
-added: REPLACEME
+added: v13.1.0
-->
* `sourceAddress` {string}