Skip to content

Commit a51472b

Browse files
RafaelGSSruyadorno
andcommitted
2022-10-18, Version 19.0.0 (Current)
Notable Changes: cli: * (SEMVER-MINOR) add `--watch` (Moshe Atlow) #44366 esm: * remove specifier resolution flag (Geoffrey Booth) #44859 * convert `resolve` hook to synchronous (Jacob Smith) #43363 http: * (SEMVER-MINOR) add writeEarlyHints function to ServerResponse (Wing) #44180 * (SEMVER-MAJOR) use Keep-Alive by default in global agents (Paolo Insogna) #43522 build: * (SEMVER-MAJOR) remove dtrace & etw support (Ben Noordhuis) #43652 * (SEMVER-MAJOR) remove systemtap support (Ben Noordhuis) #43651 Deprecation and Removals: * (SEMVER-MAJOR) runtime deprecate exports double slash maps (Guy Bedford) #44495 Semver-Major Commits: * [aa3a572] - (SEMVER-MAJOR) build: remove dtrace & etw support (Ben Noordhuis) #43652 * [38f1e27] - (SEMVER-MAJOR) build: remove systemtap support (Ben Noordhuis) #43651 * [2849283] - (SEMVER-MAJOR) crypto: remove non-standard `webcrypto.Crypto.prototype.CryptoKey` (Antoine du Hamel) #42083 * [a1653ac] - (SEMVER-MAJOR) crypto: do not allow to call setFips from the worker thread (Sergey Petushkov) #43624 * [a4fa526] - (SEMVER-MAJOR) fs: add directory autodetection to fsPromises.symlink() (Livia Medeiros) #42894 * [bb4891d] - (SEMVER-MAJOR) fs: add validateBuffer to improve error (Hirotaka Tagawa / wafuwafu13) #44769 * [950a441] - (SEMVER-MAJOR) fs: remove coercion to string in writing methods (Livia Medeiros) #42796 * [41a6d82] - (SEMVER-MAJOR) fs: harden fs.readSync(buffer, options) typecheck (LiviaMedeiros) #42772 * [2275faa] - (SEMVER-MAJOR) fs: harden fs.read(params, callback) typecheck (LiviaMedeiros) #42772 * [29953a0] - (SEMVER-MAJOR) fs: harden filehandle.read(params) typecheck (LiviaMedeiros) #42772 * [4267b92] - (SEMVER-MAJOR) http: use Keep-Alive by default in global agents (Paolo Insogna) #43522 * [f529f73] - (SEMVER-MAJOR) lib: brand check event handler property receivers (Chengzhong Wu) #44483 * [6de2673] - (SEMVER-MAJOR) lib: enable global WebCrypto by default (Antoine du Hamel) #42083 * [73ba883] - (SEMVER-MAJOR) lib: use private field in AbortController (Joyee Cheung) #43820 * [7dd2f41] - (SEMVER-MAJOR) module: runtime deprecate exports double slash maps (Guy Bedford) #44495 * [587367d] - (SEMVER-MAJOR) perf_hooks: expose webperf global scope interfaces (Chengzhong Wu) #44483 * [364c0e1] - (SEMVER-MAJOR) perf_hooks: fix webperf idlharness (Chengzhong Wu) #44483 * [e0ab8dd] - (SEMVER-MAJOR) process: make process.config read only (Sergey Petushkov) #43627 * [481a959] - (SEMVER-MAJOR) readline: remove `question` method from `InterfaceConstructor` (Antoine du Hamel) #44606 * [77e5856] - (SEMVER-MAJOR) src: turn embedder api overload into default argument (Alena Khineika) #43629 * [dabda03] - (SEMVER-MAJOR) src: per-environment time origin value (Chengzhong Wu) #43781 * [2b32985] - (SEMVER-MAJOR) stream: use null for the error argument (Luigi Pinca) #44312 * [57ff476] - (SEMVER-MAJOR) test: remove duplicate test (Luigi Pinca) #44051 * [77def91] - (SEMVER-MAJOR) tls,http2: send fatal alert on ALPN mismatch (Tobias Nießen) #44031 PR-URL: #44626 Co-authored-by: Ruy Adorno <[email protected]>
1 parent 37e5152 commit a51472b

23 files changed

+120
-6
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 19](doc/changelogs/CHANGELOG_V19.md) **Current**
56
* [Node.js 18](doc/changelogs/CHANGELOG_V18.md) **Current**
67
* [Node.js 17](doc/changelogs/CHANGELOG_V17.md) **Current**
78
* [Node.js 16](doc/changelogs/CHANGELOG_V16.md) **Long Term Support**
@@ -27,6 +28,7 @@ release.
2728

2829
<table>
2930
<tr>
31+
<th title="Current"><a href="doc/changelogs/CHANGELOG_V19.md">19</a> (Current)</th>
3032
<th title="Current"><a href="doc/changelogs/CHANGELOG_V18.md">18</a> (Current)</th>
3133
<th title="Current"><a href="doc/changelogs/CHANGELOG_V17.md">17</a> (Current)</th>
3234
<th title="LTS Until 2024-04"><a href="doc/changelogs/CHANGELOG_V16.md">16</a> (LTS)</th>
@@ -35,6 +37,9 @@ release.
3537
</tr>
3638
<tr>
3739
<td valign="top">
40+
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.0.0">19.0.0</a></b><br/>
41+
</td>
42+
<td valign="top">
3843
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.11.0">18.11.0</a></b><br/>
3944
<a href="doc/changelogs/CHANGELOG_V18.md#18.10.0">18.10.0</a><br/>
4045
<a href="doc/changelogs/CHANGELOG_V18.md#18.9.1">18.9.1</a><br/>

doc/api/fs.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4612,7 +4612,7 @@ default with the above values.
46124612
<!-- YAML
46134613
added: v0.11.5
46144614
changes:
4615-
- version: REPLACEME
4615+
- version: v19.0.0
46164616
pr-url: https://github.com/nodejs/node/pull/42796
46174617
description: Passing to the `string` parameter an object with an own
46184618
`toString` function is no longer supported.
@@ -4684,7 +4684,7 @@ details.
46844684
<!-- YAML
46854685
added: v0.1.29
46864686
changes:
4687-
- version: REPLACEME
4687+
- version: v19.0.0
46884688
pr-url: https://github.com/nodejs/node/pull/42796
46894689
description: Passing to the `string` parameter an object with an own
46904690
`toString` function is no longer supported.
@@ -5926,7 +5926,7 @@ this API: [`fs.utimes()`][].
59265926
<!-- YAML
59275927
added: v0.1.29
59285928
changes:
5929-
- version: REPLACEME
5929+
- version: v19.0.0
59305930
pr-url: https://github.com/nodejs/node/pull/42796
59315931
description: Passing to the `data` parameter an object with an own
59325932
`toString` function is no longer supported.

doc/api/https.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ https.get('https://encrypted.google.com/', (res) => {
311311
added: v0.5.9
312312
changes:
313313
- version:
314-
- REPLACEME
314+
- v19.0.0
315315
pr-url: https://github.com/nodejs/node/pull/43522
316316
description: The agent now uses HTTP Keep-Alive by default.
317317
-->

doc/api/process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1041,7 +1041,7 @@ This feature is not available in [`Worker`][] threads.
10411041
<!-- YAML
10421042
added: v0.7.7
10431043
changes:
1044-
- version: REPLACEME
1044+
- version: v19.0.0
10451045
pr-url: https://github.com/nodejs/node/pull/43627
10461046
description: The `process.config` object is now frozen.
10471047
- version: v16.0.0

doc/api/tls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2012,7 +2012,7 @@ where `secureSocket` has the same API as `pair.cleartext`.
20122012
<!-- YAML
20132013
added: v0.3.2
20142014
changes:
2015-
- version: REPLACEME
2015+
- version: v19.0.0
20162016
pr-url: https://github.com/nodejs/node/pull/44031
20172017
description: If `ALPNProtocols` is set, incoming connections that send an
20182018
ALPN extension with no supported protocols are terminated with

doc/changelogs/CHANGELOG_ARCHIVE.md

+1
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@
154154
</table>
155155

156156
* Other Versions
157+
* [19.x](CHANGELOG_V19.md)
157158
* [18.x](CHANGELOG_V18.md)
158159
* [17.x](CHANGELOG_V17.md)
159160
* [16.x](CHANGELOG_V16.md)

doc/changelogs/CHANGELOG_IOJS.md

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

6464
* Other Versions
65+
* [19.x](CHANGELOG_V19.md)
6566
* [18.x](CHANGELOG_V18.md)
6667
* [17.x](CHANGELOG_V17.md)
6768
* [16.x](CHANGELOG_V16.md)

doc/changelogs/CHANGELOG_V10.md

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

6060
* Other Versions
61+
* [19.x](CHANGELOG_V19.md)
6162
* [18.x](CHANGELOG_V18.md)
6263
* [17.x](CHANGELOG_V17.md)
6364
* [16.x](CHANGELOG_V16.md)

doc/changelogs/CHANGELOG_V11.md

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

3232
* Other Versions
33+
* [19.x](CHANGELOG_V19.md)
3334
* [18.x](CHANGELOG_V18.md)
3435
* [17.x](CHANGELOG_V17.md)
3536
* [16.x](CHANGELOG_V16.md)

doc/changelogs/CHANGELOG_V12.md

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
</table>
6868

6969
* Other Versions
70+
* [19.x](CHANGELOG_V19.md)
7071
* [18.x](CHANGELOG_V18.md)
7172
* [17.x](CHANGELOG_V17.md)
7273
* [16.x](CHANGELOG_V16.md)

doc/changelogs/CHANGELOG_V13.md

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

3232
* Other Versions
33+
* [19.x](CHANGELOG_V19.md)
3334
* [18.x](CHANGELOG_V18.md)
3435
* [17.x](CHANGELOG_V17.md)
3536
* [16.x](CHANGELOG_V16.md)

doc/changelogs/CHANGELOG_V14.md

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

6060
* Other Versions
61+
* [19.x](CHANGELOG_V19.md)
6162
* [18.x](CHANGELOG_V18.md)
6263
* [17.x](CHANGELOG_V17.md)
6364
* [16.x](CHANGELOG_V16.md)

doc/changelogs/CHANGELOG_V15.md

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

3333
* Other Versions
34+
* [19.x](CHANGELOG_V19.md)
3435
* [18.x](CHANGELOG_V18.md)
3536
* [17.x](CHANGELOG_V17.md)
3637
* [16.x](CHANGELOG_V16.md)

doc/changelogs/CHANGELOG_V16.md

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
</table>
4848

4949
* Other Versions
50+
* [19.x](CHANGELOG_V19.md)
5051
* [18.x](CHANGELOG_V18.md)
5152
* [17.x](CHANGELOG_V17.md)
5253
* [15.x](CHANGELOG_V15.md)

doc/changelogs/CHANGELOG_V17.md

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

3030
* Other Versions
31+
* [19.x](CHANGELOG_V19.md)
3132
* [18.x](CHANGELOG_V18.md)
3233
* [16.x](CHANGELOG_V16.md)
3334
* [15.x](CHANGELOG_V15.md)

doc/changelogs/CHANGELOG_V18.md

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
</table>
2727

2828
* Other Versions
29+
* [19.x](CHANGELOG_V19.md)
2930
* [17.x](CHANGELOG_V17.md)
3031
* [16.x](CHANGELOG_V16.md)
3132
* [15.x](CHANGELOG_V15.md)

doc/changelogs/CHANGELOG_V19.md

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
# Node.js 19 ChangeLog
2+
3+
<!--lint disable maximum-line-length no-literal-urls prohibited-strings-->
4+
5+
<table>
6+
<tr>
7+
<th>Current</th>
8+
</tr>
9+
<tr>
10+
<td>
11+
<a href="#19.0.0">19.0.0</a><br/>
12+
</td>
13+
</tr>
14+
</table>
15+
16+
* Other Versions
17+
* [18.x](CHANGELOG_V18.md)
18+
* [17.x](CHANGELOG_V17.md)
19+
* [16.x](CHANGELOG_V16.md)
20+
* [15.x](CHANGELOG_V15.md)
21+
* [14.x](CHANGELOG_V14.md)
22+
* [13.x](CHANGELOG_V13.md)
23+
* [12.x](CHANGELOG_V12.md)
24+
* [11.x](CHANGELOG_V11.md)
25+
* [10.x](CHANGELOG_V10.md)
26+
* [9.x](CHANGELOG_V9.md)
27+
* [8.x](CHANGELOG_V8.md)
28+
* [7.x](CHANGELOG_V7.md)
29+
* [6.x](CHANGELOG_V6.md)
30+
* [5.x](CHANGELOG_V5.md)
31+
* [4.x](CHANGELOG_V4.md)
32+
* [0.12.x](CHANGELOG_V012.md)
33+
* [0.10.x](CHANGELOG_V010.md)
34+
* [io.js](CHANGELOG_IOJS.md)
35+
* [Archive](CHANGELOG_ARCHIVE.md)
36+
37+
<a id="19.0.0"></a>
38+
39+
## 2022-10-18, Version 19.0.0 (Current), @RafaelGSS and @ruyadorno
40+
41+
TBD
42+
43+
### Notable Changes
44+
45+
* \[[`f594cc85b7`](https://github.com/nodejs/node/commit/f594cc85b7)] - **esm**: remove specifier resolution flag (Geoffrey Booth) [#44859](https://github.com/nodejs/node/pull/44859)
46+
* \[[`beb0520af7`](https://github.com/nodejs/node/commit/beb0520af7)] - **(SEMVER-MINOR)** **cli**: add `--watch` (Moshe Atlow) [#44366](https://github.com/nodejs/node/pull/44366)
47+
* \[[`58ab0e2821`](https://github.com/nodejs/node/commit/58ab0e2821)] - **(SEMVER-MINOR)** **http**: add writeEarlyHints function to ServerResponse (Wing) [#44180](https://github.com/nodejs/node/pull/44180)
48+
* \[[`90b634a5a5`](https://github.com/nodejs/node/commit/90b634a5a5)] - **esm**: convert `resolve` hook to synchronous (Jacob Smith) [#43363](https://github.com/nodejs/node/pull/43363)
49+
* \[[`aa3a572e6b`](https://github.com/nodejs/node/commit/aa3a572e6b)] - **(SEMVER-MAJOR)** **build**: remove dtrace & etw support (Ben Noordhuis) [#43652](https://github.com/nodejs/node/pull/43652)
50+
* \[[`38f1e2793c`](https://github.com/nodejs/node/commit/38f1e2793c)] - **(SEMVER-MAJOR)** **build**: remove systemtap support (Ben Noordhuis) [#43651](https://github.com/nodejs/node/pull/43651)
51+
* \[[`4267b92604`](https://github.com/nodejs/node/commit/4267b92604)] - **(SEMVER-MAJOR)** **http**: use Keep-Alive by default in global agents (Paolo Insogna) [#43522](https://github.com/nodejs/node/pull/43522)
52+
53+
#### Deprecations and Removals
54+
55+
* \[[`7dd2f41c73`](https://github.com/nodejs/node/commit/7dd2f41c73)] - **(SEMVER-MAJOR)** **module**: runtime deprecate exports double slash maps (Guy Bedford) [#44495](https://github.com/nodejs/node/pull/44495)
56+
57+
#### Other Notable Changes
58+
59+
### Semver-Major Commits
60+
61+
* \[[`aa3a572e6b`](https://github.com/nodejs/node/commit/aa3a572e6b)] - **(SEMVER-MAJOR)** **build**: remove dtrace & etw support (Ben Noordhuis) [#43652](https://github.com/nodejs/node/pull/43652)
62+
* \[[`38f1e2793c`](https://github.com/nodejs/node/commit/38f1e2793c)] - **(SEMVER-MAJOR)** **build**: remove systemtap support (Ben Noordhuis) [#43651](https://github.com/nodejs/node/pull/43651)
63+
* \[[`2849283c4c`](https://github.com/nodejs/node/commit/2849283c4c)] - **(SEMVER-MAJOR)** **crypto**: remove non-standard `webcrypto.Crypto.prototype.CryptoKey` (Antoine du Hamel) [#42083](https://github.com/nodejs/node/pull/42083)
64+
* \[[`a1653ac715`](https://github.com/nodejs/node/commit/a1653ac715)] - **(SEMVER-MAJOR)** **crypto**: do not allow to call setFips from the worker thread (Sergey Petushkov) [#43624](https://github.com/nodejs/node/pull/43624)
65+
* \[[`a4fa526ddc`](https://github.com/nodejs/node/commit/a4fa526ddc)] - **(SEMVER-MAJOR)** **fs**: add directory autodetection to fsPromises.symlink() (Livia Medeiros) [#42894](https://github.com/nodejs/node/pull/42894)
66+
* \[[`bb4891d8d4`](https://github.com/nodejs/node/commit/bb4891d8d4)] - **(SEMVER-MAJOR)** **fs**: add validateBuffer to improve error (Hirotaka Tagawa / wafuwafu13) [#44769](https://github.com/nodejs/node/pull/44769)
67+
* \[[`950a4411fa`](https://github.com/nodejs/node/commit/950a4411fa)] - **(SEMVER-MAJOR)** **fs**: remove coercion to string in writing methods (Livia Medeiros) [#42796](https://github.com/nodejs/node/pull/42796)
68+
* \[[`41a6d82968`](https://github.com/nodejs/node/commit/41a6d82968)] - **(SEMVER-MAJOR)** **fs**: harden fs.readSync(buffer, options) typecheck (LiviaMedeiros) [#42772](https://github.com/nodejs/node/pull/42772)
69+
* \[[`2275faac2b`](https://github.com/nodejs/node/commit/2275faac2b)] - **(SEMVER-MAJOR)** **fs**: harden fs.read(params, callback) typecheck (LiviaMedeiros) [#42772](https://github.com/nodejs/node/pull/42772)
70+
* \[[`29953a0b88`](https://github.com/nodejs/node/commit/29953a0b88)] - **(SEMVER-MAJOR)** **fs**: harden filehandle.read(params) typecheck (LiviaMedeiros) [#42772](https://github.com/nodejs/node/pull/42772)
71+
* \[[`4267b92604`](https://github.com/nodejs/node/commit/4267b92604)] - **(SEMVER-MAJOR)** **http**: use Keep-Alive by default in global agents (Paolo Insogna) [#43522](https://github.com/nodejs/node/pull/43522)
72+
* \[[`f529f73bd7`](https://github.com/nodejs/node/commit/f529f73bd7)] - **(SEMVER-MAJOR)** **lib**: brand check event handler property receivers (Chengzhong Wu) [#44483](https://github.com/nodejs/node/pull/44483)
73+
* \[[`6de2673a9f`](https://github.com/nodejs/node/commit/6de2673a9f)] - **(SEMVER-MAJOR)** **lib**: enable global WebCrypto by default (Antoine du Hamel) [#42083](https://github.com/nodejs/node/pull/42083)
74+
* \[[`73ba8830d5`](https://github.com/nodejs/node/commit/73ba8830d5)] - **(SEMVER-MAJOR)** **lib**: use private field in AbortController (Joyee Cheung) [#43820](https://github.com/nodejs/node/pull/43820)
75+
* \[[`7dd2f41c73`](https://github.com/nodejs/node/commit/7dd2f41c73)] - **(SEMVER-MAJOR)** **module**: runtime deprecate exports double slash maps (Guy Bedford) [#44495](https://github.com/nodejs/node/pull/44495)
76+
* \[[`587367d107`](https://github.com/nodejs/node/commit/587367d107)] - **(SEMVER-MAJOR)** **perf\_hooks**: expose webperf global scope interfaces (Chengzhong Wu) [#44483](https://github.com/nodejs/node/pull/44483)
77+
* \[[`364c0e196c`](https://github.com/nodejs/node/commit/364c0e196c)] - **(SEMVER-MAJOR)** **perf\_hooks**: fix webperf idlharness (Chengzhong Wu) [#44483](https://github.com/nodejs/node/pull/44483)
78+
* \[[`e0ab8dd637`](https://github.com/nodejs/node/commit/e0ab8dd637)] - **(SEMVER-MAJOR)** **process**: make process.config read only (Sergey Petushkov) [#43627](https://github.com/nodejs/node/pull/43627)
79+
* \[[`481a959adb`](https://github.com/nodejs/node/commit/481a959adb)] - **(SEMVER-MAJOR)** **readline**: remove `question` method from `InterfaceConstructor` (Antoine du Hamel) [#44606](https://github.com/nodejs/node/pull/44606)
80+
* \[[`77e585657f`](https://github.com/nodejs/node/commit/77e585657f)] - **(SEMVER-MAJOR)** **src**: turn embedder api overload into default argument (Alena Khineika) [#43629](https://github.com/nodejs/node/pull/43629)
81+
* \[[`dabda03ea9`](https://github.com/nodejs/node/commit/dabda03ea9)] - **(SEMVER-MAJOR)** **src**: per-environment time origin value (Chengzhong Wu) [#43781](https://github.com/nodejs/node/pull/43781)
82+
* \[[`2b32985c62`](https://github.com/nodejs/node/commit/2b32985c62)] - **(SEMVER-MAJOR)** **stream**: use null for the error argument (Luigi Pinca) [#44312](https://github.com/nodejs/node/pull/44312)
83+
* \[[`57ff476c33`](https://github.com/nodejs/node/commit/57ff476c33)] - **(SEMVER-MAJOR)** **test**: remove duplicate test (Luigi Pinca) [#44051](https://github.com/nodejs/node/pull/44051)
84+
* \[[`77def91bf9`](https://github.com/nodejs/node/commit/77def91bf9)] - **(SEMVER-MAJOR)** **tls,http2**: send fatal alert on ALPN mismatch (Tobias Nießen) [#44031](https://github.com/nodejs/node/pull/44031)
85+
86+
### Semver-Minor Commits
87+
88+
TBD
89+
90+
### Semver-Patch Commits
91+
92+
TBD

doc/changelogs/CHANGELOG_V4.md

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

5858
* Other Versions
59+
* [19.x](CHANGELOG_V19.md)
5960
* [18.x](CHANGELOG_V18.md)
6061
* [17.x](CHANGELOG_V17.md)
6162
* [16.x](CHANGELOG_V16.md)

doc/changelogs/CHANGELOG_V5.md

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

3434
* Other Versions
35+
* [19.x](CHANGELOG_V19.md)
3536
* [18.x](CHANGELOG_V18.md)
3637
* [17.x](CHANGELOG_V17.md)
3738
* [16.x](CHANGELOG_V16.md)

doc/changelogs/CHANGELOG_V6.md

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

6363
* Other Versions
64+
* [19.x](CHANGELOG_V19.md)
6465
* [18.x](CHANGELOG_V18.md)
6566
* [17.x](CHANGELOG_V17.md)
6667
* [16.x](CHANGELOG_V16.md)

doc/changelogs/CHANGELOG_V7.md

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

3232
* Other Versions
33+
* [19.x](CHANGELOG_V19.md)
3334
* [18.x](CHANGELOG_V18.md)
3435
* [17.x](CHANGELOG_V17.md)
3536
* [16.x](CHANGELOG_V16.md)

doc/changelogs/CHANGELOG_V8.md

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

5454
* Other Versions
55+
* [19.x](CHANGELOG_V19.md)
5556
* [18.x](CHANGELOG_V18.md)
5657
* [17.x](CHANGELOG_V17.md)
5758
* [16.x](CHANGELOG_V16.md)

doc/changelogs/CHANGELOG_V9.md

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

3333
* Other Versions
34+
* [19.x](CHANGELOG_V19.md)
3435
* [18.x](CHANGELOG_V18.md)
3536
* [17.x](CHANGELOG_V17.md)
3637
* [16.x](CHANGELOG_V16.md)

0 commit comments

Comments
 (0)