summaryrefslogtreecommitdiff
path: root/doc/api/buffer.md
diff options
context:
space:
mode:
authorMyles Borins <mylesborins@google.com>2017-12-07 15:07:03 -0500
committerMyles Borins <mylesborins@google.com>2017-12-08 08:55:41 -0500
commit8a44289089a08b7b19fa3c4651b5f1f5d1edd71b (patch)
tree980851d98f540e1f39f24f643623760a0a713904 /doc/api/buffer.md
parent42f09ed461a5ff63c6630b009903b59bb991781b (diff)
downloadnode-new-v8.9.3-proposal.tar.gz
2017-12-08, Version 8.9.3 'Carbon' (LTS)v8.9.3v8.9.3-proposal
This is a security release. All Node.js users should consult the security release summary at https://nodejs.org/en/blog/vulnerability/december-2017-security-releases/ for details on patched vulnerabilities. Fixes for the following CVEs are included in this release: * CVE-2017-15896 * CVE-2017-15897 * CVE-2017-3738 (from the openssl project) Notable Changes: * buffer: * buffer allocated with an invalid content will now be zero filled (Anna Henningsen) https://github.com/nodejs/node/pull/17428 * deps: * openssl updated to 1.0.2n (Shigeki Ohtsu) https://github.com/nodejs/node/pull/17526 PR-URL: https://github.com/nodejs/node/pull/17532
Diffstat (limited to 'doc/api/buffer.md')
-rw-r--r--doc/api/buffer.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/buffer.md b/doc/api/buffer.md
index c9f975770b..4a54a25bfc 100644
--- a/doc/api/buffer.md
+++ b/doc/api/buffer.md
@@ -511,7 +511,7 @@ console.log(buf2.toString());
<!-- YAML
added: v5.10.0
changes:
- - version: REPLACEME
+ - version: v8.9.3
pr-url: https://github.com/nodejs/node/pull/17428
description: Specifying an invalid string for `fill` now results in a
zero-filled buffer.