Skip to content

Commit b6d6761

Browse files
committed
2019-10-22, Version 13.0.0 (Current)
Notable changes: * TBD PR-URL: #29504
1 parent a0c6cf8 commit b6d6761

20 files changed

+130
-17
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
Select a Node.js version below to view the changelog history:
44

5+
* [Node.js 13](doc/changelogs/CHANGELOG_V13.md) - **Current**
56
* [Node.js 12](doc/changelogs/CHANGELOG_V12.md) - **Current**
67
* [Node.js 11](doc/changelogs/CHANGELOG_V11.md) - End-of-Life
78
* [Node.js 10](doc/changelogs/CHANGELOG_V10.md)**Long Term Support**
@@ -22,12 +23,16 @@ release.
2223
<!--lint disable maximum-line-length-->
2324
<table>
2425
<tr>
26+
<th title="Current"><a href="doc/changelogs/CHANGELOG_V13.md">13</a><sup>Current</sup></th>
2527
<th title="Current"><a href="doc/changelogs/CHANGELOG_V12.md">12</a><sup>Current</sup></th>
2628
<th title="LTS Until 2021-04"><a href="doc/changelogs/CHANGELOG_V10.md">10</a><sup>LTS</sup></th>
2729
<th title="LTS Until 2019-12"><a href="doc/changelogs/CHANGELOG_V8.md">8</a><sup>LTS</sup></th>
2830
</tr>
2931
<tr>
3032
<td valign="top">
33+
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.0.0">13.0.0</a></b><br/>
34+
</td>
35+
<td valign="top">
3136
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.10.0">12.10.0</a></b><br/>
3237
<a href="doc/changelogs/CHANGELOG_V12.md#12.9.1">12.9.1</a><br/>
3338
<a href="doc/changelogs/CHANGELOG_V12.md#12.9.0">12.9.0</a><br/>

doc/api/deprecations.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2440,7 +2440,7 @@ Node.js versions.
24402440
### DEP0129: ChildProcess._channel
24412441
<!-- YAML
24422442
changes:
2443-
- version: REPLACEME
2443+
- version: v13.0.0
24442444
pr-url: https://github.com/nodejs/node/pull/27949
24452445
description: Runtime deprecation.
24462446
- version: v11.14.0
@@ -2458,7 +2458,7 @@ instead.
24582458
### DEP0130: Module.createRequireFromPath()
24592459
<!-- YAML
24602460
changes:
2461-
- version: REPLACEME
2461+
- version: v13.0.0
24622462
pr-url: https://github.com/nodejs/node/pull/27951
24632463
description: Runtime deprecation.
24642464
- version: v12.2.0
@@ -2504,7 +2504,7 @@ Passing a callback to [`worker.terminate()`][] is deprecated. Use the returned
25042504
### DEP0133: http connection
25052505
<!-- YAML
25062506
changes:
2507-
- version: REPLACEME
2507+
- version: v13.0.0
25082508
pr-url: https://github.com/nodejs/node/pull/29015
25092509
description: Documentation-only deprecation.
25102510
-->

doc/api/http.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ been aborted.
567567
### request.connection
568568
<!-- YAML
569569
added: v0.3.0
570-
deprecated: REPLACEME
570+
deprecated: v13.0.0
571571
-->
572572

573573
> Stability: 0 - Deprecated. Use [`request.socket`][].
@@ -1048,7 +1048,7 @@ Limits maximum incoming headers count. If set to 0, no limit will be applied.
10481048
<!-- YAML
10491049
added: v0.9.12
10501050
changes:
1051-
- version: REPLACEME
1051+
- version: v13.0.0
10521052
pr-url: https://github.com/nodejs/node/pull/27558
10531053
description: The default timeout changed from 120s to 0 (no timeout).
10541054
-->
@@ -1072,7 +1072,7 @@ explicitly.
10721072
<!-- YAML
10731073
added: v0.9.12
10741074
changes:
1075-
- version: REPLACEME
1075+
- version: v13.0.0
10761076
pr-url: https://github.com/nodejs/node/pull/27558
10771077
description: The default timeout changed from 120s to 0 (no timeout).
10781078
-->
@@ -1166,7 +1166,7 @@ will result in a [`TypeError`][] being thrown.
11661166
### response.connection
11671167
<!-- YAML
11681168
added: v0.3.0
1169-
deprecated: REPLACEME
1169+
deprecated: v13.0.0
11701170
-->
11711171

11721172
* {net.Socket}

doc/api/http2.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1739,7 +1739,7 @@ server.on('stream', (stream, headers, flags) => {
17391739
<!-- YAML
17401740
added: v8.4.0
17411741
changes:
1742-
- version: REPLACEME
1742+
- version: v13.0.0
17431743
pr-url: https://github.com/nodejs/node/pull/27558
17441744
description: The default timeout changed from 120s to 0 (no timeout).
17451745
-->
@@ -1768,7 +1768,7 @@ closed, although the server has already stopped allowing new sessions. See
17681768
<!-- YAML
17691769
added: v8.4.0
17701770
changes:
1771-
- version: REPLACEME
1771+
- version: v13.0.0
17721772
pr-url: https://github.com/nodejs/node/pull/27558
17731773
description: The default timeout changed from 120s to 0 (no timeout).
17741774
-->
@@ -1936,7 +1936,7 @@ error will be thrown.
19361936
<!-- YAML
19371937
added: v8.4.0
19381938
changes:
1939-
- version: REPLACEME
1939+
- version: v13.0.0
19401940
pr-url: https://github.com/nodejs/node/pull/29144
19411941
description: The `PADDING_STRATEGY_CALLBACK` has been made equivalent to
19421942
providing `PADDING_STRATEGY_ALIGNED` and `selectPadding`
@@ -2050,7 +2050,7 @@ server.listen(80);
20502050
<!-- YAML
20512051
added: v8.4.0
20522052
changes:
2053-
- version: REPLACEME
2053+
- version: v13.0.0
20542054
pr-url: https://github.com/nodejs/node/pull/29144
20552055
description: The `PADDING_STRATEGY_CALLBACK` has been made equivalent to
20562056
providing `PADDING_STRATEGY_ALIGNED` and `selectPadding`
@@ -2151,7 +2151,7 @@ server.listen(80);
21512151
<!-- YAML
21522152
added: v8.4.0
21532153
changes:
2154-
- version: REPLACEME
2154+
- version: v13.0.0
21552155
pr-url: https://github.com/nodejs/node/pull/29144
21562156
description: The `PADDING_STRATEGY_CALLBACK` has been made equivalent to
21572157
providing `PADDING_STRATEGY_ALIGNED` and `selectPadding`
@@ -2696,7 +2696,7 @@ been completed, aborted, or destroyed.
26962696
#### request.connection
26972697
<!-- YAML
26982698
added: v8.4.0
2699-
deprecated: REPLACEME
2699+
deprecated: v13.0.0
27002700
-->
27012701

27022702
> Stability: 0 - Deprecated. Use [`request.socket`][].
@@ -2997,7 +2997,7 @@ will result in a [`TypeError`][] being thrown.
29972997
#### response.connection
29982998
<!-- YAML
29992999
added: v8.4.0
3000-
deprecated: REPLACEME
3000+
deprecated: v13.0.0
30013001
-->
30023002

30033003
> Stability: 0 - Deprecated. Use [`response.socket`][].

doc/api/n-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ listed as supporting a later version.
168168
| v10.x | | | v10.0.0 | v10.16.0 | |
169169
| v11.x | | | v11.0.0 | v11.8.0 | |
170170
| v12.x | | | | v12.0.0 | |
171-
| v13.x | | | | | REPLACEME |
171+
| v13.x | | | | | v13.0.0 |
172172

173173
\* Indicates that the N-API version was released as experimental
174174

doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ stream.write('With ES6');
393393
<!-- YAML
394394
added: v0.3.0
395395
changes:
396-
- version: REPLACEME
396+
- version: v13.0.0
397397
pr-url: https://github.com/nodejs/node/pull/27685
398398
description: Circular references now include a marker to the reference.
399399
- version: v12.0.0

doc/changelogs/CHANGELOG_IOJS.md

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
</table>
6464

6565
* Other Versions
66+
* [13.x](CHANGELOG_V13.md)
6667
* [12.x](CHANGELOG_V12.md)
6768
* [11.x](CHANGELOG_V11.md)
6869
* [10.x](CHANGELOG_V10.md)

doc/changelogs/CHANGELOG_V010.md

+1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
</table>
6666

6767
* Other Versions
68+
* [13.x](CHANGELOG_V13.md)
6869
* [12.x](CHANGELOG_V12.md)
6970
* [11.x](CHANGELOG_V11.md)
7071
* [10.x](CHANGELOG_V10.md)

doc/changelogs/CHANGELOG_V012.md

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
</table>
3434

3535
* Other Versions
36+
* [13.x](CHANGELOG_V13.md)
3637
* [12.x](CHANGELOG_V12.md)
3738
* [11.x](CHANGELOG_V11.md)
3839
* [10.x](CHANGELOG_V10.md)

doc/changelogs/CHANGELOG_V10.md

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
</table>
4545

4646
* Other Versions
47+
* [13.x](CHANGELOG_V13.md)
4748
* [12.x](CHANGELOG_V12.md)
4849
* [11.x](CHANGELOG_V11.md)
4950
* [9.x](CHANGELOG_V9.md)

doc/changelogs/CHANGELOG_V11.md

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
</table>
3232

3333
* Other Versions
34+
* [13.x](CHANGELOG_V13.md)
3435
* [12.x](CHANGELOG_V12.md)
3536
* [10.x](CHANGELOG_V10.md)
3637
* [9.x](CHANGELOG_V9.md)

doc/changelogs/CHANGELOG_V12.md

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
</table>
2929

3030
* Other Versions
31+
* [13.x](CHANGELOG_V13.md)
32+
* [12.x](CHANGELOG_V12.md)
3133
* [11.x](CHANGELOG_V11.md)
3234
* [10.x](CHANGELOG_V10.md)
3335
* [9.x](CHANGELOG_V9.md)

doc/changelogs/CHANGELOG_V13.md

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# Node.js 13 ChangeLog
2+
3+
<!--lint disable prohibited-strings-->
4+
<!--lint disable maximum-line-length-->
5+
6+
<table>
7+
<tr>
8+
<th>Current</th>
9+
</tr>
10+
<tr>
11+
<td>
12+
<a href="#13.0.0">13.0.0</a><br/>
13+
</td>
14+
</tr>
15+
</table>
16+
17+
* Other Versions
18+
* [11.x](CHANGELOG_V11.md)
19+
* [10.x](CHANGELOG_V10.md)
20+
* [9.x](CHANGELOG_V9.md)
21+
* [8.x](CHANGELOG_V8.md)
22+
* [7.x](CHANGELOG_V7.md)
23+
* [6.x](CHANGELOG_V6.md)
24+
* [5.x](CHANGELOG_V5.md)
25+
* [4.x](CHANGELOG_V4.md)
26+
* [0.12.x](CHANGELOG_V012.md)
27+
* [0.10.x](CHANGELOG_V010.md)
28+
* [io.js](CHANGELOG_IOJS.md)
29+
* [Archive](CHANGELOG_ARCHIVE.md)
30+
31+
<a id="13.0.0"></a>
32+
## 2019-10-22, Version 13.0.0 (Current), @BethGriggs
33+
34+
### Notable Changes
35+
36+
* TBD
37+
38+
### Semver-Major Commits
39+
40+
* [[`0376b5b7ba`](https://github.com/nodejs/node/commit/0376b5b7ba)] - **(SEMVER-MAJOR)** **benchmark**: use test/common/tmpdir consistently (João Reis) [#28858](https://github.com/nodejs/node/pull/28858)
41+
* [[`37317e60b9`](https://github.com/nodejs/node/commit/37317e60b9)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#28918](https://github.com/nodejs/node/pull/28918)
42+
* [[`66eaeac1df`](https://github.com/nodejs/node/commit/66eaeac1df)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#28016](https://github.com/nodejs/node/pull/28016)
43+
* [[`d05668d688`](https://github.com/nodejs/node/commit/d05668d688)] - **(SEMVER-MAJOR)** **child_process**: runtime deprecate \_channel (cjihrig) [#27949](https://github.com/nodejs/node/pull/27949)
44+
* [[`4f9cd2770a`](https://github.com/nodejs/node/commit/4f9cd2770a)] - **(SEMVER-MAJOR)** **child_process**: simplify spawn argument parsing (cjihrig) [#27854](https://github.com/nodejs/node/pull/27854)
45+
* [[`66043e1812`](https://github.com/nodejs/node/commit/66043e1812)] - **(SEMVER-MAJOR)** **console**: display timeEnd with suitable time unit (Xavier Stouder) [#29251](https://github.com/nodejs/node/pull/29251)
46+
* [[`d93c3e3350`](https://github.com/nodejs/node/commit/d93c3e3350)] - **(SEMVER-MAJOR)** **deps**: V8: update postmortem metadata generation script (cjihrig) [#28918](https://github.com/nodejs/node/pull/28918)
47+
* [[`e31f0a7d25`](https://github.com/nodejs/node/commit/e31f0a7d25)] - **(SEMVER-MAJOR)** **deps**: update V8 to 7.7.299.4 (Michaël Zasso) [#28918](https://github.com/nodejs/node/pull/28918)
48+
* [[`84d3243ce9`](https://github.com/nodejs/node/commit/84d3243ce9)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick b33af60 (Michaël Zasso) [#28016](https://github.com/nodejs/node/pull/28016)
49+
* [[`2dcc3665ab`](https://github.com/nodejs/node/commit/2dcc3665ab)] - **(SEMVER-MAJOR)** **deps**: update V8 to 7.6.303.28 (Michaël Zasso) [#28016](https://github.com/nodejs/node/pull/28016)
50+
* [[`80d9b1c712`](https://github.com/nodejs/node/commit/80d9b1c712)] - **(SEMVER-MAJOR)** **doc**: wrap long line (cjihrig) [#27951](https://github.com/nodejs/node/pull/27951)
51+
* [[`43a5170858`](https://github.com/nodejs/node/commit/43a5170858)] - **(SEMVER-MAJOR)** **domain**: error handler runs outside of its domain (Julien Gilli) [#26211](https://github.com/nodejs/node/pull/26211)
52+
* [[`5e3b4d6ed9`](https://github.com/nodejs/node/commit/5e3b4d6ed9)] - **(SEMVER-MAJOR)** **fs**: allow int64 offset in fs.write/writeSync/fd.write (Zach Bjornson) [#26572](https://github.com/nodejs/node/pull/26572)
53+
* [[`a3c0014e73`](https://github.com/nodejs/node/commit/a3c0014e73)] - **(SEMVER-MAJOR)** **fs**: use IsSafeJsInt instead of IsNumber for ftruncate (Zach Bjornson) [#26572](https://github.com/nodejs/node/pull/26572)
54+
* [[`0bbda5e5ae`](https://github.com/nodejs/node/commit/0bbda5e5ae)] - **(SEMVER-MAJOR)** **fs**: allow int64 offset in fs.read/readSync/fd.read (Zach Bjornson) [#26572](https://github.com/nodejs/node/pull/26572)
55+
* [[`eadc3850fe`](https://github.com/nodejs/node/commit/eadc3850fe)] - **(SEMVER-MAJOR)** **fs**: close file descriptor of promisified truncate (João Reis) [#28858](https://github.com/nodejs/node/pull/28858)
56+
* [[`0daec61b9b`](https://github.com/nodejs/node/commit/0daec61b9b)] - **(SEMVER-MAJOR)** **http**: replace superfluous connection property with getter/setter (Robert Nagy) [#29015](https://github.com/nodejs/node/pull/29015)
57+
* [[`461bf36d70`](https://github.com/nodejs/node/commit/461bf36d70)] - **(SEMVER-MAJOR)** **http**: fix test where aborted should not be emitted (Robert Nagy) [#20077](https://github.com/nodejs/node/pull/20077)
58+
* [[`d5577f0395`](https://github.com/nodejs/node/commit/d5577f0395)] - **(SEMVER-MAJOR)** **http**: remove default 'timeout' listener on upgrade (Luigi Pinca) [#26030](https://github.com/nodejs/node/pull/26030)
59+
* [[`c30ef3cbd2`](https://github.com/nodejs/node/commit/c30ef3cbd2)] - **(SEMVER-MAJOR)** **http, http2**: remove default server timeout (Ali Ijaz Sheikh) [#27558](https://github.com/nodejs/node/pull/27558)
60+
* [[`4e782c9deb`](https://github.com/nodejs/node/commit/4e782c9deb)] - **(SEMVER-MAJOR)** **http2**: remove security revert flags (Anna Henningsen) [#29141](https://github.com/nodejs/node/pull/29141)
61+
* [[`41637a530e`](https://github.com/nodejs/node/commit/41637a530e)] - **(SEMVER-MAJOR)** **http2**: remove callback-based padding (Anna Henningsen) [#29144](https://github.com/nodejs/node/pull/29144)
62+
* [[`91a4cb7175`](https://github.com/nodejs/node/commit/91a4cb7175)] - **(SEMVER-MAJOR)** **lib**: rename validateInteger to validateSafeInteger (Zach Bjornson) [#26572](https://github.com/nodejs/node/pull/26572)
63+
* [[`1432065e9d`](https://github.com/nodejs/node/commit/1432065e9d)] - **(SEMVER-MAJOR)** **lib**: correct error.errno to always be numeric (Joyee Cheung) [#28140](https://github.com/nodejs/node/pull/28140)
64+
* [[`702331be90`](https://github.com/nodejs/node/commit/702331be90)] - **(SEMVER-MAJOR)** **lib**: no need to strip BOM or shebang for scripts (Refael Ackermann) [#27375](https://github.com/nodejs/node/pull/27375)
65+
* [[`e2c0c0c680`](https://github.com/nodejs/node/commit/e2c0c0c680)] - **(SEMVER-MAJOR)** **lib**: rework logic of stripping BOM+Shebang from commonjs (Gus Caplan) [#27768](https://github.com/nodejs/node/pull/27768)
66+
* [[`5746769d68`](https://github.com/nodejs/node/commit/5746769d68)] - **(SEMVER-MAJOR)** **lib,test**: fix error message check after V8 update (Michaël Zasso) [#28918](https://github.com/nodejs/node/pull/28918)
67+
* [[`14701e539c`](https://github.com/nodejs/node/commit/14701e539c)] - **(SEMVER-MAJOR)** **module**: runtime deprecate createRequireFromPath() (cjihrig) [#27951](https://github.com/nodejs/node/pull/27951)
68+
* [[`04633eeeb9`](https://github.com/nodejs/node/commit/04633eeeb9)] - **(SEMVER-MAJOR)** **readline**: error on falsy values for callback (Sam Roberts) [#28109](https://github.com/nodejs/node/pull/28109)
69+
* [[`3eea43af07`](https://github.com/nodejs/node/commit/3eea43af07)] - **(SEMVER-MAJOR)** **repl**: close file descriptor of history file (João Reis) [#28858](https://github.com/nodejs/node/pull/28858)
70+
* [[`5ff00dbdbc`](https://github.com/nodejs/node/commit/5ff00dbdbc)] - **(SEMVER-MAJOR)** **src**: update v8abbr.h for V8 7.7 (cjihrig) [#28918](https://github.com/nodejs/node/pull/28918)
71+
* [[`4b7be335b9`](https://github.com/nodejs/node/commit/4b7be335b9)] - **(SEMVER-MAJOR)** **src**: update NODE\_MODULE\_VERSION to 78 (Michaël Zasso) [#28918](https://github.com/nodejs/node/pull/28918)
72+
* [[`a0e2c6d284`](https://github.com/nodejs/node/commit/a0e2c6d284)] - **(SEMVER-MAJOR)** **src**: add error codes to errors thrown in C++ (Yaniv Friedensohn) [#27700](https://github.com/nodejs/node/pull/27700)
73+
* [[`94e980c9d3`](https://github.com/nodejs/node/commit/94e980c9d3)] - **(SEMVER-MAJOR)** **src**: use non-deprecated overload of V8::SetFlagsFromString (Michaël Zasso) [#28016](https://github.com/nodejs/node/pull/28016)
74+
* [[`655e0dc01a`](https://github.com/nodejs/node/commit/655e0dc01a)] - **(SEMVER-MAJOR)** **src**: update NODE\_MODULE\_VERSION to 77 (Michaël Zasso) [#28016](https://github.com/nodejs/node/pull/28016)
75+
* [[`e3cd79ef8e`](https://github.com/nodejs/node/commit/e3cd79ef8e)] - **(SEMVER-MAJOR)** **src**: update NODE\_MODULE\_VERSION to 74 (Refael Ackermann) [#27375](https://github.com/nodejs/node/pull/27375)
76+
* [[`eba348b6ae`](https://github.com/nodejs/node/commit/eba348b6ae)] - **(SEMVER-MAJOR)** **src**: make process.env.TZ setter clear tz cache (Ben Noordhuis) [#20026](https://github.com/nodejs/node/pull/20026)
77+
* [[`f2061930c8`](https://github.com/nodejs/node/commit/f2061930c8)] - **(SEMVER-MAJOR)** **src**: enable V8's WASM trap handlers (Gus Caplan) [#27246](https://github.com/nodejs/node/pull/27246)
78+
* [[`b03845b937`](https://github.com/nodejs/node/commit/b03845b937)] - **(SEMVER-MAJOR)** **stream**: make finished call the callback if the stream is closed (Robert Nagy) [#28748](https://github.com/nodejs/node/pull/28748)
79+
* [[`db706da235`](https://github.com/nodejs/node/commit/db706da235)] - **(SEMVER-MAJOR)** **stream**: disallow stream methods on finished stream (Robert Nagy) [#28687](https://github.com/nodejs/node/pull/28687)
80+
* [[`188896ea3e`](https://github.com/nodejs/node/commit/188896ea3e)] - **(SEMVER-MAJOR)** **stream**: do not emit after 'error' (Robert Nagy) [#28708](https://github.com/nodejs/node/pull/28708)
81+
* [[`4a2bd69db9`](https://github.com/nodejs/node/commit/4a2bd69db9)] - **(SEMVER-MAJOR)** **stream**: fix destroy() behavior (Robert Nagy) [#29058](https://github.com/nodejs/node/pull/29058)
82+
* [[`824dc576db`](https://github.com/nodejs/node/commit/824dc576db)] - **(SEMVER-MAJOR)** **stream**: simplify `.pipe()` and `.unpipe()` in Readable (Weijia Wang) [#28583](https://github.com/nodejs/node/pull/28583)
83+
* [[`5a56940d2c`](https://github.com/nodejs/node/commit/5a56940d2c)] - **(SEMVER-MAJOR)** **test**: update postmortem metadata test for V8 7.7 (cjihrig) [#28918](https://github.com/nodejs/node/pull/28918)
84+
* [[`8ef68e66d0`](https://github.com/nodejs/node/commit/8ef68e66d0)] - **(SEMVER-MAJOR)** **test**: clean tmpdir on process exit (João Reis) [#28858](https://github.com/nodejs/node/pull/28858)
85+
* [[`d3f20a4725`](https://github.com/nodejs/node/commit/d3f20a4725)] - **(SEMVER-MAJOR)** **test**: use unique tmpdirs for each test (João Reis) [#28858](https://github.com/nodejs/node/pull/28858)
86+
* [[`c206e7490c`](https://github.com/nodejs/node/commit/c206e7490c)] - **(SEMVER-MAJOR)** **tools**: sync gypfiles with V8 7.7 (Michaël Zasso) [#28918](https://github.com/nodejs/node/pull/28918)
87+
* [[`9f71dbc334`](https://github.com/nodejs/node/commit/9f71dbc334)] - **(SEMVER-MAJOR)** **util**: include reference anchor for circular structures (Ruben Bridgewater) [#27685](https://github.com/nodejs/node/pull/27685)
88+
89+
### Semver-Minor Commits
90+
91+
* TBD
92+
93+
### Semver-Patch Commits
94+
95+
* TBD

doc/changelogs/CHANGELOG_V4.md

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
</table>
5858

5959
* Other Versions
60+
* [13.x](CHANGELOG_V13.md)
6061
* [12.x](CHANGELOG_V12.md)
6162
* [11.x](CHANGELOG_V11.md)
6263
* [10.x](CHANGELOG_V10.md)

doc/changelogs/CHANGELOG_V5.md

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
</table>
3434

3535
* Other Versions
36+
* [13.x](CHANGELOG_V13.md)
3637
* [12.x](CHANGELOG_V12.md)
3738
* [11.x](CHANGELOG_V11.md)
3839
* [10.x](CHANGELOG_V10.md)

doc/changelogs/CHANGELOG_V6.md

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
</table>
6363

6464
* Other Versions
65+
* [13.x](CHANGELOG_V13.md)
6566
* [12.x](CHANGELOG_V12.md)
6667
* [11.x](CHANGELOG_V11.md)
6768
* [10.x](CHANGELOG_V10.md)

doc/changelogs/CHANGELOG_V7.md

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
</table>
3232

3333
* Other Versions
34+
* [13.x](CHANGELOG_V13.md)
3435
* [12.x](CHANGELOG_V12.md)
3536
* [11.x](CHANGELOG_V11.md)
3637
* [10.x](CHANGELOG_V10.md)

doc/changelogs/CHANGELOG_V8.md

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
</table>
5252

5353
* Other Versions
54+
* [13.x](CHANGELOG_V13.md)
5455
* [12.x](CHANGELOG_V12.md)
5556
* [11.x](CHANGELOG_V11.md)
5657
* [10.x](CHANGELOG_V10.md)

doc/changelogs/CHANGELOG_V9.md

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
</table>
3333

3434
* Other Versions
35+
* [13.x](CHANGELOG_V13.md)
3536
* [12.x](CHANGELOG_V12.md)
3637
* [11.x](CHANGELOG_V11.md)
3738
* [10.x](CHANGELOG_V10.md)

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)