Skip to content

Commit d747bc4

Browse files
committed
2018-05-15, Version 8.11.2 'Carbon' (LTS)
Notable Changes: deps: - update node-inspect to 1.11.3 (Jan Krems) #18354 - update nghttp2 to 1.29.0 (James M Snell) #17908 http2: - Sync with current release stream n-api: - Sync with current release stream PR-URL: #20478
1 parent 674e75d commit d747bc4

File tree

6 files changed

+261
-23
lines changed

6 files changed

+261
-23
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ release.
2727
</tr>
2828
<tr>
2929
<td valign="top">
30-
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.11.1">8.11.1</a></b><br/>
30+
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.11.2">8.11.2</a></b><br/>
31+
<a href="doc/changelogs/CHANGELOG_V8.md#8.11.1">8.11.1</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V8.md#8.11.0">8.11.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V8.md#8.10.0">8.10.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V8.md#8.9.4">8.9.4</a><br/>

doc/api/http2.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ session.on('timeout', () => { /** .. **/ });
286286

287287
#### http2session.alpnProtocol
288288
<!-- YAML
289-
added: REPLACEME
289+
added: v8.11.2
290290
-->
291291

292292
* Value: {string|undefined}
@@ -298,7 +298,7 @@ property.
298298

299299
#### http2session.close([callback])
300300
<!-- YAML
301-
added: REPLACEME
301+
added: v8.11.2
302302
-->
303303

304304
* `callback` {Function}
@@ -313,7 +313,7 @@ If specified, the `callback` function is registered as a handler for the
313313

314314
#### http2session.closed
315315
<!-- YAML
316-
added: REPLACEME
316+
added: v8.11.2
317317
-->
318318

319319
* Value: {boolean}
@@ -323,7 +323,7 @@ Will be `true` if this `Http2Session` instance has been closed, otherwise
323323

324324
#### http2session.connecting
325325
<!-- YAML
326-
added: REPLACEME
326+
added: v8.11.2
327327
-->
328328

329329
* {boolean}
@@ -366,7 +366,7 @@ longer be used, otherwise `false`.
366366

367367
#### http2session.encrypted
368368
<!-- YAML
369-
added: REPLACEME
369+
added: v8.11.2
370370
-->
371371

372372
* Value: {boolean|undefined}
@@ -378,7 +378,7 @@ or stream.
378378

379379
#### http2session.goaway([code, [lastStreamID, [opaqueData]]])
380380
<!-- YAML
381-
added: REPLACEME
381+
added: v8.11.2
382382
-->
383383

384384
* `code` {number} An HTTP/2 error code
@@ -401,7 +401,7 @@ A prototype-less object describing the current local settings of this
401401

402402
#### http2session.originSet
403403
<!-- YAML
404-
added: REPLACEME
404+
added: v8.11.2
405405
-->
406406

407407
* Value: {string[]|undefined}
@@ -462,7 +462,7 @@ If the `payload` argument is not specified, the default payload will be the
462462

463463
#### http2session.ref()
464464
<!-- YAML
465-
added: REPLACEME
465+
added: v8.11.2
466466
-->
467467

468468
Calls [`ref()`][`net.Socket.prototype.ref`] on this `Http2Session`
@@ -572,7 +572,7 @@ client.
572572

573573
#### http2session.unref()
574574
<!-- YAML
575-
added: REPLACEME
575+
added: v8.11.2
576576
-->
577577

578578
Calls [`unref()`][`net.Socket.prototype.unref`] on this `Http2Session`
@@ -585,7 +585,7 @@ added: v8.4.0
585585

586586
#### serverhttp2session.altsvc(alt, originOrStream)
587587
<!-- YAML
588-
added: REPLACEME
588+
added: v8.11.2
589589
-->
590590

591591
* `alt` {string} A description of the alternative service configuration as
@@ -656,7 +656,7 @@ added: v8.4.0
656656

657657
#### Event: 'altsvc'
658658
<!-- YAML
659-
added: REPLACEME
659+
added: v8.11.2
660660
-->
661661

662662
* `alt`: {string}
@@ -906,7 +906,7 @@ connected HTTP/2 peer.
906906

907907
#### http2stream.closed
908908
<!-- YAML
909-
added: REPLACEME
909+
added: v8.11.2
910910
-->
911911

912912
* Value: {boolean}
@@ -925,7 +925,7 @@ usable.
925925

926926
#### http2stream.pending
927927
<!-- YAML
928-
added: REPLACEME
928+
added: v8.11.2
929929
-->
930930

931931
* Value: {boolean}
@@ -968,7 +968,7 @@ calling `http2stream.close()`, or `http2stream.destroy()`. Will be
968968

969969
#### http2stream.sentHeaders
970970
<!-- YAML
971-
added: REPLACEME
971+
added: v8.11.2
972972
-->
973973

974974
* Value: {HTTP/2 Headers Object}
@@ -977,7 +977,7 @@ An object containing the outbound headers sent for this `Http2Stream`.
977977

978978
#### http2stream.sentInfoHeaders
979979
<!-- YAML
980-
added: REPLACEME
980+
added: v8.11.2
981981
-->
982982

983983
* Value: {HTTP/2 Headers Object[]}
@@ -987,7 +987,7 @@ sent for this `Http2Stream`.
987987

988988
#### http2stream.sentTrailers
989989
<!-- YAML
990-
added: REPLACEME
990+
added: v8.11.2
991991
-->
992992

993993
* Value: {HTTP/2 Headers Object}
@@ -1698,7 +1698,7 @@ changes:
16981698
pr-url: https://github.com/nodejs/node/pull/16676
16991699
description: Added the `maxHeaderListPairs` option with a default limit of
17001700
128 header pairs.
1701-
- version: REPLACEME
1701+
- version: v8.11.2
17021702
pr-url: https://github.com/nodejs/node/pull/15752
17031703
description: Added the `Http1IncomingMessage` and `Http1ServerResponse`
17041704
option.

doc/api/n-api.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ This API can be called even if there is a pending JavaScript exception.
543543

544544
#### napi_fatal_exception
545545
<!-- YAML
546-
added: REPLACEME
546+
added: v8.11.2
547547
-->
548548
```C
549549
napi_status napi_fatal_exception(napi_env env, napi_value err);
@@ -3491,7 +3491,7 @@ may be required when implementing custom async behavior that does not use
34913491

34923492
### *napi_open_callback_scope*
34933493
<!-- YAML
3494-
added: REPLACEME
3494+
added: v8.11.2
34953495
-->
34963496
```C
34973497
NAPI_EXTERN napi_status napi_open_callback_scope(napi_env env,
@@ -3516,7 +3516,7 @@ the required scope.
35163516

35173517
### *napi_close_callback_scope*
35183518
<!-- YAML
3519-
added: REPLACEME
3519+
added: v8.11.2
35203520
-->
35213521
```C
35223522
NAPI_EXTERN napi_status napi_close_callback_scope(napi_env env,

doc/api/perf_hooks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ instance of this class is provided via the `performance` property.
3131

3232
### performance.clearEntries(name)
3333
<!-- YAML
34-
added: REPLACEME
34+
added: v8.11.2
3535
-->
3636

3737
Remove all performance entry objects with `entryType` equal to `name` from the

0 commit comments

Comments
 (0)