Skip to content

Commit

Permalink
2020-07-16, 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 committed Jul 16, 2020
1 parent 95afc2e commit 35a4b7b
Show file tree
Hide file tree
Showing 9 changed files with 183 additions and 13 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -31,7 +31,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 @@ -2711,7 +2711,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 @@ -2744,7 +2744,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 @@ -905,7 +905,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 @@ -546,7 +546,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 @@ -849,7 +849,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 @@ -1012,7 +1012,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
2 changes: 1 addition & 1 deletion doc/api/worker_threads.md
Expand Up @@ -621,7 +621,7 @@ if (isMainThread) {
added: v10.5.0
changes:
- version:
- REPLACEME
- v14.6.0
pr-url: https://github.com/nodejs/node/pull/34303
description: The `trackUnmanagedFds` option was introduced.
- version: v14.0.0
Expand Down
169 changes: 169 additions & 0 deletions doc/changelogs/CHANGELOG_V14.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 14
#define NODE_MINOR_VERSION 5
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 6
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit 35a4b7b

Please sign in to comment.