Skip to content

Commit

Permalink
2020-07-21, Version 14.6.0 (Current)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
MylesBorins authored and cjihrig committed Jul 22, 2020
1 parent fe69e1e commit 38678ef
Show file tree
Hide file tree
Showing 8 changed files with 178 additions and 11 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -30,7 +30,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.5.0">14.5.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.6.0">14.6.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V14.md#14.5.0">14.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V14.md#14.4.0">14.4.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V14.md#14.3.0">14.3.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V14.md#14.2.0">14.2.0</a><br/>
Expand Down
4 changes: 2 additions & 2 deletions doc/api/deprecations.md
Expand Up @@ -2734,7 +2734,7 @@ no longer required due to simplification of the implementation.
### DEP0144: `module.parent`
<!-- YAML
changes:
- version: REPLACEME
- version: v14.6.0
pr-url: https://github.com/nodejs/node/pull/32217
description: Documentation-only deprecation.
-->
Expand Down Expand Up @@ -2767,7 +2767,7 @@ const moduleParents = Object.values(require.cache)
### DEP0145: `socket.bufferSize`
<!-- YAML
changes:
- version: REPLACEME
- version: v14.6.0
pr-url: https://github.com/nodejs/node/pull/34088
description: Documentation-only deprecation.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/modules.md
Expand Up @@ -904,7 +904,7 @@ loading.
### `module.parent`
<!-- YAML
added: v0.1.16
deprecated: REPLACEME
deprecated: v14.6.0
-->

> Stability: 0 - Deprecated: Please use [`require.main`][] and
Expand Down
2 changes: 1 addition & 1 deletion doc/api/net.md
Expand Up @@ -530,7 +530,7 @@ socket as reported by the operating system:
<!-- YAML
added: v0.3.8
deprecated:
- REPLACEME
- v14.6.0
-->

> Stability: 0 - Deprecated: Use [`writable.writableLength`][] instead.
Expand Down
6 changes: 3 additions & 3 deletions doc/api/vm.md
Expand Up @@ -188,7 +188,7 @@ overhead.
<!-- YAML
added: v0.3.1
changes:
- version: REPLACEME
- version: v14.6.0
pr-url: https://github.com/nodejs/node/pull/34023
description: The `microtaskMode` option is supported now.
- version: v10.0.0
Expand Down Expand Up @@ -853,7 +853,7 @@ function with the given `params`.
<!-- YAML
added: v0.3.1
changes:
- version: REPLACEME
- version: v14.6.0
pr-url: https://github.com/nodejs/node/pull/34023
description: The `microtaskMode` option is supported now.
- version: v10.0.0
Expand Down Expand Up @@ -1016,7 +1016,7 @@ console.log(contextObject);
<!-- YAML
added: v0.3.1
changes:
- version: REPLACEME
- version: v14.6.0
pr-url: https://github.com/nodejs/node/pull/34023
description: The `microtaskMode` option is supported now.
- version: v10.0.0
Expand Down
2 changes: 1 addition & 1 deletion doc/api/wasi.md
Expand Up @@ -135,7 +135,7 @@ If `start()` is called more than once, an exception is thrown.
### `wasi.initialize(instance)`
<!-- YAML
added:
- REPLACEME
- v14.6.0
-->

* `instance` {WebAssembly.Instance}
Expand Down
4 changes: 2 additions & 2 deletions doc/api/worker_threads.md
Expand Up @@ -622,8 +622,8 @@ if (isMainThread) {
added: v10.5.0
changes:
- version:
- REPLACEME
pr-url: ???
- v14.6.0
pr-url: https://github.com/nodejs/node/pull/34303
description: The `trackUnmanagedFds` option was introduced.
- version:
- v13.13.0
Expand Down
166 changes: 166 additions & 0 deletions doc/changelogs/CHANGELOG_V14.md

Large diffs are not rendered by default.

0 comments on commit 38678ef

Please sign in to comment.