Skip to content

Commit 9fc74f1

Browse files
committed
2020-04-29, Version 13.14.0 (Current)
Notable Changes: * async_hooks**: * Merge `run` and `exit` methods (Andrey Pechkurov) #31950 * Prevent sync methods of async storage exiting outer context (Stephen Belanger) #31950 * vm: * Add `importModuleDynamically` option to compileFunction (Gus Caplan) #32985 New core collaborators: With this release, we welcome two new Node.js core collaborators: * Juan José Arboleda @juanarbol #32906 * Andrey Pechkurov @puzpuzpuz #32817 PR-URL: #33122
1 parent 386d158 commit 9fc74f1

File tree

9 files changed

+147
-11
lines changed

9 files changed

+147
-11
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ release.
3030
</tr>
3131
<tr>
3232
<td valign="top">
33-
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.13.0">13.13.0</a></b><br/>
33+
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.14.0">13.14.0</a></b><br/>
34+
<a href="doc/changelogs/CHANGELOG_V13.md#13.13.0">13.13.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V13.md#13.12.0">13.12.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V13.md#13.11.0">13.11.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V13.md#13.10.1">13.10.1</a><br/>

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ Name of the file to which the report will be written.
648648
<!-- YAML
649649
added: v11.8.0
650650
changes:
651-
- version: REPLACEME
651+
- version: v13.14.0
652652
pr-url: https://github.com/nodejs/node/pull/32496
653653
description: This option is no longer considered experimental.
654654
- version: v12.0.0

doc/api/deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2573,7 +2573,7 @@ To maintain existing behaviour `response.finished` should be replaced with
25732573
### DEP0140: Use `request.destroy()` instead of `request.abort()`
25742574
<!-- YAML
25752575
changes:
2576-
- version: REPLACEME
2576+
- version: v13.14.0
25772577
pr-url: https://github.com/nodejs/node/pull/32807
25782578
description: Documentation-only deprecation.
25792579
-->

doc/api/http.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ server.listen(1337, '127.0.0.1', () => {
568568
### `request.abort()`
569569
<!-- YAML
570570
added: v0.3.8
571-
deprecated: REPLACEME
571+
deprecated: v13.14.0
572572
-->
573573

574574
Marks the request as aborting. Calling this will cause remaining data
@@ -640,7 +640,7 @@ See [`writable.destroy()`][] for further details.
640640

641641
#### `request.destroyed`
642642
<!-- YAML
643-
added: REPLACEME
643+
added: v13.14.0
644644
-->
645645

646646
* {boolean}

doc/api/https.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ Global instance of [`https.Agent`][] for all HTTPS client requests.
238238
<!-- YAML
239239
added: v0.3.6
240240
changes:
241-
- version: REPLACEME
241+
- version: v13.14.0
242242
pr-url: https://github.com/nodejs/node/pull/32786
243243
description: The `highWaterMark` option is accepted now.
244244
- version: v10.9.0

doc/api/tls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1274,7 +1274,7 @@ being issued by trusted CA (`options.ca`).
12741274
<!-- YAML
12751275
added: v0.11.3
12761276
changes:
1277-
- version: REPLACEME
1277+
- version: v13.14.0
12781278
pr-url: https://github.com/nodejs/node/pull/32786
12791279
description: The `highWaterMark` option is accepted now.
12801280
- version: v13.6.0

doc/api/vm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@ const vm = require('vm');
774774
<!-- YAML
775775
added: v10.10.0
776776
changes:
777-
- version: REPLACEME
777+
- version: v13.14.0
778778
pr-url: https://github.com/nodejs/node/pull/32985
779779
description: The `importModuleDynamically` option is now supported.
780780
-->

doc/changelogs/CHANGELOG_V13.md

+135
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 13
26-
#define NODE_MINOR_VERSION 13
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 14
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)