Skip to content

Commit

Permalink
2018-05-15, Version 8.11.2 'Carbon' (LTS)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
MylesBorins committed May 15, 2018
1 parent ab4809f commit faf417b
Show file tree
Hide file tree
Showing 6 changed files with 257 additions and 22 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.11.1">8.11.1</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.11.2">8.11.2</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.11.1">8.11.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.11.0">8.11.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.10.0">8.10.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.9.4">8.9.4</a><br/>
Expand Down
32 changes: 16 additions & 16 deletions doc/api/http2.md
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ session.on('timeout', () => { /** .. **/ });

#### http2session.alpnProtocol
<!-- YAML
added: REPLACEME
added: v8.11.2
-->

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

#### http2session.close([callback])
<!-- YAML
added: REPLACEME
added: v8.11.2
-->

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

#### http2session.closed
<!-- YAML
added: REPLACEME
added: v8.11.2
-->

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

#### http2session.connecting
<!-- YAML
added: REPLACEME
added: v8.11.2
-->

* {boolean}
Expand Down Expand Up @@ -366,7 +366,7 @@ longer be used, otherwise `false`.

#### http2session.encrypted
<!-- YAML
added: REPLACEME
added: v8.11.2
-->

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

#### http2session.goaway([code, [lastStreamID, [opaqueData]]])
<!-- YAML
added: REPLACEME
added: v8.11.2
-->

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

#### http2session.originSet
<!-- YAML
added: REPLACEME
added: v8.11.2
-->

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

#### http2session.ref()
<!-- YAML
added: REPLACEME
added: v8.11.2
-->

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

#### http2session.unref()
<!-- YAML
added: REPLACEME
added: v8.11.2
-->

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

#### serverhttp2session.altsvc(alt, originOrStream)
<!-- YAML
added: REPLACEME
added: v8.11.2
-->

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

#### Event: 'altsvc'
<!-- YAML
added: REPLACEME
added: v8.11.2
-->

* `alt`: {string}
Expand Down Expand Up @@ -906,7 +906,7 @@ connected HTTP/2 peer.

#### http2stream.closed
<!-- YAML
added: REPLACEME
added: v8.11.2
-->

* Value: {boolean}
Expand All @@ -925,7 +925,7 @@ usable.

#### http2stream.pending
<!-- YAML
added: REPLACEME
added: v8.11.2
-->

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

#### http2stream.sentHeaders
<!-- YAML
added: REPLACEME
added: v8.11.2
-->

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

#### http2stream.sentInfoHeaders
<!-- YAML
added: REPLACEME
added: v8.11.2
-->

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

#### http2stream.sentTrailers
<!-- YAML
added: REPLACEME
added: v8.11.2
-->

* Value: {HTTP/2 Headers Object}
Expand Down
6 changes: 3 additions & 3 deletions doc/api/n-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ This API can be called even if there is a pending JavaScript exception.

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

### *napi_open_callback_scope*
<!-- YAML
added: REPLACEME
added: v8.11.2
-->
```C
NAPI_EXTERN napi_status napi_open_callback_scope(napi_env env,
Expand All @@ -3516,7 +3516,7 @@ the required scope.

### *napi_close_callback_scope*
<!-- YAML
added: REPLACEME
added: v8.11.2
-->
```C
NAPI_EXTERN napi_status napi_close_callback_scope(napi_env env,
Expand Down
2 changes: 1 addition & 1 deletion doc/api/perf_hooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ instance of this class is provided via the `performance` property.

### performance.clearEntries(name)
<!-- YAML
added: REPLACEME
added: v8.11.2
-->

Remove all performance entry objects with `entryType` equal to `name` from the
Expand Down
Loading

0 comments on commit faf417b

Please sign in to comment.