Skip to content

Commit a19e1ab

Browse files
BridgeARtargos
authored andcommitted
2018-11-15, Version 11.2.0 (Current)
Notable changes: * deps: * A new experimental HTTP parser (`llhttp`) is now supported. #24059 * timers: * Fixed an issue that could cause setTimeout to stop working as expected. #24322 * Windows * A crashing process will now show the names of stack frames if the node.pdb file is available. #23822 * Continued effort to improve the installer's new stage that installs native build tools. #23987, #24348 * child_process: * On Windows the `windowsHide` option default was restored to `false`. This means `detached` child processes and GUI apps will once again start in a new window. #24034 * Added new collaborators: * [oyyd](https://github.com/oyyd) - Ouyang Yadong. #24300 * [psmarshall](https://github.com/psmarshall) - Peter Marshall. #24170 * [shisama](https://github.com/shisama) - Masashi Hirano. #24136
1 parent 10edc4f commit a19e1ab

File tree

9 files changed

+288
-15
lines changed

9 files changed

+288
-15
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
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.1.0">11.1.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.2.0">11.2.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V11.md#11.1.0">11.1.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V11.md#11.0.0">11.0.0</a><br/>
3334
</td>
3435
<td valign="top">

doc/api/crypto.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1379,7 +1379,7 @@ Adversaries][] for details.
13791379
<!-- YAML
13801380
added: v0.1.94
13811381
changes:
1382-
- version: REPLACEME
1382+
- version: v11.2.0
13831383
pr-url: https://github.com/nodejs/node/pull/24081
13841384
description: The cipher `chacha20-poly1305` is now supported.
13851385
- version: v10.10.0
@@ -1468,7 +1468,7 @@ to create the `Decipher` object.
14681468
<!-- YAML
14691469
added: v0.1.94
14701470
changes:
1471-
- version: REPLACEME
1471+
- version: v11.2.0
14721472
pr-url: https://github.com/nodejs/node/pull/24081
14731473
description: The cipher `chacha20-poly1305` is now supported.
14741474
- version: v10.10.0

doc/api/fs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ argument to `fs.createReadStream()`. If `path` is passed as a string, then
490490

491491
### readStream.pending
492492
<!-- YAML
493-
added: REPLACEME
493+
added: v11.2.0
494494
-->
495495

496496
* {boolean}
@@ -845,7 +845,7 @@ argument to [`fs.createWriteStream()`][]. If `path` is passed as a string, then
845845

846846
### writeStream.pending
847847
<!-- YAML
848-
added: REPLACEME
848+
added: v11.2.0
849849
-->
850850

851851
* {boolean}

doc/api/http2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1014,7 +1014,7 @@ the `'aborted'` event will have been emitted.
10141014

10151015
#### http2stream.bufferSize
10161016
<!-- YAML
1017-
added: REPLACEME
1017+
added: v11.2.0
10181018
-->
10191019
* {number}
10201020

doc/api/net.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ Useful to throttle back an upload.
726726

727727
### socket.pending
728728
<!-- YAML
729-
added: REPLACEME
729+
added: v11.2.0
730730
-->
731731

732732
* {boolean}

doc/api/stream.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1493,7 +1493,7 @@ changes:
14931493
pr-url: https://github.com/nodejs/node/pull/18438
14941494
description: >
14951495
Add `emitClose` option to specify if `'close'` is emitted on destroy
1496-
- version: REPLACEME
1496+
- version: v11.2.0
14971497
pr-url: https://github.com/nodejs/node/pull/22795
14981498
description: >
14991499
Add `autoDestroy` option to automatically `destroy()` the stream
@@ -1765,7 +1765,7 @@ constructor and implement the `readable._read()` method.
17651765
#### new stream.Readable([options])
17661766
<!-- YAML
17671767
changes:
1768-
- version: REPLACEME
1768+
- version: v11.2.0
17691769
pr-url: https://github.com/nodejs/node/pull/22795
17701770
description: >
17711771
Add `autoDestroy` option to automatically `destroy()` the stream

doc/api/tls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ Always returns `true`. This may be used to distinguish TLS sockets from regular
568568

569569
### tlsSocket.getCertificate()
570570
<!-- YAML
571-
added: REPLACEME
571+
added: v11.2.0
572572
-->
573573

574574
* Returns: {Object}

doc/changelogs/CHANGELOG_V11.md

Lines changed: 274 additions & 2 deletions
Large diffs are not rendered by default.

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 11
26-
#define NODE_MINOR_VERSION 1
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 2
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)