Skip to content

Commit d424560

Browse files
committed
2019-04-11, Version 11.14.0 (Current)
Notable changes: - child_process: doc deprecate ChildProcess.\_channel (cjihrig) [#26982](#26982) - deps: update nghttp2 to 1.37.0 (gengjiawen) [#26990](#26990) - dns: - make dns.promises enumerable (cjihrig) [#26592](#26592) - remove dns.promises experimental warning (cjihrig) [#26592](#26592) - fs: remove experimental warning for fs.promises (Anna Henningsen) [#26581] (#26581) - stream: make Symbol.asyncIterator support stable (Matteo Collina) [#26989](#26989) - worker: use copy of process.env (Anna Henningsen) [#26544](#26544) PR-URL: #27163
1 parent 06c10cd commit d424560

7 files changed

+160
-8
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ release.
2828
</tr>
2929
<tr>
3030
<td valign="top">
31-
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.13.0">11.13.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.14.0">11.14.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V11.md#11.13.0">11.13.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V11.md#11.12.0">11.12.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V11.md#11.11.0">11.11.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V11.md#11.10.1">11.10.1</a><br/>

doc/api/deprecations.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2380,7 +2380,7 @@ The `_stream_wrap` module is deprecated.
23802380
### DEP0126: timers.active()
23812381
<!-- YAML
23822382
changes:
2383-
- version: REPLACEME
2383+
- version: v11.14.0
23842384
pr-url: https://github.com/nodejs/node/pull/26760
23852385
description: Runtime deprecation.
23862386
-->
@@ -2396,7 +2396,7 @@ with no performance impact since Node.js 10.
23962396
### DEP0127: timers._unrefActive()
23972397
<!-- YAML
23982398
changes:
2399-
- version: REPLACEME
2399+
- version: v11.14.0
24002400
pr-url: https://github.com/nodejs/node/pull/26760
24012401
description: Runtime deprecation.
24022402
-->
@@ -2428,7 +2428,7 @@ Node.js versions.
24282428
### DEP0129: ChildProcess._channel
24292429
<!-- YAML
24302430
changes:
2431-
- version: REPLACEME
2431+
- version: v11.14.0
24322432
pr-url: https://github.com/nodejs/node/pull/26982
24332433
description: Documentation-only.
24342434
-->

doc/api/process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -954,7 +954,7 @@ emitMyWarning();
954954
<!-- YAML
955955
added: v0.1.27
956956
changes:
957-
- version: REPLACEME
957+
- version: v11.14.0
958958
pr-url: https://github.com/nodejs/node/pull/26544
959959
description: Worker threads will now use a copy of the parent thread’s
960960
`process.env` by default, configurable through the `env`

doc/api/readline.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ The `rl.write()` method will write the data to the `readline` `Interface`'s
313313
<!-- YAML
314314
added: v11.4.0
315315
changes:
316-
- version: REPLACEME
316+
- version: v11.14.0
317317
pr-url: https://github.com/nodejs/node/pull/26989
318318
description: Symbol.asyncIterator support is no longer experimental.
319319
-->

doc/api/stream.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1287,7 +1287,7 @@ myReader.on('readable', () => {
12871287
<!-- YAML
12881288
added: v10.0.0
12891289
changes:
1290-
- version: REPLACEME
1290+
- version: v11.14.0
12911291
pr-url: https://github.com/nodejs/node/pull/26989
12921292
description: Symbol.asyncIterator support is no longer experimental.
12931293
-->

doc/api/worker_threads.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ if (isMainThread) {
127127

128128
## worker.SHARE_ENV
129129
<!-- YAML
130-
added: REPLACEME
130+
added: v11.14.0
131131
-->
132132

133133
* {symbol}

doc/changelogs/CHANGELOG_V11.md

+151
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)