Skip to content

Commit c841f51

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) deprecate repl.inputStream and repl.outputStream (Ruben Bridgewater) #33294 * (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 PR-URL: #33452
1 parent 8833551 commit c841f51

File tree

8 files changed

+151
-13
lines changed

8 files changed

+151
-13
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
@@ -818,7 +818,7 @@ for TLSv1.2, which is not as secure as TLSv1.3.
818818

819819
### `--trace-atomics-wait`
820820
<!-- YAML
821-
added: REPLACEME
821+
added: v14.3.0
822822
-->
823823

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

doc/api/deprecations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2672,7 +2672,7 @@ Use [`request.destroy()`][] instead of [`request.abort()`][].
26722672
### DEP0141: `repl.inputStream` and `repl.outputStream`
26732673
<!-- YAML
26742674
changes:
2675-
- version: REPLACEME
2675+
- version: v14.3.0
26762676
pr-url: https://github.com/nodejs/node/pull/33294
26772677
description: Documentation-only (supports [`--pending-deprecation`][]).
26782678
-->
@@ -2686,7 +2686,7 @@ instead of `.inputStream` and `.output` instead of `.outputStream`.
26862686
### DEP0142: `repl._builtinLibs`
26872687
<!-- YAML
26882688
changes:
2689-
- version: REPLACEME
2689+
- version: v14.3.0
26902690
pr-url: https://github.com/nodejs/node/pull/33294
26912691
description: Documentation-only (supports [`--pending-deprecation`][]).
26922692
-->

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
@@ -2502,7 +2502,7 @@ not abort the request or do anything besides add a `'timeout'` event.
25022502

25032503
## `http.validateHeaderName(name)`
25042504
<!-- YAML
2505-
added: REPLACEME
2505+
added: v14.3.0
25062506
-->
25072507

25082508
* `name` {string}
@@ -2532,7 +2532,7 @@ try {
25322532

25332533
## `http.validateHeaderValue(name, value)`
25342534
<!-- YAML
2535-
added: REPLACEME
2535+
added: v14.3.0
25362536
-->
25372537

25382538
* `name` {string}

doc/api/vm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ changes:
807807
- v13.14.0
808808
pr-url: https://github.com/nodejs/node/pull/32985
809809
description: The `importModuleDynamically` option is now supported.
810-
- version: REPLACEME
810+
- version: v14.3.0
811811
pr-url: https://github.com/nodejs/node/pull/33364
812812
description: Removal of `importModuleDynamically` due to compatibility issues
813813
-->

doc/changelogs/CHANGELOG_V14.md

+137
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)