From f410a6d6cc715f3202837ddb7a9614462b9dc228 Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Wed, 14 Nov 2018 01:57:14 +0100 Subject: [PATCH] 2018-11-15, Version 11.2.0 (Current) Notable changes: * child_process: * All child processes will again open up a new Window on Windows by default. [#24034](https://github.com/nodejs/node/pull/24034) * deps: * A new and fast experimental HTTP parser (`llhttp`) is now supported. [#24059](https://github.com/nodejs/node/pull/24059) * **Windows** * A crashing process will now show the names of stack frames if the node.pdb file is available. [#23822](https://github.com/nodejs/node/pull/23822) * Added new collaborators: * [oyyd](https://github.com/oyyd) - Ouyang Yadong. [#24300](https://github.com/nodejs/node/pull/24300) * [psmarshall](https://github.com/psmarshall) - Peter Marshall. [#24170](https://github.com/nodejs/node/pull/24170) * [shisama](https://github.com/shisama) - Masashi Hirano. [#24136](https://github.com/nodejs/node/pull/24136) --- doc/api/crypto.md | 4 +- doc/api/http2.md | 2 +- doc/api/stream.md | 4 +- doc/changelogs/CHANGELOG_V11.md | 246 ++++++++++++++++++++++++++++++++ src/node_version.h | 6 +- 5 files changed, 254 insertions(+), 8 deletions(-) diff --git a/doc/api/crypto.md b/doc/api/crypto.md index f592f36e241f6c..579d4d9f54f941 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -1379,7 +1379,7 @@ Adversaries][] for details. * {number} diff --git a/doc/api/stream.md b/doc/api/stream.md index 8d317191091207..d5cabbc57eaad5 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -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 @@ -1765,7 +1765,7 @@ constructor and implement the `readable._read()` method. #### new stream.Readable([options])