Skip to content

Commit 20e68dd

Browse files
committed
2018-11-20, Version 8.13.0 'Carbon' (LTS)
Notable changes: * **assert**: - backport some assert commits (Ruben Bridgewater) [#23223](#23223) * **deps**: - V8: cherry-pick 64-bit hash seed commits (Yang Guo) [#23274](#23274) * **http**: - added aborted property to request (Robert Nagy) [#20094](#20094) * **http2**: - backport http2 changes from 10.x (Kelvin Jin) [#22850](#22850) PR-URL: #23974
1 parent 62dd1d7 commit 20e68dd

File tree

5 files changed

+161
-16
lines changed

5 files changed

+161
-16
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/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)