Skip to content

Commit

Permalink
2018-11-15, Version 11.2.0 (Current)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
BridgeAR authored and targos committed Nov 15, 2018
1 parent 10edc4f commit a19e1ab
Show file tree
Hide file tree
Showing 9 changed files with 288 additions and 15 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.1.0">11.1.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.2.0">11.2.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.1.0">11.1.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.0.0">11.0.0</a><br/>
</td>
<td valign="top">
Expand Down
4 changes: 2 additions & 2 deletions doc/api/crypto.md
Expand Up @@ -1379,7 +1379,7 @@ Adversaries][] for details.
<!-- YAML
added: v0.1.94
changes:
- version: REPLACEME
- version: v11.2.0
pr-url: https://github.com/nodejs/node/pull/24081
description: The cipher `chacha20-poly1305` is now supported.
- version: v10.10.0
Expand Down Expand Up @@ -1468,7 +1468,7 @@ to create the `Decipher` object.
<!-- YAML
added: v0.1.94
changes:
- version: REPLACEME
- version: v11.2.0
pr-url: https://github.com/nodejs/node/pull/24081
description: The cipher `chacha20-poly1305` is now supported.
- version: v10.10.0
Expand Down
4 changes: 2 additions & 2 deletions doc/api/fs.md
Expand Up @@ -490,7 +490,7 @@ argument to `fs.createReadStream()`. If `path` is passed as a string, then

### readStream.pending
<!-- YAML
added: REPLACEME
added: v11.2.0
-->

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

### writeStream.pending
<!-- YAML
added: REPLACEME
added: v11.2.0
-->

* {boolean}
Expand Down
2 changes: 1 addition & 1 deletion doc/api/http2.md
Expand Up @@ -1014,7 +1014,7 @@ the `'aborted'` event will have been emitted.

#### http2stream.bufferSize
<!-- YAML
added: REPLACEME
added: v11.2.0
-->
* {number}

Expand Down
2 changes: 1 addition & 1 deletion doc/api/net.md
Expand Up @@ -726,7 +726,7 @@ Useful to throttle back an upload.

### socket.pending
<!-- YAML
added: REPLACEME
added: v11.2.0
-->

* {boolean}
Expand Down
4 changes: 2 additions & 2 deletions doc/api/stream.md
Expand Up @@ -1493,7 +1493,7 @@ changes:
pr-url: https://github.com/nodejs/node/pull/18438
description: >
Add `emitClose` option to specify if `'close'` is emitted on destroy
- version: REPLACEME
- version: v11.2.0
pr-url: https://github.com/nodejs/node/pull/22795
description: >
Add `autoDestroy` option to automatically `destroy()` the stream
Expand Down Expand Up @@ -1765,7 +1765,7 @@ constructor and implement the `readable._read()` method.
#### new stream.Readable([options])
<!-- YAML
changes:
- version: REPLACEME
- version: v11.2.0
pr-url: https://github.com/nodejs/node/pull/22795
description: >
Add `autoDestroy` option to automatically `destroy()` the stream
Expand Down
2 changes: 1 addition & 1 deletion doc/api/tls.md
Expand Up @@ -568,7 +568,7 @@ Always returns `true`. This may be used to distinguish TLS sockets from regular

### tlsSocket.getCertificate()
<!-- YAML
added: REPLACEME
added: v11.2.0
-->

* Returns: {Object}
Expand Down
276 changes: 274 additions & 2 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 1
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 2
#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 a19e1ab

Please sign in to comment.