From 2fce636f578b63fc0115e6c9f68157f6c4517145 Mon Sep 17 00:00:00 2001 From: Gibson Fahnestock Date: Wed, 24 Jan 2018 01:02:55 +0000 Subject: 2018-03-06 Version 8.10.0 'Carbon' (LTS) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Notable changes: * deps: * update V8 to 6.2.414.46 (Michaël Zasso) [#16413](https://github.com/nodejs/node/pull/16413) * revert ABI breaking changes in V8 6.2 (Anna Henningsen) [#16413](https://github.com/nodejs/node/pull/16413) * upgrade libuv to 1.19.1 (cjihrig) [#18260](https://github.com/nodejs/node/pull/18260) * re land npm 5.6.0 (Myles Borins) [#18625](https://github.com/nodejs/node/pull/18625) * ICU 60 bump (Steven R. Loomis) [#16876](https://github.com/nodejs/node/pull/16876) * crypto: * Support both OpenSSL 1.1.0 and 1.0.2 (David Benjamin) [#16130](https://github.com/nodejs/node/pull/16130) * warn on invalid authentication tag length (Tobias Nießen) [#17566](https://github.com/nodejs/node/pull/17566) * async_hooks: * update defaultTriggerAsyncIdScope for perf (Anatoli Papirovski) [#18004](https://github.com/nodejs/node/pull/18004) * use typed array stack as fast path (Anna Henningsen) [#17780](https://github.com/nodejs/node/pull/17780) * use scope for defaultTriggerAsyncId (Andreas Madsen) [#17273](https://github.com/nodejs/node/pull/17273) * separate missing from default context (Andreas Madsen) [#17273](https://github.com/nodejs/node/pull/17273) * rename initTriggerId (Andreas Madsen) [#17273](https://github.com/nodejs/node/pull/17273) * deprecate undocumented API (Andreas Madsen) [#16972](https://github.com/nodejs/node/pull/16972) * add destroy event for gced AsyncResources (Sebastian Mayr) [#16998](https://github.com/nodejs/node/pull/16998) * add trace events to async_hooks (Andreas Madsen) [#15538](https://github.com/nodejs/node/pull/15538) * set HTTPParser trigger to socket (Andreas Madsen) [#18003](https://github.com/nodejs/node/pull/18003) * add provider types for net server (Andreas Madsen) [#17157](https://github.com/nodejs/node/pull/17157) * n-api: * add helper for addons to get the event loop (Anna Henningsen) [#17109](https://github.com/nodejs/node/pull/17109) * cli: * add --stack-trace-limit to NODE_OPTIONS (Anna Henningsen) [#16495](https://github.com/nodejs/node/pull/16495) * console: * add support for console.debug (Benjamin Zaslavsky) [#17033](https://github.com/nodejs/node/pull/17033) * module: * add builtinModules (Jon Moss) [#16386](https://github.com/nodejs/node/pull/16386) * replace default paths in require.resolve() (cjihrig) [#17113](https://github.com/nodejs/node/pull/17113) * src: * add helper for addons to get the event loop (Anna Henningsen) [#17109](https://github.com/nodejs/node/pull/17109) * add process.ppid (cjihrig) [#16839](https://github.com/nodejs/node/pull/16839) * http: * support generic `Duplex` streams (Anna Henningsen) [#16267](https://github.com/nodejs/node/pull/16267) * add rawPacket in err of `clientError` event (XadillaX) [#17672](https://github.com/nodejs/node/pull/17672) * better support for IPv6 addresses (Mattias Holmlund) [#14772](https://github.com/nodejs/node/pull/14772) * net: * remove ADDRCONFIG DNS hint on Windows (Bartosz Sosnowski) [#17662](https://github.com/nodejs/node/pull/17662) * process: * fix reading zero-length env vars on win32 (Anna Henningsen) [#18463](https://github.com/nodejs/node/pull/18463) * tls: * unconsume stream on destroy (Anna Henningsen) [#17478](https://github.com/nodejs/node/pull/17478) * process: * improve unhandled rejection message (Madara Uchiha) [#17158](https://github.com/nodejs/node/pull/17158) * stream: * remove usage of *State.highWaterMark (Calvin Metcalf) [#12860](https://github.com/nodejs/node/pull/12860) * trace_events: * add executionAsyncId to init events (Andreas Madsen) [#17196](https://github.com/nodejs/node/pull/17196) PR-URL: https://github.com/nodejs/node/pull/18336 --- doc/api/http.md | 2 +- doc/api/modules.md | 2 +- doc/api/n-api.md | 2 +- doc/api/process.md | 2 +- doc/api/stream.md | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/api') diff --git a/doc/api/http.md b/doc/api/http.md index c0e51d1d9d1..dea6c08ef35 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -734,7 +734,7 @@ changes: description: The default action of calling `.destroy()` on the `socket` will no longer take place if there are listeners attached for `clientError`. - - version: REPLACEME + - version: v8.10.0 pr-url: https://github.com/nodejs/node/pull/17672 description: The rawPacket is the current buffer that just parsed. Adding this buffer to the error object of clientError event is to make diff --git a/doc/api/modules.md b/doc/api/modules.md index dc302c1990b..07c469c1140 100644 --- a/doc/api/modules.md +++ b/doc/api/modules.md @@ -835,7 +835,7 @@ via `require('module')`. ### module.builtinModules * {string[]} diff --git a/doc/api/n-api.md b/doc/api/n-api.md index 0843165f075..689536c227a 100644 --- a/doc/api/n-api.md +++ b/doc/api/n-api.md @@ -3695,7 +3695,7 @@ a specific `napi_env`. ### napi_get_uv_event_loop ```C NAPI_EXTERN napi_status napi_get_uv_event_loop(napi_env env, diff --git a/doc/api/process.md b/doc/api/process.md index 41067744af1..0fc00606713 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -1398,7 +1398,7 @@ Android operating system. However, Android support in Node.js ## process.ppid * {integer} diff --git a/doc/api/stream.md b/doc/api/stream.md index 6c024124928..d92d5fde23a 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -439,7 +439,7 @@ See also: [`writable.cork()`][]. ##### writable.writableHighWaterMark Return the value of `highWaterMark` passed when constructing this @@ -889,7 +889,7 @@ options. ##### readable.readableHighWaterMark Return the value of `highWaterMark` passed when constructing this -- cgit v1.2.3