Skip to content

Commit

Permalink
2019-04-11, Version 11.14.0 (Current)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
BethGriggs committed Apr 11, 2019
1 parent 06c10cd commit d424560
Show file tree
Hide file tree
Showing 7 changed files with 160 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -28,7 +28,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.13.0">11.13.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.14.0">11.14.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.13.0">11.13.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.12.0">11.12.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.11.0">11.11.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.10.1">11.10.1</a><br/>
Expand Down
6 changes: 3 additions & 3 deletions doc/api/deprecations.md
Expand Up @@ -2380,7 +2380,7 @@ The `_stream_wrap` module is deprecated.
### DEP0126: timers.active()
<!-- YAML
changes:
- version: REPLACEME
- version: v11.14.0
pr-url: https://github.com/nodejs/node/pull/26760
description: Runtime deprecation.
-->
Expand All @@ -2396,7 +2396,7 @@ with no performance impact since Node.js 10.
### DEP0127: timers._unrefActive()
<!-- YAML
changes:
- version: REPLACEME
- version: v11.14.0
pr-url: https://github.com/nodejs/node/pull/26760
description: Runtime deprecation.
-->
Expand Down Expand Up @@ -2428,7 +2428,7 @@ Node.js versions.
### DEP0129: ChildProcess._channel
<!-- YAML
changes:
- version: REPLACEME
- version: v11.14.0
pr-url: https://github.com/nodejs/node/pull/26982
description: Documentation-only.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/process.md
Expand Up @@ -954,7 +954,7 @@ emitMyWarning();
<!-- YAML
added: v0.1.27
changes:
- version: REPLACEME
- version: v11.14.0
pr-url: https://github.com/nodejs/node/pull/26544
description: Worker threads will now use a copy of the parent thread’s
`process.env` by default, configurable through the `env`
Expand Down
2 changes: 1 addition & 1 deletion doc/api/readline.md
Expand Up @@ -313,7 +313,7 @@ The `rl.write()` method will write the data to the `readline` `Interface`'s
<!-- YAML
added: v11.4.0
changes:
- version: REPLACEME
- version: v11.14.0
pr-url: https://github.com/nodejs/node/pull/26989
description: Symbol.asyncIterator support is no longer experimental.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/stream.md
Expand Up @@ -1287,7 +1287,7 @@ myReader.on('readable', () => {
<!-- YAML
added: v10.0.0
changes:
- version: REPLACEME
- version: v11.14.0
pr-url: https://github.com/nodejs/node/pull/26989
description: Symbol.asyncIterator support is no longer experimental.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/worker_threads.md
Expand Up @@ -127,7 +127,7 @@ if (isMainThread) {

## worker.SHARE_ENV
<!-- YAML
added: REPLACEME
added: v11.14.0
-->

* {symbol}
Expand Down
151 changes: 151 additions & 0 deletions doc/changelogs/CHANGELOG_V11.md

Large diffs are not rendered by default.

0 comments on commit d424560

Please sign in to comment.