Skip to content

Commit 2291e07

Browse files
committed
2020-11-04, Version 15.1.0 (Current)
Notable changes: child_process: * (SEMVER-MINOR) add ChildProcess 'spawn' event (Matthew Francis Brunetti) #35369 dns: * (SEMVER-MINOR) add setLocalAddress to Resolver (Josh Dague) #34824 http: * (SEMVER-MINOR) report request start and end with diagnostics_channel (Stephen Belanger) #34895 http2: * (SEMVER-MINOR) add updateSettings to both http2 servers (Vincent Boivin) #35383 lib: * (SEMVER-MINOR) create diagnostics_channel module (Stephen Belanger) #34895 src: * (SEMVER-MINOR) add --heapsnapshot-near-heap-limit option (Joyee Cheung) #33010 v8: * (SEMVER-MINOR) implement v8.stopCoverage() (Joyee Cheung) #33807 * (SEMVER-MINOR) implement v8.takeCoverage() (Joyee Cheung) #33807 worker: * (SEMVER-MINOR) add eventLoopUtilization() (Trevor Norris) #35664 PR-URL: #35948
1 parent 0ebf44b commit 2291e07

13 files changed

+266
-17
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.0.1">15.0.1</a></b><br/>
35+
<b><a href="doc/changelogs/CHANGELOG_V15.md#15.1.0">15.1.0</a></b><br/>
36+
<a href="doc/changelogs/CHANGELOG_V15.md#15.0.1">15.0.1</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V15.md#15.0.0">15.0.0</a><br/>
3738
</td>
3839
<td valign="top">

doc/api/child_process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1038,7 +1038,7 @@ See [Advanced serialization][] for more details.
10381038

10391039
### Event: `'spawn'`
10401040
<!-- YAML
1041-
added: REPLACEME
1041+
added: v15.1.0
10421042
-->
10431043

10441044
The `'spawn'` event is emitted once the child process has spawned successfully.

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ be added.
335335

336336
### `--heapsnapshot-near-heap-limit=max_count`
337337
<!-- YAML
338-
added: REPLACEME
338+
added: v15.1.0
339339
-->
340340

341341
> Stability: 1 - Experimental

doc/api/deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2680,7 +2680,7 @@ Use `fs.rm(path, { recursive: true, force: true })` instead.
26802680
### DEP0148: Folder mappings in `"exports"` (trailing `"/"`)
26812681
<!-- YAML
26822682
changes:
2683-
- version: REPLACEME
2683+
- version: v15.1.0
26842684
pr-url: https://github.com/nodejs/node/pull/35746
26852685
description: Runtime deprecation.
26862686
- version: v14.13.0

doc/api/diagnostics_channel.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Diagnostics Channel
22

3-
<!--introduced_in=REPLACEME-->
3+
<!--introduced_in=v15.1.0-->
44

55
> Stability: 1 - Experimental
66

doc/api/dns.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ callbacks will be called with an error with code `ECANCELLED`.
119119

120120
### `resolver.setLocalAddress([ipv4][, ipv6])`
121121
<!-- YAML
122-
added: REPLACEME
122+
added: v15.1.0
123123
-->
124124

125125
* `ipv4` {string} A string representation of an IPv4 address.

doc/api/http2.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1881,7 +1881,7 @@ value only affects new connections to the server, not any existing connections.
18811881

18821882
#### `server.updateSettings([settings])`
18831883
<!-- YAML
1884-
added: REPLACEME
1884+
added: v15.1.0
18851885
-->
18861886

18871887
* `settings` {HTTP/2 Settings Object}
@@ -2073,7 +2073,7 @@ value only affects new connections to the server, not any existing connections.
20732073

20742074
#### `server.updateSettings([settings])`
20752075
<!-- YAML
2076-
added: REPLACEME
2076+
added: v15.1.0
20772077
-->
20782078

20792079
* `settings` {HTTP/2 Settings Object}

doc/api/packages.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ targets, this expansion is dependent on only the files of the package itself.
368368
### Subpath folder mappings
369369
<!-- YAML
370370
changes:
371-
- version: REPLACEME
371+
- version: v15.1.0
372372
pr-url: https://github.com/nodejs/node/pull/35746
373373
description: Runtime deprecation.
374374
- version: v14.13.0

doc/api/tls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1343,7 +1343,7 @@ being issued by trusted CA (`options.ca`).
13431343
<!-- YAML
13441344
added: v0.11.3
13451345
changes:
1346-
- version: REPLACEME
1346+
- version: v15.1.0
13471347
pr-url: https://github.com/nodejs/node/pull/35753
13481348
description: Added `onread` option.
13491349
- version:

doc/api/v8.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ setTimeout(() => { v8.setFlagsFromString('--notrace_gc'); }, 60e3);
226226
## `v8.takeCoverage()`
227227

228228
<!-- YAML
229-
added: REPLACEME
229+
added: v15.1.0
230230
-->
231231

232232
The `v8.takeCoverage()` method allows the user to write the coverage started by
@@ -241,7 +241,7 @@ disk, unless [`v8.stopCoverage()`][] is invoked before the process exits.
241241
## `v8.stopCoverage()`
242242

243243
<!-- YAML
244-
added: REPLACEME
244+
added: v15.1.0
245245
-->
246246

247247
The `v8.stopCoverage()` method allows the user to stop the coverage collection

doc/api/worker_threads.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -806,15 +806,15 @@ immediately with an [`ERR_WORKER_NOT_RUNNING`][] error.
806806

807807
### `worker.performance`
808808
<!-- YAML
809-
added: REPLACEME
809+
added: v15.1.0
810810
-->
811811

812812
An object that can be used to query performance information from a worker
813813
instance. Similar to [`perf_hooks.performance`][].
814814

815815
#### `performance.eventLoopUtilization([utilization1[, utilization2]])`
816816
<!-- YAML
817-
added: REPLACEME
817+
added: v15.1.0
818818
-->
819819

820820
* `utilization1` {Object} The result of a previous call to

doc/changelogs/CHANGELOG_V15.md

+248
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 0
27-
#define NODE_PATCH_VERSION 2
26+
#define NODE_MINOR_VERSION 1
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)