Skip to content

Commit 5d81e4d

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: TODO
1 parent e4ad464 commit 5d81e4d

File tree

11 files changed

+166
-28
lines changed

11 files changed

+166
-28
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.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

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2666,11 +2666,11 @@ Type: Documentation-only
26662666
26672667
Use [`request.destroy()`][] instead of [`request.abort()`][].
26682668
2669-
<a id="DEP0XXX"></a>
2670-
### DEP0XXX: `repl.inputStream` and `repl.outputStream`
2669+
<a id="DEP0141"></a>
2670+
### DEP0141: `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
-->
@@ -2680,11 +2680,11 @@ Type: Documentation-only (supports [`--pending-deprecation`][])
26802680
The `repl` module exported the input and output stream twice. Use `.input`
26812681
instead of `.inputStream` and `.output` instead of `.outputStream`.
26822682
2683-
<a id="DEP0XX1"></a>
2684-
### DEP0XX1: `repl._builtinLibs`
2683+
<a id="DEP0142"></a>
2684+
### DEP0142: `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

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

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

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

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

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

lib/repl.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -225,13 +225,13 @@ function REPLServer(prompt,
225225
deprecate(() => this.input,
226226
'repl.inputStream and repl.outputStream is deprecated. ' +
227227
'Use repl.input and repl.output instead',
228-
'DEP0XXX') :
228+
'DEP0141') :
229229
() => this.input,
230230
set: pendingDeprecation ?
231231
deprecate((val) => this.input = val,
232232
'repl.inputStream and repl.outputStream is deprecated. ' +
233233
'Use repl.input and repl.output instead',
234-
'DEP0XXX') :
234+
'DEP0141') :
235235
(val) => this.input = val,
236236
enumerable: false,
237237
configurable: true
@@ -241,13 +241,13 @@ function REPLServer(prompt,
241241
deprecate(() => this.output,
242242
'repl.inputStream and repl.outputStream is deprecated. ' +
243243
'Use repl.input and repl.output instead',
244-
'DEP0XXX') :
244+
'DEP0141') :
245245
() => this.output,
246246
set: pendingDeprecation ?
247247
deprecate((val) => this.output = val,
248248
'repl.inputStream and repl.outputStream is deprecated. ' +
249249
'Use repl.input and repl.output instead',
250-
'DEP0XXX') :
250+
'DEP0141') :
251251
(val) => this.output = val,
252252
enumerable: false,
253253
configurable: true
@@ -1614,12 +1614,12 @@ ObjectDefineProperty(module.exports, '_builtinLibs', {
16141614
get: pendingDeprecation ? deprecate(
16151615
() => _builtinLibs,
16161616
'repl._builtinLibs is deprecated. Check module.builtinModules instead',
1617-
'DEP0XX1'
1617+
'DEP0142'
16181618
) : () => _builtinLibs,
16191619
set: pendingDeprecation ? deprecate(
16201620
(val) => _builtinLibs = val,
16211621
'repl._builtinLibs is deprecated. Check module.builtinModules instead',
1622-
'DEP0XX1'
1622+
'DEP0142'
16231623
) : (val) => _builtinLibs = val,
16241624
enumerable: false,
16251625
configurable: true

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 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)

test/parallel/test-repl-options.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ repl._builtinLibs;
3333

3434
common.expectWarning({
3535
DeprecationWarning: {
36-
DEP0XX1:
36+
DEP0142:
3737
'repl._builtinLibs is deprecated. Check module.builtinModules instead',
38-
DEP0XXX: 'repl.inputStream and repl.outputStream is deprecated. ' +
38+
DEP0141: 'repl.inputStream and repl.outputStream is deprecated. ' +
3939
'Use repl.input and repl.output instead',
4040
DEP0124: 'REPLServer.rli is deprecated',
4141
}

0 commit comments

Comments
 (0)