Skip to content

Commit 9a3476e

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

File tree

9 files changed

+125
-11
lines changed

9 files changed

+125
-11
lines changed

CHANGELOG.md

+2-1
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.12.0">13.12.0</a></b><br/>

doc/api/deprecations.md

+1-1
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

+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: 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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

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