Skip to content

Commit

Permalink
2020-04-29, Version 13.14.0 (Current)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
BridgeAR committed Apr 29, 2020
1 parent ac8dba3 commit d7b02c3
Show file tree
Hide file tree
Showing 8 changed files with 158 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -35,7 +35,8 @@ release.
<a href="doc/changelogs/CHANGELOG_V14.md#14.0.0">14.0.0</a><br/>
</td>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.13.0">13.13.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.14.0">13.14.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V13.md#13.13.0">13.13.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V13.md#13.12.0">13.12.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V13.md#13.11.0">13.11.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V13.md#13.10.1">13.10.1</a><br/>
Expand Down
4 changes: 3 additions & 1 deletion doc/api/cli.md
Expand Up @@ -659,7 +659,9 @@ Name of the file to which the report will be written.
<!-- YAML
added: v11.8.0
changes:
- version: v14.0.0
- version:
- v14.0.0
- v13.14.0
pr-url: https://github.com/nodejs/node/pull/32496
description: This option is no longer considered experimental.
- version: v12.0.0
Expand Down
4 changes: 3 additions & 1 deletion doc/api/deprecations.md
Expand Up @@ -2657,7 +2657,9 @@ API.
### DEP0140: Use `request.destroy()` instead of `request.abort()`
<!-- YAML
changes:
- version: v14.1.0
- version:
- v14.1.0
- v13.14.0
pr-url: https://github.com/nodejs/node/pull/32807
description: Documentation-only deprecation.
-->
Expand Down
8 changes: 6 additions & 2 deletions doc/api/http.md
Expand Up @@ -568,7 +568,9 @@ server.listen(1337, '127.0.0.1', () => {
### `request.abort()`
<!-- YAML
added: v0.3.8
deprecated: v14.1.0
deprecated:
- v14.1.0
- v13.14.0
-->

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

#### `request.destroyed`
<!-- YAML
added: v14.1.0
added:
- v14.1.0
- v13.14.0
-->

* {boolean}
Expand Down
4 changes: 3 additions & 1 deletion doc/api/https.md
Expand Up @@ -240,7 +240,9 @@ Global instance of [`https.Agent`][] for all HTTPS client requests.
<!-- YAML
added: v0.3.6
changes:
- version: v14.1.0
- version:
- v14.1.0
- v13.14.0
pr-url: https://github.com/nodejs/node/pull/32786
description: The `highWaterMark` option is accepted now.
- version: v10.9.0
Expand Down
4 changes: 3 additions & 1 deletion doc/api/tls.md
Expand Up @@ -1280,7 +1280,9 @@ being issued by trusted CA (`options.ca`).
<!-- YAML
added: v0.11.3
changes:
- version: v14.1.0
- version:
- v14.1.0
- v13.14.0
pr-url: https://github.com/nodejs/node/pull/32786
description: The `highWaterMark` option is accepted now.
- version:
Expand Down
4 changes: 3 additions & 1 deletion doc/api/vm.md
Expand Up @@ -782,7 +782,9 @@ const vm = require('vm');
<!-- YAML
added: v10.10.0
changes:
- version: v14.1.0
- version:
- v14.1.0
- v13.14.0
pr-url: https://github.com/nodejs/node/pull/32985
description: The `importModuleDynamically` option is now supported.
-->
Expand Down
135 changes: 135 additions & 0 deletions doc/changelogs/CHANGELOG_V13.md

Large diffs are not rendered by default.

0 comments on commit d7b02c3

Please sign in to comment.