Skip to content

Commit 49db211

Browse files
committed
2020-04-29, Version 14.1.0 (Current)
Notable changes: - deps: upgrade openssl sources to 1.1.1g (Hassaan Pasha) [nodejs#32971](nodejs#32971) - doc: add juanarbol as collaborator (Juan José Arboleda) [nodejs#32906](nodejs#32906) - http: doc deprecate abort and improve docs (Robert Nagy) [nodejs#32807](nodejs#32807) - module: do not warn when accessing `__esModule` of unfinished exports (Anna Henningsen) [nodejs#33048](nodejs#33048) - n-api: detect deadlocks in thread-safe function (Gabriel Schulhof) [nodejs#32860](nodejs#32860) - src: deprecate embedder APIs with replacements (Anna Henningsen) [nodejs#32858](nodejs#32858) - stream: - don't emit end after close (Robert Nagy) [nodejs#33076](nodejs#33076) - don't wait for close on legacy streams (Robert Nagy) [nodejs#33058](nodejs#33058) - pipeline should only destroy un-finished streams (Robert Nagy) [nodejs#32968](nodejs#32968) - vm: add importModuleDynamically option to compileFunction (Gus Caplan) [nodejs#32985](nodejs#32985) PR-URL: nodejs#33103
1 parent 7171d7e commit 49db211

8 files changed

Lines changed: 122 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ release.
3131
</tr>
3232
<tr>
3333
<td valign="top">
34-
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.0.0">14.0.0</a></b><br/>
34+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.1.0">14.1.0</a></b><br/>
35+
<a href="doc/changelogs/CHANGELOG_V14.md#14.0.0">14.0.0</a><br/>
3536
</td>
3637
<td valign="top">
3738
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.13.0">13.13.0</a></b><br/>

doc/api/deprecations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2657,7 +2657,7 @@ API.
26572657
### DEP0140: Use `request.destroy()` instead of `request.abort()`
26582658
<!-- YAML
26592659
changes:
2660-
- version: REPLACEME
2660+
- version: v14.1.0
26612661
pr-url: https://github.com/nodejs/node/pull/32807
26622662
description: Documentation-only deprecation.
26632663
-->

doc/api/http.md

Lines changed: 2 additions & 2 deletions
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: v14.1.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: v14.1.0
644644
-->
645645

646646
* {boolean}

doc/api/https.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ Global instance of [`https.Agent`][] for all HTTPS client requests.
240240
<!-- YAML
241241
added: v0.3.6
242242
changes:
243-
- version: REPLACEME
243+
- version: v14.1.0
244244
pr-url: https://github.com/nodejs/node/pull/32786
245245
description: The `highWaterMark` option is accepted now.
246246
- version: v10.9.0

doc/api/n-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5271,7 +5271,7 @@ This API may be called from any thread which makes use of `func`.
52715271
added: v10.6.0
52725272
napiVersion: 4
52735273
changes:
5274-
- version: REPLACEME
5274+
- version: v14.1.0
52755275
pr-url: https://github.com/nodejs/node/pull/32689
52765276
description: >
52775277
Return `napi_would_deadlock` when called with `napi_tsfn_blocking` from

doc/api/tls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1280,7 +1280,7 @@ being issued by trusted CA (`options.ca`).
12801280
<!-- YAML
12811281
added: v0.11.3
12821282
changes:
1283-
- version: REPLACEME
1283+
- version: v14.1.0
12841284
pr-url: https://github.com/nodejs/node/pull/32786
12851285
description: The `highWaterMark` option is accepted now.
12861286
- version:

doc/api/vm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ const vm = require('vm');
782782
<!-- YAML
783783
added: v10.10.0
784784
changes:
785-
- version: REPLACEME
785+
- version: v14.1.0
786786
pr-url: https://github.com/nodejs/node/pull/32985
787787
description: The `importModuleDynamically` option is now supported.
788788
-->

doc/changelogs/CHANGELOG_V14.md

Lines changed: 113 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)