Skip to content

Commit cd026f8

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 75e8377 commit cd026f8

File tree

8 files changed

+163
-11
lines changed

8 files changed

+163
-11
lines changed

Diff for: 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/>

Diff for: doc/api/deprecations.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2271,7 +2271,7 @@ undocumented `COUNTER_NET_SERVER_CONNECTION()`,
22712271
### DEP0126: timers.active()
22722272
<!-- YAML
22732273
changes:
2274-
- version: REPLACEME
2274+
- version: v11.14.0
22752275
pr-url: https://github.com/nodejs/node/pull/26760
22762276
description: Runtime deprecation.
22772277
-->
@@ -2287,7 +2287,7 @@ with no performance impact since Node.js 10.
22872287
### DEP0127: timers._unrefActive()
22882288
<!-- YAML
22892289
changes:
2290-
- version: REPLACEME
2290+
- version: v11.14.0
22912291
pr-url: https://github.com/nodejs/node/pull/26760
22922292
description: Runtime deprecation.
22932293
-->
@@ -2303,7 +2303,7 @@ with no performance impact since Node.js 10.
23032303
### DEP0129: ChildProcess._channel
23042304
<!-- YAML
23052305
changes:
2306-
- version: REPLACEME
2306+
- version: v11.14.0
23072307
pr-url: https://github.com/nodejs/node/pull/26982
23082308
description: Documentation-only.
23092309
-->

Diff for: 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`

Diff for: 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
-->

Diff for: 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
-->

Diff for: 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}

Diff for: doc/changelogs/CHANGELOG_V11.md

+151
Large diffs are not rendered by default.

Diff for: src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 11
26-
#define NODE_MINOR_VERSION 13
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 14
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)

0 commit comments

Comments
 (0)