Skip to content

Commit

Permalink
2018-02-14, Version 11.10.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

deps:
  * Updated libuv to 1.26.0.
  * Updated npm to 6.7.0.
http, http2:
  * `response.writeHead` now returns the response object.
perf_hooks:
  * Implemented a histogram based API.
process:
  * Exposed `process.features.inspector`.
repl:
  * Added `repl.setupHistory` for programmatic repl.
tls:
  * Introduced client "session" event.

PR-URL: #26098
  • Loading branch information
targos committed Feb 14, 2019
1 parent 2ffd20b commit 82ee0ff
Show file tree
Hide file tree
Showing 7 changed files with 263 additions and 17 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.9.0">11.9.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.10.0">11.10.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.9.0">11.9.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.8.0">11.8.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.7.0">11.7.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.6.0">11.6.0</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/http.md
Expand Up @@ -1450,7 +1450,7 @@ the request body should be sent. See the [`'checkContinue'`][] event on
<!-- YAML
added: v0.1.30
changes:
- version: REPLACEME
- version: v11.10.0
pr-url: https://github.com/nodejs/node/pull/25974
description: Return `this` from `writeHead()` to allow chaining with
`end()`.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/http2.md
Expand Up @@ -3284,7 +3284,7 @@ should be sent. See the [`'checkContinue'`][] event on `Http2Server` and
<!-- YAML
added: v8.4.0
changes:
- version: REPLACEME
- version: v11.10.0
pr-url: https://github.com/nodejs/node/pull/25974
description: Return `this` from `writeHead()` to allow chaining with
`end()`.
Expand Down
24 changes: 12 additions & 12 deletions doc/api/perf_hooks.md
Expand Up @@ -400,7 +400,7 @@ is equal to `type`.

## perf_hooks.monitorEventLoopDelay([options])
<!-- YAML
added: REPLACEME
added: v11.10.0
-->

* `options` {Object}
Expand Down Expand Up @@ -434,13 +434,13 @@ console.log(h.percentile(99));

### Class: Histogram
<!-- YAML
added: REPLACEME
added: v11.10.0
-->
Tracks the event loop delay at a given sampling rate.

#### histogram.disable()
<!-- YAML
added: REPLACEME
added: v11.10.0
-->

* Returns: {boolean}
Expand All @@ -450,7 +450,7 @@ stopped, `false` if it was already stopped.

#### histogram.enable()
<!-- YAML
added: REPLACEME
added: v11.10.0
-->

* Returns: {boolean}
Expand All @@ -460,7 +460,7 @@ started, `false` if it was already started.

#### histogram.exceeds
<!-- YAML
added: REPLACEME
added: v11.10.0
-->

* {number}
Expand All @@ -470,7 +470,7 @@ loop delay threshold.

#### histogram.max
<!-- YAML
added: REPLACEME
added: v11.10.0
-->

* {number}
Expand All @@ -479,7 +479,7 @@ The maximum recorded event loop delay.

#### histogram.mean
<!-- YAML
added: REPLACEME
added: v11.10.0
-->

* {number}
Expand All @@ -488,7 +488,7 @@ The mean of the recorded event loop delays.

#### histogram.min
<!-- YAML
added: REPLACEME
added: v11.10.0
-->

* {number}
Expand All @@ -497,7 +497,7 @@ The minimum recorded event loop delay.

#### histogram.percentile(percentile)
<!-- YAML
added: REPLACEME
added: v11.10.0
-->

* `percentile` {number} A percentile value between 1 and 100.
Expand All @@ -507,7 +507,7 @@ Returns the value at the given percentile.

#### histogram.percentiles
<!-- YAML
added: REPLACEME
added: v11.10.0
-->

* {Map}
Expand All @@ -516,14 +516,14 @@ Returns a `Map` object detailing the accumulated percentile distribution.

#### histogram.reset()
<!-- YAML
added: REPLACEME
added: v11.10.0
-->

Resets the collected histogram data.

#### histogram.stddev
<!-- YAML
added: REPLACEME
added: v11.10.0
-->

* {number}
Expand Down
2 changes: 1 addition & 1 deletion doc/api/repl.md
Expand Up @@ -450,7 +450,7 @@ Returns `true` if `keyword` is a valid keyword, otherwise `false`.

### replServer.setupHistory(historyPath, callback)
<!-- YAML
added: REPLACEME
added: v11.10.0
-->

* `historyPath` {string} the path to the history file
Expand Down
2 changes: 1 addition & 1 deletion doc/api/tls.md
Expand Up @@ -616,7 +616,7 @@ protocol.

### Event: 'session'
<!-- YAML
added: REPLACEME
added: v11.10.0
-->

* `session` {Buffer}
Expand Down
245 changes: 245 additions & 0 deletions doc/changelogs/CHANGELOG_V11.md

Large diffs are not rendered by default.

0 comments on commit 82ee0ff

Please sign in to comment.