Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 636a649

Browse files
committedNov 24, 2020
2020-11-24, Version 15.3.0 (Current)
Notable changes: dns: * (SEMVER-MINOR) add a cancel() method to the promise Resolver (Szymon Marczak) #33099 events: * (SEMVER-MINOR) add max listener warning for EventTarget (James M Snell) #36001 http: * (SEMVER-MINOR) add support for abortsignal to http.request (Benjamin Gruenbaum) #36048 http2: * (SEMVER-MINOR) allow setting the local window size of a session (Yongsheng Zhang) #35978 lib: * (SEMVER-MINOR) add throws option to fs.f/l/statSync (Andrew Casey) #33716 path: * (SEMVER-MINOR) add `path/posix` and `path/win32` alias modules (ExE Boss) #34962 readline: * (SEMVER-MINOR) add getPrompt to get the current prompt (Mattias Runge-Broberg) #33675 src: * (SEMVER-MINOR) add loop idle time in diagnostic report (Gireesh Punathil) #35940 util: * (SEMVER-MINOR) add `util/types` alias module (ExE Boss) #34055 PR-URL: TODO
1 parent 4a88c73 commit 636a649

11 files changed

+131
-14
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.2.1">15.2.1</a></b><br/>
35+
<b><a href="doc/changelogs/CHANGELOG_V15.md#15.3.0">15.3.0</a></b><br/>
36+
<a href="doc/changelogs/CHANGELOG_V15.md#15.2.1">15.2.1</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V15.md#15.2.0">15.2.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V15.md#15.1.0">15.1.0</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V15.md#15.0.1">15.0.1</a><br/>

‎doc/api/dns.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ The following methods from the `dnsPromises` API are available:
732732

733733
### `resolver.cancel()`
734734
<!-- YAML
735-
added: REPLACEME
735+
added: v15.3.0
736736
-->
737737

738738
Cancel all outstanding DNS queries made by this resolver. The corresponding

‎doc/api/esm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
added: v8.5.0
77
changes:
88
- version:
9-
- REPLACEME
9+
- v15.3.0
1010
pr-url: https://github.com/nodejs/node/pull/35781
1111
description: Stabilize modules implementation.
1212
- version:

‎doc/api/events.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ regular `'error'` listener is installed.
385385

386386
### `EventEmitter.setMaxListeners(n[, ...eventTargets])`
387387
<!-- YAML
388-
added: REPLACEME
388+
added: v15.3.0
389389
-->
390390

391391
* `n` {number} A non-negative number. The maximum number of listeners per

‎doc/api/http.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2336,7 +2336,7 @@ This can be overridden for servers and client requests by passing the
23362336
<!-- YAML
23372337
added: v0.3.6
23382338
changes:
2339-
- version: REPLACEME
2339+
- version: v15.3.0
23402340
pr-url: https://github.com/nodejs/node/pull/36048
23412341
description: It is possible to abort a request with an AbortSignal.
23422342
- version:

‎doc/api/http2.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- YAML
33
added: v8.4.0
44
changes:
5-
- version: REPLACEME
5+
- version: v15.3.0
66
pr-url: https://github.com/nodejs/node/pull/36070
77
description: It is possible to abort a request with an AbortSignal.
88
- version: v15.0.0
@@ -524,7 +524,7 @@ A prototype-less object describing the current remote settings of this
524524

525525
#### `http2session.setLocalWindowSize(windowSize)`
526526
<!-- YAML
527-
added: REPLACEME
527+
added: v15.3.0
528528
-->
529529

530530
* `windowSize` {number}

‎doc/api/path.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ A [`TypeError`][] is thrown if `path` is not a string.
435435
<!-- YAML
436436
added: v0.11.15
437437
changes:
438-
- version: REPLACEME
438+
- version: v15.3.0
439439
pr-url: https://github.com/nodejs/node/pull/34962
440440
description: Exposed as `require('path/posix')`.
441441
-->
@@ -575,7 +575,7 @@ method is non-operational and always returns `path` without modifications.
575575
<!-- YAML
576576
added: v0.11.15
577577
changes:
578-
- version: REPLACEME
578+
- version: v15.3.0
579579
pr-url: https://github.com/nodejs/node/pull/34962
580580
description: Exposed as `require('path/win32')`.
581581
-->

‎doc/api/readline.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ whenever `rl.prompt()` is called.
285285

286286
### `rl.getPrompt()`
287287
<!-- YAML
288-
added: REPLACEME
288+
added: v15.3.0
289289
-->
290290

291291
* Returns: {string} the current prompt string

‎doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1291,7 +1291,7 @@ The encoding supported by the `TextEncoder` instance. Always set to `'utf-8'`.
12911291
<!-- YAML
12921292
added: v10.0.0
12931293
changes:
1294-
- version: REPLACEME
1294+
- version: v15.3.0
12951295
pr-url: https://github.com/nodejs/node/pull/34055
12961296
description: Exposed as `require('util/types')`.
12971297
-->

‎doc/changelogs/CHANGELOG_V15.md

+116
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 2
27-
#define NODE_PATCH_VERSION 2
26+
#define NODE_MINOR_VERSION 3
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)
Please sign in to comment.