summaryrefslogtreecommitdiff
path: root/doc/api/https.md
diff options
context:
space:
mode:
authorRod Vagg <rod@vagg.org>2018-08-13 19:02:06 +1000
committerRod Vagg <rod@vagg.org>2018-08-16 11:52:38 +1000
commit97c1fa3d3b98bf1b28cf3362e197ae91093cf68f (patch)
tree0cb411de1f93f77852ba56d16f8191092ec258d8 /doc/api/https.md
parent1efdc5876dc00495994c806d2eba0638f6a355bf (diff)
downloadandroid-node-v8-97c1fa3d3b98bf1b28cf3362e197ae91093cf68f.tar.gz
android-node-v8-97c1fa3d3b98bf1b28cf3362e197ae91093cf68f.tar.bz2
android-node-v8-97c1fa3d3b98bf1b28cf3362e197ae91093cf68f.zip
2018-08-15, Version 10.9.0 (Current)
Notable changes: * buffer: * Fix out-of-bounds (OOB) write in `Buffer.write()` for UCS-2 encoding (CVE-2018-12115) * Fix unintentional exposure of uninitialized memory in `Buffer.alloc()` (CVE-2018-7166) * deps: * Upgrade to OpenSSL 1.1.0i, fixing: - Client DoS due to large DH parameter (CVE-2018-0732) - ECDSA key extraction via local side-channel (CVE not assigned) * Upgrade V8 from 6.7 to 6.8 (Michaƫl Zasso) #21079 - Memory reduction and performance improvements, details at: https://v8project.blogspot.com/2018/06/v8-release-68.html * http: `http.get()` and `http.request()` (and `https` variants) can now accept three arguments to allow for a `URL` _and_ an `options` object (Sam Ruby) #21616 * Added new collaborators * Sam Ruby (https://github.com/rubys) * George Adams (https://github.com/gdams)
Diffstat (limited to 'doc/api/https.md')
-rw-r--r--doc/api/https.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/https.md b/doc/api/https.md
index d36cfe927f..ce6da9ae81 100644
--- a/doc/api/https.md
+++ b/doc/api/https.md
@@ -116,7 +116,7 @@ https.createServer(options, (req, res) => {
<!-- YAML
added: v0.3.6
changes:
- - version: REPLACEME
+ - version: v10.9.0
pr-url: https://github.com/nodejs/node/pull/21616
description: allow both url and options to be passed to `https.get()`
- version: v7.5.0
@@ -164,7 +164,7 @@ Global instance of [`https.Agent`][] for all HTTPS client requests.
<!-- YAML
added: v0.3.6
changes:
- - version: REPLACEME
+ - version: v10.9.0
pr-url: https://github.com/nodejs/node/pull/21616
description: allow both url and options to be passed to `https.request()`
- version: v9.3.0