Skip to content

Commit 66ab03d

Browse files
committed
2023-02-02, Version 18.14.0 'Hydrogen' (LTS)
Notable changes: * deps: * upgrade npm to 9.3.1 (npm team) #46242 * doc: * add parallelism note to os.cpus() (Colin Ihrig) #45895 * http: * join authorization headers (Marco Ippolito) #45982 * improved timeout defaults handling (Paolo Insogna) #45778 * stream: * implement finished() for ReadableStream and WritableStream (Debadree Chatterjee) #46205 PR-URL: #46396
1 parent 7508083 commit 66ab03d

File tree

5 files changed

+304
-6
lines changed

5 files changed

+304
-6
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ release.
4545
<a href="doc/changelogs/CHANGELOG_V19.md#19.0.0">19.0.0</a><br/>
4646
</td>
4747
<td valign="top">
48-
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.13.0">18.13.0</a></b><br/>
48+
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.14.0">18.14.0</a></b><br/>
49+
<a href="doc/changelogs/CHANGELOG_V18.md#18.13.0">18.13.0</a><br/>
4950
<a href="doc/changelogs/CHANGELOG_V18.md#18.12.1">18.12.1</a><br/>
5051
<a href="doc/changelogs/CHANGELOG_V18.md#18.12.0">18.12.0</a><br/>
5152
<a href="doc/changelogs/CHANGELOG_V18.md#18.11.0">18.11.0</a><br/>

doc/api/buffer.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -5155,7 +5155,9 @@ Throws if the `input` is a detached array buffer.
51555155
### `buffer.isUtf8(input)`
51565156

51575157
<!-- YAML
5158-
added: v19.4.0
5158+
added:
5159+
- v19.4.0
5160+
- v18.14.0
51595161
-->
51605162

51615163
* input {Buffer | ArrayBuffer | TypedArray} The input to validate.

doc/api/http.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -1516,7 +1516,9 @@ added:
15161516
- v11.3.0
15171517
- v10.14.0
15181518
changes:
1519-
- version: v19.4.0
1519+
- version:
1520+
- v19.4.0
1521+
- v18.14.0
15201522
pr-url: https://github.com/nodejs/node/pull/45778
15211523
description: The default is now set to the minimum between 60000 (60 seconds) or `requestTimeout`.
15221524
-->
@@ -2426,7 +2428,9 @@ as an argument to any listeners on the event.
24262428
<!-- YAML
24272429
added: v0.1.5
24282430
changes:
2429-
- version: v19.5.0
2431+
- version:
2432+
- v19.5.0
2433+
- v18.14.0
24302434
pr-url: https://github.com/nodejs/node/pull/45982
24312435
description: >-
24322436
The `joinDuplicateHeaders` option in the `http.request()`
@@ -3708,7 +3712,9 @@ request itself.
37083712
<!-- YAML
37093713
added: v14.3.0
37103714
changes:
3711-
- version: v19.5.0
3715+
- version:
3716+
- v19.5.0
3717+
- v18.14.0
37123718
pr-url: https://github.com/nodejs/node/pull/46143
37133719
description: The `label` parameter is added.
37143720
-->

doc/api/os.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ The operating system-specific end-of-line marker.
2929
## `os.availableParallelism()`
3030

3131
<!-- YAML
32-
added: v19.4.0
32+
added:
33+
- v19.4.0
34+
- v18.14.0
3335
-->
3436

3537
* Returns: {integer}

0 commit comments

Comments
 (0)