From 71a77222434b6fd961303f1e1150c2b9f309dea1 Mon Sep 17 00:00:00 2001 From: Ruy Adorno Date: Mon, 29 Mar 2021 22:56:12 -0400 Subject: [PATCH] 2021-03-31, Version 15.13.0 (Current) PR-URL: https://github.com/nodejs/node/pull/37977 Notable changes: * buffer: * implement btoa and atob (James M Snell) https://github.com/nodejs/node/pull/37529 * deps: * upgrade npm to 7.7.6 (Ruy Adorno) https://github.com/nodejs/node/pull/37968 * doc: * add legacy status to stability index (James M Snell) https://github.com/nodejs/node/pull/37784 * add @linkgoron to collaborators (Nitzan Uziely) https://github.com/nodejs/node/pull/37817 * http: * add http.ClientRequest.getRawHeaderNames() (simov) https://github.com/nodejs/node/pull/37660 --- CHANGELOG.md | 3 +- doc/api/buffer.md | 4 +- doc/api/child_process.md | 4 +- doc/api/deprecations.md | 2 +- doc/api/http.md | 2 +- doc/api/url.md | 10 +-- doc/changelogs/CHANGELOG_V15.md | 104 ++++++++++++++++++++++++++++++++ src/node_version.h | 6 +- 8 files changed, 120 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb8cc9457dbbff..6b038b978dd01f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,7 +32,8 @@ release. -15.12.0
+15.13.0
+15.12.0
15.11.0
15.10.0
15.9.0
diff --git a/doc/api/buffer.md b/doc/api/buffer.md index f31b8b298b02eb..3334c260125338 100644 --- a/doc/api/buffer.md +++ b/doc/api/buffer.md @@ -3279,7 +3279,7 @@ accessed using `require('buffer')`. ### `buffer.atob(data)` * `data` {any} The Base64-encoded input string. @@ -3298,7 +3298,7 @@ and binary data should be performed using `Buffer.from(str, 'base64')` and ### `buffer.btoa(data)` * `data` {any} An ASCII (Latin1) string. diff --git a/doc/api/child_process.md b/doc/api/child_process.md index aace7566e49764..5284028a813458 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -374,7 +374,7 @@ controller.abort(); * Returns: {string[]} diff --git a/doc/api/url.md b/doc/api/url.md index 8ad7c5eed5019a..ce528f5f6c8007 100644 --- a/doc/api/url.md +++ b/doc/api/url.md @@ -1101,7 +1101,7 @@ console.log(urlToHttpOptions(myUrl)); ## Legacy URL API