Skip to content

Commit

Permalink
2019-04-10, 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)
- 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 10, 2019
1 parent 75e8377 commit ebfb67a
Show file tree
Hide file tree
Showing 8 changed files with 162 additions and 11 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 @@ -2271,7 +2271,7 @@ undocumented `COUNTER_NET_SERVER_CONNECTION()`,
### 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 @@ -2287,7 +2287,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 All @@ -2303,7 +2303,7 @@ with no performance impact since Node.js 10.
### 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
150 changes: 150 additions & 0 deletions doc/changelogs/CHANGELOG_V11.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 11
#define NODE_MINOR_VERSION 13
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 14
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit ebfb67a

Please sign in to comment.