Skip to content

Commit 5fe188e

Browse files
committed
2021-01-22, Version 15.7.0 (Current)
PR-URL: #37020 Notable changes: * buffer: * introduce Blob (James M Snell) [#36811](#36811) * add base64url encoding option (Filip Skokan) [#36952](#36952) * doc: * add @iansu to collaborators (Ian Sutherland) [#36951](#36951) * add @RaisinTen to collaborators (Darshan Sen) [#36998](#36998) * add @miladfarca to collaborators (Milad Fa) [#36934](#36934) * fs: * allow position parameter to be a BigInt in read and readSync (raisinten) [#36190](#36190) * http: * attach request as res.req (Ian Storm Taylor) [#36505](#36505) * expose urlToHttpOptions utility (Yongsheng Zhang) [#35960](#35960)
1 parent e52e860 commit 5fe188e

File tree

8 files changed

+119
-16
lines changed

8 files changed

+119
-16
lines changed

Diff for: 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.6.0">15.6.0</a></b><br/>
35+
<b><a href="doc/changelogs/CHANGELOG_V15.md#15.7.0">15.7.0</a></b><br/>
36+
<a href="doc/changelogs/CHANGELOG_V15.md#15.6.0">15.6.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V15.md#15.5.1">15.5.1</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V15.md#15.5.0">15.5.0</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V15.md#15.4.0">15.4.0</a><br/>

Diff for: doc/api/buffer.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const buf7 = Buffer.from('tést', 'latin1');
5050
## Buffers and character encodings
5151
<!-- YAML
5252
changes:
53-
- version: REPLACEME
53+
- version: v15.7.0
5454
pr-url: https://github.com/nodejs/node/pull/36952
5555
description: Introduced `base64url` encoding.
5656
- version: v6.4.0
@@ -289,7 +289,7 @@ Additionally, the [`buf.values()`][], [`buf.keys()`][], and
289289

290290
## Class: `Blob`
291291
<!-- YAML
292-
added: REPLACEME
292+
added: v15.7.0
293293
-->
294294

295295
> Stability: 1 - Experimental
@@ -299,7 +299,7 @@ multiple worker threads.
299299

300300
### `new buffer.Blob([sources[, options]])`
301301
<!-- YAML
302-
added: REPLACEME
302+
added: v15.7.0
303303
-->
304304

305305
* `sources` {string[]|ArrayBuffer[]|TypedArray[]|DataView[]|Blob[]} An array
@@ -321,7 +321,7 @@ String sources are also copied into the `Blob`.
321321

322322
### `blob.arrayBuffer()`
323323
<!-- YAML
324-
added: REPLACEME
324+
added: v15.7.0
325325
-->
326326

327327
* Returns: {Promise}
@@ -331,14 +331,14 @@ the `Blob` data.
331331

332332
### `blob.size`
333333
<!-- YAML
334-
added: REPLACEME
334+
added: v15.7.0
335335
-->
336336

337337
The total size of the `Blob` in bytes.
338338

339339
### `blob.slice([start, [end, [type]]])`
340340
<!-- YAML
341-
added: REPLACEME
341+
added: v15.7.0
342342
-->
343343

344344
* `start` {number} The starting index.
@@ -350,7 +350,7 @@ data. The original `Blob` is not alterered.
350350

351351
### `blob.text()`
352352
<!-- YAML
353-
added: REPLACEME
353+
added: v15.7.0
354354
-->
355355

356356
* Returns: {Promise}
@@ -360,7 +360,7 @@ string.
360360

361361
### `blob.type`
362362
<!-- YAML
363-
added: REPLACEME
363+
added: v15.7.0
364364
-->
365365

366366
* Type: {string}

Diff for: doc/api/crypto.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1286,7 +1286,7 @@ be listed in the `transferList` argument.
12861286

12871287
### `keyObject.asymmetricKeyDetails`
12881288
<!-- YAML
1289-
added: REPLACEME
1289+
added: v15.7.0
12901290
-->
12911291

12921292
* {Object}

Diff for: doc/api/http.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1586,7 +1586,7 @@ response.removeHeader('Content-Encoding');
15861586

15871587
### `response.req`
15881588
<!-- YAML
1589-
added: REPLACEME
1589+
added: v15.7.0
15901590
-->
15911591

15921592
* {http.IncomingMessage}

Diff for: doc/api/http2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3439,7 +3439,7 @@ response.removeHeader('Content-Encoding');
34393439

34403440
### `response.req`
34413441
<!-- YAML
3442-
added: REPLACEME
3442+
added: v15.7.0
34433443
-->
34443444

34453445
* {http2.Http2ServerRequest}

Diff for: doc/api/url.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1031,7 +1031,7 @@ pathToFileURL('/some/path%.c'); // Correct: file:///some/path%25.c (POSIX)
10311031

10321032
### `url.urlToHttpOptions(url)`
10331033
<!-- YAML
1034-
added: REPLACEME
1034+
added: v15.7.0
10351035
-->
10361036

10371037
* `url` {URL} The [WHATWG URL][] object to convert to an options object.

Diff for: doc/changelogs/CHANGELOG_V15.md

+102
Large diffs are not rendered by default.

Diff for: 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 6
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 7
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)