Skip to content

Commit 6e56771

Browse files
committed
2018-02-14, Version 11.10.0 (Current)
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
1 parent 4a254a6 commit 6e56771

File tree

8 files changed

+266
-20
lines changed

8 files changed

+266
-20
lines changed

CHANGELOG.md

+2-1
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.9.0">11.9.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.10.0">11.10.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V11.md#11.9.0">11.9.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V11.md#11.8.0">11.8.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V11.md#11.7.0">11.7.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V11.md#11.6.0">11.6.0</a><br/>

doc/api/http.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1444,7 +1444,7 @@ the request body should be sent. See the [`'checkContinue'`][] event on
14441444
<!-- YAML
14451445
added: v0.1.30
14461446
changes:
1447-
- version: REPLACEME
1447+
- version: v11.10.0
14481448
pr-url: https://github.com/nodejs/node/pull/25974
14491449
description: Return `this` from `writeHead()` to allow chaining with
14501450
`end()`.

doc/api/http2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3284,7 +3284,7 @@ should be sent. See the [`'checkContinue'`][] event on `Http2Server` and
32843284
<!-- YAML
32853285
added: v8.4.0
32863286
changes:
3287-
- version: REPLACEME
3287+
- version: v11.10.0
32883288
pr-url: https://github.com/nodejs/node/pull/25974
32893289
description: Return `this` from `writeHead()` to allow chaining with
32903290
`end()`.

doc/api/perf_hooks.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ is equal to `type`.
400400

401401
## perf_hooks.monitorEventLoopDelay([options])
402402
<!-- YAML
403-
added: REPLACEME
403+
added: v11.10.0
404404
-->
405405

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

435435
### Class: Histogram
436436
<!-- YAML
437-
added: REPLACEME
437+
added: v11.10.0
438438
-->
439439
Tracks the event loop delay at a given sampling rate.
440440

441441
#### histogram.disable()
442442
<!-- YAML
443-
added: REPLACEME
443+
added: v11.10.0
444444
-->
445445

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

451451
#### histogram.enable()
452452
<!-- YAML
453-
added: REPLACEME
453+
added: v11.10.0
454454
-->
455455

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

461461
#### histogram.exceeds
462462
<!-- YAML
463-
added: REPLACEME
463+
added: v11.10.0
464464
-->
465465

466466
* {number}
@@ -470,7 +470,7 @@ loop delay threshold.
470470

471471
#### histogram.max
472472
<!-- YAML
473-
added: REPLACEME
473+
added: v11.10.0
474474
-->
475475

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

480480
#### histogram.mean
481481
<!-- YAML
482-
added: REPLACEME
482+
added: v11.10.0
483483
-->
484484

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

489489
#### histogram.min
490490
<!-- YAML
491-
added: REPLACEME
491+
added: v11.10.0
492492
-->
493493

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

498498
#### histogram.percentile(percentile)
499499
<!-- YAML
500-
added: REPLACEME
500+
added: v11.10.0
501501
-->
502502

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

508508
#### histogram.percentiles
509509
<!-- YAML
510-
added: REPLACEME
510+
added: v11.10.0
511511
-->
512512

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

517517
#### histogram.reset()
518518
<!-- YAML
519-
added: REPLACEME
519+
added: v11.10.0
520520
-->
521521

522522
Resets the collected histogram data.
523523

524524
#### histogram.stddev
525525
<!-- YAML
526-
added: REPLACEME
526+
added: v11.10.0
527527
-->
528528

529529
* {number}

doc/api/repl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ Returns `true` if `keyword` is a valid keyword, otherwise `false`.
450450

451451
### replServer.setupHistory(historyPath, callback)
452452
<!-- YAML
453-
added: REPLACEME
453+
added: v11.10.0
454454
-->
455455

456456
* `historyPath` {string} the path to the history file

doc/api/tls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ protocol.
616616

617617
### Event: 'session'
618618
<!-- YAML
619-
added: REPLACEME
619+
added: v11.10.0
620620
-->
621621

622622
* `session` {Buffer}

doc/changelogs/CHANGELOG_V11.md

+245
Large diffs are not rendered by default.

src/node_version.h

+3-3
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 9
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 10
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)