Skip to content

Commit 2a38168

Browse files
committed
2021-03-31, Version 15.13.0 (Current)
Notable changes: * buffer: * implement btoa and atob (James M Snell) #37529 * deps: * upgrade npm to 7.7.6 (Ruy Adorno) #37968 * doc: * add legacy status to stability index (James M Snell) #37784 * add @Linkgoron to collaborators (Nitzan Uziely) #37817 * http: * add http.ClientRequest.getRawHeaderNames() (simov) #37660
1 parent f2cef54 commit 2a38168

8 files changed

+118
-15
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ release.
3232
</tr>
3333
<tr>
3434
<td valign="top">
35-
<b><a href="doc/changelogs/CHANGELOG_V15.md#15.12.0">15.12.0</a></b><br/>
35+
<b><a href="doc/changelogs/CHANGELOG_V15.md#15.13.0">15.13.0</a></b><br/>
36+
<a href="doc/changelogs/CHANGELOG_V15.md#15.12.0">15.12.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V15.md#15.11.0">15.11.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V15.md#15.10.0">15.10.0</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V15.md#15.9.0">15.9.0</a><br/>

doc/api/buffer.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3279,7 +3279,7 @@ accessed using `require('buffer')`.
32793279

32803280
### `buffer.atob(data)`
32813281
<!-- YAML
3282-
added: REPLACEME
3282+
added: v15.13.0
32833283
-->
32843284

32853285
* `data` {any} The Base64-encoded input string.
@@ -3298,7 +3298,7 @@ and binary data should be performed using `Buffer.from(str, 'base64')` and
32983298

32993299
### `buffer.btoa(data)`
33003300
<!-- YAML
3301-
added: REPLACEME
3301+
added: v15.13.0
33023302
-->
33033303

33043304
* `data` {any} An ASCII (Latin1) string.

doc/api/child_process.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ controller.abort();
374374
<!-- YAML
375375
added: v0.5.0
376376
changes:
377-
- version: REPLACEME
377+
- version: v15.13.0
378378
pr-url: https://github.com/nodejs/node/pull/37256
379379
description: timeout was added.
380380
- version: v15.11.0
@@ -483,7 +483,7 @@ if (process.argv[2] === 'child') {
483483
<!-- YAML
484484
added: v0.1.90
485485
changes:
486-
- version: REPLACEME
486+
- version: v15.13.0
487487
pr-url: https://github.com/nodejs/node/pull/37256
488488
description: timeout was added.
489489
- version: v15.11.0

doc/api/deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2170,7 +2170,7 @@ future release.
21702170
### DEP0116: Legacy URL API
21712171
<!-- YAML
21722172
changes:
2173-
- version: REPLACEME
2173+
- version: v15.13.0
21742174
pr-url: https://github.com/nodejs/node/pull/37784
21752175
description: Deprecation revoked. Status changed to "Legacy".
21762176
- version: v11.0.0

doc/api/http.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ const cookie = request.getHeader('Cookie');
765765

766766
### `request.getRawHeaderNames()`
767767
<!-- YAML
768-
added: REPLACEME
768+
added: v15.13.0
769769
-->
770770

771771
* Returns: {string[]}

doc/api/url.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1101,7 +1101,7 @@ console.log(urlToHttpOptions(myUrl));
11011101
## Legacy URL API
11021102
<!-- YAML
11031103
changes:
1104-
- version: REPLACEME
1104+
- version: v15.13.0
11051105
pr-url: https://github.com/nodejs/node/pull/37784
11061106
description: Deprecation revoked. Status changed to "Legacy".
11071107
- version: v11.0.0
@@ -1114,7 +1114,7 @@ changes:
11141114
### Legacy `urlObject`
11151115
<!-- YAML
11161116
changes:
1117-
- version: REPLACEME
1117+
- version: v15.13.0
11181118
pr-url: https://github.com/nodejs/node/pull/37784
11191119
description: Deprecation revoked. Status changed to "Legacy".
11201120
- version: v11.0.0
@@ -1228,7 +1228,7 @@ forward-slash characters (`/`) are required following the colon in the
12281228
<!-- YAML
12291229
added: v0.1.25
12301230
changes:
1231-
- version: REPLACEME
1231+
- version: v15.13.0
12321232
pr-url: https://github.com/nodejs/node/pull/37784
12331233
description: Deprecation revoked. Status changed to "Legacy".
12341234
- version: v11.0.0
@@ -1324,7 +1324,7 @@ The formatting process operates as follows:
13241324
<!-- YAML
13251325
added: v0.1.25
13261326
changes:
1327-
- version: REPLACEME
1327+
- version: v15.13.0
13281328
pr-url: https://github.com/nodejs/node/pull/37784
13291329
description: Deprecation revoked. Status changed to "Legacy".
13301330
- version: v11.14.0
@@ -1371,7 +1371,7 @@ incorrect handling of usernames and passwords have been identified.
13711371
<!-- YAML
13721372
added: v0.1.25
13731373
changes:
1374-
- version: REPLACEME
1374+
- version: v15.13.0
13751375
pr-url: https://github.com/nodejs/node/pull/37784
13761376
description: Deprecation revoked. Status changed to "Legacy".
13771377
- version: v11.0.0

doc/changelogs/CHANGELOG_V15.md

+102
Large diffs are not rendered by default.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 15
26-
#define NODE_MINOR_VERSION 12
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 13
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)