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:
authorAntoine du Hamel <duhamelantoine1995@gmail.com>2022-03-09 22:34:29 +0300
committerBryan English <bryan@bryanenglish.com>2022-03-21 20:19:02 +0300
commitfd51e7896307b1c8ff31ff9e6485529c6eddf9e1 (patch)
treea0e1434f45f8d81f1f23c9df5242c9c281405752
parent4fd2aff42e2d3a256b972e2f46052ebe8101525d (diff)
doc: fix version history for `net.Socket` and `net.Server`
Refs: https://github.com/nodejs/node/pull/41310 Backport-PR-URL: https://github.com/nodejs/node/pull/42270 PR-URL: https://github.com/nodejs/node/pull/42268 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
-rw-r--r--doc/api/http.md4
-rw-r--r--doc/api/net.md4
2 files changed, 8 insertions, 0 deletions
diff --git a/doc/api/http.md b/doc/api/http.md
index 94d0aef8f2f..200bd0a9423 100644
--- a/doc/api/http.md
+++ b/doc/api/http.md
@@ -2830,6 +2830,10 @@ Found'`.
<!-- YAML
added: v0.1.13
changes:
+ - version: v17.7.0
+ pr-url: https://github.com/nodejs/node/pull/41310
+ description: The `noDelay`, `keepAlive` and `keepAliveInitialDelay`
+ options are supported now.
- version:
- v13.8.0
- v12.15.0
diff --git a/doc/api/net.md b/doc/api/net.md
index 31aaa0d5eec..cbfd16a6235 100644
--- a/doc/api/net.md
+++ b/doc/api/net.md
@@ -822,6 +822,10 @@ behavior.
<!-- YAML
added: v0.1.90
changes:
+ - version: v17.7.0
+ pr-url: https://github.com/nodejs/node/pull/41310
+ description: The `noDelay`, `keepAlive` and `keepAliveInitialDelay`
+ options are supported now.
- version: v12.10.0
pr-url: https://github.com/nodejs/node/pull/25436
description: Added `onread` option.