Skip to content

Commit

Permalink
2020-11-24, Version 15.3.0 (Current)
Browse files Browse the repository at this point in the history
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: #36232
  • Loading branch information
codebytere committed Nov 24, 2020
1 parent 4a88c73 commit 63e7dc1
Show file tree
Hide file tree
Showing 11 changed files with 131 additions and 14 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -32,7 +32,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V15.md#15.2.1">15.2.1</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V15.md#15.3.0">15.3.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V15.md#15.2.1">15.2.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V15.md#15.2.0">15.2.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V15.md#15.1.0">15.1.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V15.md#15.0.1">15.0.1</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/dns.md
Expand Up @@ -732,7 +732,7 @@ The following methods from the `dnsPromises` API are available:

### `resolver.cancel()`
<!-- YAML
added: REPLACEME
added: v15.3.0
-->

Cancel all outstanding DNS queries made by this resolver. The corresponding
Expand Down
2 changes: 1 addition & 1 deletion doc/api/esm.md
Expand Up @@ -6,7 +6,7 @@
added: v8.5.0
changes:
- version:
- REPLACEME
- v15.3.0
pr-url: https://github.com/nodejs/node/pull/35781
description: Stabilize modules implementation.
- version:
Expand Down
2 changes: 1 addition & 1 deletion doc/api/events.md
Expand Up @@ -385,7 +385,7 @@ regular `'error'` listener is installed.

### `EventEmitter.setMaxListeners(n[, ...eventTargets])`
<!-- YAML
added: REPLACEME
added: v15.3.0
-->

* `n` {number} A non-negative number. The maximum number of listeners per
Expand Down
2 changes: 1 addition & 1 deletion doc/api/http.md
Expand Up @@ -2336,7 +2336,7 @@ This can be overridden for servers and client requests by passing the
<!-- YAML
added: v0.3.6
changes:
- version: REPLACEME
- version: v15.3.0
pr-url: https://github.com/nodejs/node/pull/36048
description: It is possible to abort a request with an AbortSignal.
- version:
Expand Down
4 changes: 2 additions & 2 deletions doc/api/http2.md
Expand Up @@ -2,7 +2,7 @@
<!-- YAML
added: v8.4.0
changes:
- version: REPLACEME
- version: v15.3.0
pr-url: https://github.com/nodejs/node/pull/36070
description: It is possible to abort a request with an AbortSignal.
- version: v15.0.0
Expand Down Expand Up @@ -524,7 +524,7 @@ A prototype-less object describing the current remote settings of this

#### `http2session.setLocalWindowSize(windowSize)`
<!-- YAML
added: REPLACEME
added: v15.3.0
-->

* `windowSize` {number}
Expand Down
4 changes: 2 additions & 2 deletions doc/api/path.md
Expand Up @@ -435,7 +435,7 @@ A [`TypeError`][] is thrown if `path` is not a string.
<!-- YAML
added: v0.11.15
changes:
- version: REPLACEME
- version: v15.3.0
pr-url: https://github.com/nodejs/node/pull/34962
description: Exposed as `require('path/posix')`.
-->
Expand Down Expand Up @@ -575,7 +575,7 @@ method is non-operational and always returns `path` without modifications.
<!-- YAML
added: v0.11.15
changes:
- version: REPLACEME
- version: v15.3.0
pr-url: https://github.com/nodejs/node/pull/34962
description: Exposed as `require('path/win32')`.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/readline.md
Expand Up @@ -285,7 +285,7 @@ whenever `rl.prompt()` is called.

### `rl.getPrompt()`
<!-- YAML
added: REPLACEME
added: v15.3.0
-->

* Returns: {string} the current prompt string
Expand Down
2 changes: 1 addition & 1 deletion doc/api/util.md
Expand Up @@ -1291,7 +1291,7 @@ The encoding supported by the `TextEncoder` instance. Always set to `'utf-8'`.
<!-- YAML
added: v10.0.0
changes:
- version: REPLACEME
- version: v15.3.0
pr-url: https://github.com/nodejs/node/pull/34055
description: Exposed as `require('util/types')`.
-->
Expand Down
116 changes: 116 additions & 0 deletions doc/changelogs/CHANGELOG_V15.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 15
#define NODE_MINOR_VERSION 2
#define NODE_PATCH_VERSION 2
#define NODE_MINOR_VERSION 3
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit 63e7dc1

Please sign in to comment.