Skip to content

Commit 2e91d52

Browse files
committed
2020-07-15, Version 14.6.0 (Current)
Notable changes: doc: * add danielleadams to collaborators (Danielle Adams) #34360 * add sxa as collaborator (Stewart X Addison) #34338 * add ruyadorno to collaborators (Ruy Adorno) #34297 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 PR-URL: TODO
1 parent fa51ac3 commit 2e91d52

File tree

8 files changed

+143
-14
lines changed

8 files changed

+143
-14
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2707,12 +2707,12 @@ Type: Runtime
27072707
`Transform._transformState` will be removed in future versions where it is
27082708
no longer required due to simplification of the implementation.
27092709

2710-
<a id="DEP0XXX"></a>
2711-
### DEP0XXX: `socket.bufferSize`
2710+
<a id="DEP0144"></a>
2711+
### DEP0144: `socket.bufferSize`
27122712
<!-- YAML
27132713
changes:
2714-
- version: REPLACEME
2715-
pr-url: https://github.com/nodejs/node/pull/REPLACEME
2714+
- version: v14.6.0
2715+
pr-url: https://github.com/nodejs/node/pull/v14.6.0
27162716
description: Documentation-only deprecation.
27172717
-->
27182718

doc/api/net.md

Lines changed: 1 addition & 1 deletion
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

Lines changed: 3 additions & 3 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 128 additions & 0 deletions
Large diffs are not rendered by default.

src/node_version.h

Lines changed: 3 additions & 3 deletions
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)