Skip to content

Commit 90c7bfa

Browse files
BethGriggsMylesBorins
authored andcommitted
2018-11-20, Version 8.13.0 'Carbon' (LTS)
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
1 parent 0157e3e commit 90c7bfa

File tree

6 files changed

+170
-22
lines changed

6 files changed

+170
-22
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.12.0">8.12.0</a></b><br/>
30+
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.13.0">8.13.0</a></b><br/>
31+
<a href="doc/changelogs/CHANGELOG_V8.md#8.12.0">8.12.0</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V8.md#8.11.4">8.11.4</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V8.md#8.11.3">8.11.3</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V8.md#8.11.2">8.11.2</a><br/>

doc/api/assert.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ For more information about the used equality comparisons see
1515

1616
## Strict mode
1717
<!-- YAML
18-
added: REPLACEME
18+
added: V8.13.0
1919
changes:
20-
- version: REPLACEME
20+
- version: V8.13.0
2121
pr-url: https://github.com./nodejs/node/pull/17002
2222
description: Added strict mode to the assert module.
2323
-->
@@ -244,7 +244,7 @@ parameter is undefined, a default error message is assigned.
244244

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

671671
## assert.rejects(block[, error][, message])
672672
<!-- YAML
673-
added: REPLACEME
673+
added: V8.13.0
674674
-->
675675
* `block` {Function}
676676
* `error` {RegExp|Function|Object}
@@ -714,8 +714,8 @@ assert.rejects(
714714
<!-- YAML
715715
added: v0.1.21
716716
changes:
717-
- version: REPLACEME
718-
pr-url: https://github.com./nodejs/node/pull/REPLACEME
717+
- version: V8.13.0
718+
pr-url: https://github.com./nodejs/node/pull/23223
719719
description: The `error` parameter can now be an object as well.
720720
- version: v4.2.0
721721
pr-url: https://github.com./nodejs/node/pull/3276

doc/api/http.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1413,7 +1413,7 @@ Just like `'end'`, this event occurs only once per response.
14131413

14141414
### message.aborted
14151415
<!-- YAML
1416-
added: REPLACEME
1416+
added: v8.13.0
14171417
-->
14181418

14191419
* {boolean}

doc/api/http2.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- YAML
33
added: v8.4.0
44
changes:
5-
- version: REPLACEME
5+
- version: v8.13.0
66
pr-url: https://github.com./nodejs/node/pull/22466
77
description: HTTP/2 is now Stable. Previously, it had been Experimental.
88
-->
@@ -225,7 +225,7 @@ session.on('localSettings', (settings) => {
225225

226226
#### Event: 'ping'
227227
<!-- YAML
228-
added: REPLACEME
228+
added: v8.13.0
229229
-->
230230

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

683683
#### serverhttp2session.origin(...origins)
684684
<!-- YAML
685-
added: REPLACEME
685+
added: v8.13.0
686686
-->
687687

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

763763
#### Event: 'origin'
764764
<!-- YAML
765-
added: REPLACEME
765+
added: v8.13.0
766766
-->
767767

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

994994
#### Event: 'wantTrailers'
995995
<!-- YAML
996-
added: REPLACEME
996+
added: v8.13.0
997997
-->
998998

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

10471047
#### http2stream.endAfterHeaders
10481048
<!-- YAML
1049-
added: REPLACEME
1049+
added: v8.13.0
10501050
-->
10511051

10521052
* {boolean}
@@ -1179,7 +1179,7 @@ A current state of this `Http2Stream`.
11791179

11801180
#### http2stream.sendTrailers(headers)
11811181
<!-- YAML
1182-
added: REPLACEME
1182+
added: v8.13.0
11831183
-->
11841184

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

26032603
#### request.aborted
26042604
<!-- YAML
2605-
added: REPLACEME
2605+
added: v8.13.0
26062606
-->
26072607

26082608
* {boolean}

0 commit comments

Comments
 (0)