Skip to content

Commit 2324d42

Browse files
committed
2020-05-19, Version 14.3.0 (Current)
Notable changes: async_hooks: * (SEMVER-MINOR) move PromiseHook handler to JS (Stephen Belanger) #32891 cli: * (SEMVER-MINOR) add `--trace-atomics-wait` flag (Anna Henningsen) #33292 fs: * (SEMVER-MINOR) add .ref() and .unref() methods to watcher classes (rickyes) #33134 http: * (SEMVER-MINOR) expose http.validate-header-name/value (osher) #33119 repl: * (SEMVER-MINOR) deprecate repl._builtinLibs (Ruben Bridgewater) #33294 * (SEMVER-MINOR) remove obsolete completer variable (Ruben Bridgewater) #33294 * (SEMVER-MINOR) deprecate repl.inputStream and repl.outputStream (Ruben Bridgewater) #33294 * (SEMVER-MINOR) improve repl autocompletion for require calls (Ruben Bridgewater) #33282 * (SEMVER-MINOR) replace hard coded core module list with actual list (Ruben Bridgewater) #33282 * (SEMVER-MINOR) show reference errors during preview (Ruben Bridgewater) #33282 * (SEMVER-MINOR) improve repl preview (Ruben Bridgewater) #33282 src: * add support for TLA (Gus Caplan) #30370 test: * (SEMVER-MINOR) refactor test/parallel/test-bootstrap-modules.js (Ruben Bridgewater) #33282 PR-URL: TODO
1 parent 453affe commit 2324d42

File tree

9 files changed

+142
-16
lines changed

9 files changed

+142
-16
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.2.0">14.2.0</a></b><br/>
34+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.3.0">14.3.0</a></b><br/>
35+
<a href="doc/changelogs/CHANGELOG_V14.md#14.2.0">14.2.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V14.md#14.1.0">14.1.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V14.md#14.0.0">14.0.0</a><br/>
3738
</td>

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ for TLSv1.2, which is not as secure as TLSv1.3.
816816

817817
### `--trace-atomics-wait`
818818
<!-- YAML
819-
added: REPLACEME
819+
added: v14.3.0
820820
-->
821821

822822
Print short summaries of calls to [`Atomics.wait()`][] to stderr.

doc/api/deprecations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2670,7 +2670,7 @@ Use [`request.destroy()`][] instead of [`request.abort()`][].
26702670
### DEP0XXX: `repl.inputStream` and `repl.outputStream`
26712671
<!-- YAML
26722672
changes:
2673-
- version: REPLACEME
2673+
- version: v14.3.0
26742674
pr-url: https://github.com/nodejs/node/pull/33294
26752675
description: Documentation-only (supports [`--pending-deprecation`][]).
26762676
-->
@@ -2684,7 +2684,7 @@ instead of `.inputStream` and `.output` instead of `.outputStream`.
26842684
### DEP0XX1: `repl._builtinLibs`
26852685
<!-- YAML
26862686
changes:
2687-
- version: REPLACEME
2687+
- version: v14.3.0
26882688
pr-url: https://github.com/nodejs/node/pull/33294
26892689
description: Documentation-only (supports [`--pending-deprecation`][]).
26902690
-->

doc/api/errors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,7 @@ The [`fs.Dir`][] was previously closed.
858858
<a id="ERR_DIR_CONCURRENT_OPERATION"></a>
859859
### `ERR_DIR_CONCURRENT_OPERATION`
860860
<!-- YAML
861-
added: REPLACEME
861+
added: v14.3.0
862862
-->
863863

864864
A synchronous read or close call was attempted on an [`fs.Dir`][] which has

doc/api/fs.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ Stop watching for changes on the given `fs.FSWatcher`. Once stopped, the
581581

582582
### `watcher.ref()`
583583
<!-- YAML
584-
added: REPLACEME
584+
added: v14.3.0
585585
-->
586586

587587
* Returns: {fs.FSWatcher}
@@ -596,7 +596,7 @@ called previously.
596596

597597
### `watcher.unref()`
598598
<!-- YAML
599-
added: REPLACEME
599+
added: v14.3.0
600600
-->
601601

602602
* Returns: {fs.FSWatcher}
@@ -609,7 +609,7 @@ no effect.
609609

610610
## Class: `fs.StatWatcher`
611611
<!-- YAML
612-
added: REPLACEME
612+
added: v14.3.0
613613
-->
614614

615615
* Extends {EventEmitter}
@@ -619,7 +619,7 @@ object.
619619

620620
### `watcher.ref()`
621621
<!-- YAML
622-
added: REPLACEME
622+
added: v14.3.0
623623
-->
624624

625625
* Returns: {fs.StatWatcher}
@@ -634,7 +634,7 @@ called previously.
634634

635635
### `watcher.unref()`
636636
<!-- YAML
637-
added: REPLACEME
637+
added: v14.3.0
638638
-->
639639

640640
* Returns: {fs.StatWatcher}

doc/api/http.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2482,7 +2482,7 @@ not abort the request or do anything besides add a `'timeout'` event.
24822482

24832483
## `http.validateHeaderName(name)`
24842484
<!-- YAML
2485-
added: REPLACEME
2485+
added: v14.3.0
24862486
-->
24872487

24882488
* `name` {string}
@@ -2512,7 +2512,7 @@ try {
25122512

25132513
## `http.validateHeaderValue(name, value)`
25142514
<!-- YAML
2515-
added: REPLACEME
2515+
added: v14.3.0
25162516
-->
25172517

25182518
* `name` {string}

doc/api/vm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ changes:
805805
- version: v14.1.0
806806
pr-url: https://github.com/nodejs/node/pull/32985
807807
description: The `importModuleDynamically` option is now supported.
808-
- version: REPLACEME
808+
- version: v14.3.0
809809
pr-url: https://github.com/nodejs/node/pull/33364
810810
description: Removal of `importModuleDynamically` due to compatibility issues
811811
-->

doc/changelogs/CHANGELOG_V14.md

+125
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 2
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 3
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)