Skip to content

Commit 049631f

Browse files
committed
2020-07-21, Version 14.6.0 (Current)
Notable changes: deps: * upgrade npm to 6.14.6 (claudiahdz) #34246 * upgrade to libuv 1.38.1 (Colin Ihrig) #34187 * (SEMVER-MINOR) update V8 to 8.4.371.19 (Michaël Zasso) [#33579](#33579) module: * (SEMVER-MINOR) deprecate module.parent (Antoine du HAMEL) #32217 * (SEMVER-MINOR) package "imports" field (Guy Bedford) #34117 src: * (SEMVER-MINOR) add option to track unmanaged file descriptors (Anna Henningsen) #34303 * (SEMVER-MINOR) allow embedders to disable esm loader (Shelley Vohr) #34060 tls: * (SEMVER-MINOR) make 'createSecureContext' honor more options (Mateusz Krawczuk) #33974 vm: * (SEMVER-MINOR) add run-after-evaluate microtask mode (Anna Henningsen) #34023 worker: * (SEMVER-MINOR) add option to track unmanaged file descriptors (Anna Henningsen) #34303 New Collaborators: * add danielleadams to collaborators (Danielle Adams) #34360 * add sxa as collaborator (Stewart X Addison) #34338 * add ruyadorno to collaborators (Ruy Adorno) #34297 PR-URL: #34371
1 parent 95afc2e commit 049631f

9 files changed

+183
-13
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.5.0">14.5.0</a></b><br/>
34+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.6.0">14.6.0</a></b><br/>
35+
<a href="doc/changelogs/CHANGELOG_V14.md#14.5.0">14.5.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V14.md#14.4.0">14.4.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V14.md#14.3.0">14.3.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V14.md#14.2.0">14.2.0</a><br/>

doc/api/deprecations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2711,7 +2711,7 @@ no longer required due to simplification of the implementation.
27112711
### DEP0144: `module.parent`
27122712
<!-- YAML
27132713
changes:
2714-
- version: REPLACEME
2714+
- version: v14.6.0
27152715
pr-url: https://github.com/nodejs/node/pull/32217
27162716
description: Documentation-only deprecation.
27172717
-->
@@ -2744,7 +2744,7 @@ const moduleParents = Object.values(require.cache)
27442744
### DEP0145: `socket.bufferSize`
27452745
<!-- YAML
27462746
changes:
2747-
- version: REPLACEME
2747+
- version: v14.6.0
27482748
pr-url: https://github.com/nodejs/node/pull/34088
27492749
description: Documentation-only deprecation.
27502750
-->

doc/api/modules.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -905,7 +905,7 @@ loading.
905905
### `module.parent`
906906
<!-- YAML
907907
added: v0.1.16
908-
deprecated: REPLACEME
908+
deprecated: v14.6.0
909909
-->
910910

911911
> Stability: 0 - Deprecated: Please use [`require.main`][] and

doc/api/net.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ socket as reported by the operating system:
546546
<!-- YAML
547547
added: v0.3.8
548548
deprecated:
549-
- REPLACEME
549+
- v14.6.0
550550
-->
551551

552552
> Stability: 0 - Deprecated: Use [`writable.writableLength`][] instead.

doc/api/vm.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ overhead.
188188
<!-- YAML
189189
added: v0.3.1
190190
changes:
191-
- version: REPLACEME
191+
- version: v14.6.0
192192
pr-url: https://github.com/nodejs/node/pull/34023
193193
description: The `microtaskMode` option is supported now.
194194
- version: v10.0.0
@@ -849,7 +849,7 @@ function with the given `params`.
849849
<!-- YAML
850850
added: v0.3.1
851851
changes:
852-
- version: REPLACEME
852+
- version: v14.6.0
853853
pr-url: https://github.com/nodejs/node/pull/34023
854854
description: The `microtaskMode` option is supported now.
855855
- version: v10.0.0
@@ -1012,7 +1012,7 @@ console.log(contextObject);
10121012
<!-- YAML
10131013
added: v0.3.1
10141014
changes:
1015-
- version: REPLACEME
1015+
- version: v14.6.0
10161016
pr-url: https://github.com/nodejs/node/pull/34023
10171017
description: The `microtaskMode` option is supported now.
10181018
- version: v10.0.0

doc/api/wasi.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ If `start()` is called more than once, an exception is thrown.
135135
### `wasi.initialize(instance)`
136136
<!-- YAML
137137
added:
138-
- REPLACEME
138+
- v14.6.0
139139
-->
140140

141141
* `instance` {WebAssembly.Instance}

doc/api/worker_threads.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ if (isMainThread) {
621621
added: v10.5.0
622622
changes:
623623
- version:
624-
- REPLACEME
624+
- v14.6.0
625625
pr-url: https://github.com/nodejs/node/pull/34303
626626
description: The `trackUnmanagedFds` option was introduced.
627627
- version: v14.0.0

doc/changelogs/CHANGELOG_V14.md

+169
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 5
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 6
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)