Skip to content

Commit

Permalink
2018-11-20, Version 8.13.0 'Carbon' (LTS)
Browse files Browse the repository at this point in the history
Notable changes:

* **assert**:
  - backport some assert commits (Ruben Bridgewater)
    [#23223](#23223)
* **deps**:
  - upgrade to libuv 1.23.2 (cjihrig)
    [#23336](#23336)
  - V8: cherry-pick 64-bit hash seed commits (Yang Guo)
    [#23274](#23274)
* **http**:
  - added aborted property to request (Robert Nagy)
    [#20094](#20094)
* **http2**:
  - graduate from experimental (James M Snell)
    [#22466](#22466)

PR-URL: #23974
  • Loading branch information
BethGriggs authored and MylesBorins committed Nov 20, 2018
1 parent 0157e3e commit 90c7bfa
Show file tree
Hide file tree
Showing 6 changed files with 170 additions and 22 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -27,7 +27,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.12.0">8.12.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.13.0">8.13.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.12.0">8.12.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.11.4">8.11.4</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.11.3">8.11.3</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.11.2">8.11.2</a><br/>
Expand Down
12 changes: 6 additions & 6 deletions doc/api/assert.md
Expand Up @@ -15,9 +15,9 @@ For more information about the used equality comparisons see

## Strict mode
<!-- YAML
added: REPLACEME
added: V8.13.0
changes:
- version: REPLACEME
- version: V8.13.0
pr-url: https://github.com/nodejs/node/pull/17002
description: Added strict mode to the assert module.
-->
Expand Down Expand Up @@ -244,7 +244,7 @@ parameter is undefined, a default error message is assigned.

## assert.doesNotReject(block[, error][, message])
<!-- YAML
added: REPLACEME
added: V8.13.0
-->
* `block` {Function}
* `error` {RegExp|Function}
Expand Down Expand Up @@ -670,7 +670,7 @@ If the values are not strictly equal, an `AssertionError` is thrown with a

## assert.rejects(block[, error][, message])
<!-- YAML
added: REPLACEME
added: V8.13.0
-->
* `block` {Function}
* `error` {RegExp|Function|Object}
Expand Down Expand Up @@ -714,8 +714,8 @@ assert.rejects(
<!-- YAML
added: v0.1.21
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/REPLACEME
- version: V8.13.0
pr-url: https://github.com/nodejs/node/pull/23223
description: The `error` parameter can now be an object as well.
- version: v4.2.0
pr-url: https://github.com/nodejs/node/pull/3276
Expand Down
2 changes: 1 addition & 1 deletion doc/api/http.md
Expand Up @@ -1413,7 +1413,7 @@ Just like `'end'`, this event occurs only once per response.

### message.aborted
<!-- YAML
added: REPLACEME
added: v8.13.0
-->

* {boolean}
Expand Down
18 changes: 9 additions & 9 deletions doc/api/http2.md
Expand Up @@ -2,7 +2,7 @@
<!-- YAML
added: v8.4.0
changes:
- version: REPLACEME
- version: v8.13.0
pr-url: https://github.com/nodejs/node/pull/22466
description: HTTP/2 is now Stable. Previously, it had been Experimental.
-->
Expand Down Expand Up @@ -225,7 +225,7 @@ session.on('localSettings', (settings) => {

#### Event: 'ping'
<!-- YAML
added: REPLACEME
added: v8.13.0
-->

* `payload` {Buffer} The `PING` frame 8-byte payload
Expand Down Expand Up @@ -682,7 +682,7 @@ are passed through as provided by the user or received from the peer.

#### serverhttp2session.origin(...origins)
<!-- YAML
added: REPLACEME
added: v8.13.0
-->

* `origins` { string | URL | Object } One or more URL Strings passed as
Expand Down Expand Up @@ -762,7 +762,7 @@ client.on('altsvc', (alt, origin, streamId) => {

#### Event: 'origin'
<!-- YAML
added: REPLACEME
added: v8.13.0
-->

* `origins` {string[]}
Expand Down Expand Up @@ -993,7 +993,7 @@ stream.on('trailers', (headers, flags) => {

#### Event: 'wantTrailers'
<!-- YAML
added: REPLACEME
added: v8.13.0
-->

The `'wantTrailers'` event is emitted when the `Http2Stream` has queued the
Expand Down Expand Up @@ -1046,7 +1046,7 @@ usable.

#### http2stream.endAfterHeaders
<!-- YAML
added: REPLACEME
added: v8.13.0
-->

* {boolean}
Expand Down Expand Up @@ -1179,7 +1179,7 @@ A current state of this `Http2Stream`.

#### http2stream.sendTrailers(headers)
<!-- YAML
added: REPLACEME
added: v8.13.0
-->

* `headers` {HTTP/2 Headers Object}
Expand Down Expand Up @@ -1995,7 +1995,7 @@ server.listen(80);
<!-- YAML
added: v8.4.0
changes:
- version: REPLACEME
- version: v8.13.0
pr-url: https://github.com/nodejs/node/pull/22956
description: Added the `origins` option to automatically send an `ORIGIN`
frame on `Http2Session` startup.
Expand Down Expand Up @@ -2602,7 +2602,7 @@ Just like `'end'`, this event occurs only once per response.

#### request.aborted
<!-- YAML
added: REPLACEME
added: v8.13.0
-->

* {boolean}
Expand Down

0 comments on commit 90c7bfa

Please sign in to comment.