Skip to content

Commit a981c65

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

File tree

8 files changed

+178
-11
lines changed

8 files changed

+178
-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_V14.md#14.5.0">14.5.0</a></b><br/>
33+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.6.0">14.6.0</a></b><br/>
34+
<a href="doc/changelogs/CHANGELOG_V14.md#14.5.0">14.5.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V14.md#14.4.0">14.4.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V14.md#14.3.0">14.3.0</a><br/>
3637
<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
@@ -2734,7 +2734,7 @@ no longer required due to simplification of the implementation.
27342734
### DEP0144: `module.parent`
27352735
<!-- YAML
27362736
changes:
2737-
- version: REPLACEME
2737+
- version: v14.6.0
27382738
pr-url: https://github.com/nodejs/node/pull/32217
27392739
description: Documentation-only deprecation.
27402740
-->
@@ -2767,7 +2767,7 @@ const moduleParents = Object.values(require.cache)
27672767
### DEP0145: `socket.bufferSize`
27682768
<!-- YAML
27692769
changes:
2770-
- version: REPLACEME
2770+
- version: v14.6.0
27712771
pr-url: https://github.com/nodejs/node/pull/34088
27722772
description: Documentation-only deprecation.
27732773
-->

doc/api/modules.md

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

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

doc/api/net.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ socket as reported by the operating system:
530530
<!-- YAML
531531
added: v0.3.8
532532
deprecated:
533-
- REPLACEME
533+
- v14.6.0
534534
-->
535535

536536
> 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
@@ -853,7 +853,7 @@ function with the given `params`.
853853
<!-- YAML
854854
added: v0.3.1
855855
changes:
856-
- version: REPLACEME
856+
- version: v14.6.0
857857
pr-url: https://github.com/nodejs/node/pull/34023
858858
description: The `microtaskMode` option is supported now.
859859
- version: v10.0.0
@@ -1016,7 +1016,7 @@ console.log(contextObject);
10161016
<!-- YAML
10171017
added: v0.3.1
10181018
changes:
1019-
- version: REPLACEME
1019+
- version: v14.6.0
10201020
pr-url: https://github.com/nodejs/node/pull/34023
10211021
description: The `microtaskMode` option is supported now.
10221022
- 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

+2-2
Original file line numberDiff line numberDiff line change
@@ -622,8 +622,8 @@ if (isMainThread) {
622622
added: v10.5.0
623623
changes:
624624
- version:
625-
- REPLACEME
626-
pr-url: ???
625+
- v14.6.0
626+
pr-url: https://github.com/nodejs/node/pull/34303
627627
description: The `trackUnmanagedFds` option was introduced.
628628
- version:
629629
- v13.13.0

doc/changelogs/CHANGELOG_V14.md

+166
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)