From 82bc5c3d5c8645d01fe26ade1f75d926a6fb40ae 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 ++++++++++++++++++++++++++++++++ 7 files changed, 117 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75893626c92314..3970d651f739e1 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 60c073287baee9..0dbbb1250056fa 100644 --- a/doc/api/buffer.md +++ b/doc/api/buffer.md @@ -3279,7 +3279,7 @@ accessed using `require('buffer')`. ### `buffer.atob(data)` > Stability: 3 - Legacy. Use `Buffer.from(data, 'base64')` instead. @@ -3300,7 +3300,7 @@ and binary data should be performed using `Buffer.from(str, 'base64')` and ### `buffer.btoa(data)` > Stability: 3 - Legacy. Use `buf.toString('base64')` instead. diff --git a/doc/api/child_process.md b/doc/api/child_process.md index e14cd95795074a..6e1705386b8fc9 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