Skip to content

Commit

Permalink
2023-02-02, Version 18.14.0 'Hydrogen' (LTS)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
juanarbol committed Feb 2, 2023
1 parent 7508083 commit 66ab03d
Show file tree
Hide file tree
Showing 5 changed files with 304 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -45,7 +45,8 @@ release.
<a href="doc/changelogs/CHANGELOG_V19.md#19.0.0">19.0.0</a><br/>
</td>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.13.0">18.13.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.14.0">18.14.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V18.md#18.13.0">18.13.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V18.md#18.12.1">18.12.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V18.md#18.12.0">18.12.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V18.md#18.11.0">18.11.0</a><br/>
Expand Down
4 changes: 3 additions & 1 deletion doc/api/buffer.md
Expand Up @@ -5155,7 +5155,9 @@ Throws if the `input` is a detached array buffer.
### `buffer.isUtf8(input)`

<!-- YAML
added: v19.4.0
added:
- v19.4.0
- v18.14.0
-->

* input {Buffer | ArrayBuffer | TypedArray} The input to validate.
Expand Down
12 changes: 9 additions & 3 deletions doc/api/http.md
Expand Up @@ -1516,7 +1516,9 @@ added:
- v11.3.0
- v10.14.0
changes:
- version: v19.4.0
- version:
- v19.4.0
- v18.14.0
pr-url: https://github.com/nodejs/node/pull/45778
description: The default is now set to the minimum between 60000 (60 seconds) or `requestTimeout`.
-->
Expand Down Expand Up @@ -2426,7 +2428,9 @@ as an argument to any listeners on the event.
<!-- YAML
added: v0.1.5
changes:
- version: v19.5.0
- version:
- v19.5.0
- v18.14.0
pr-url: https://github.com/nodejs/node/pull/45982
description: >-
The `joinDuplicateHeaders` option in the `http.request()`
Expand Down Expand Up @@ -3708,7 +3712,9 @@ request itself.
<!-- YAML
added: v14.3.0
changes:
- version: v19.5.0
- version:
- v19.5.0
- v18.14.0
pr-url: https://github.com/nodejs/node/pull/46143
description: The `label` parameter is added.
-->
Expand Down
4 changes: 3 additions & 1 deletion doc/api/os.md
Expand Up @@ -29,7 +29,9 @@ The operating system-specific end-of-line marker.
## `os.availableParallelism()`

<!-- YAML
added: v19.4.0
added:
- v19.4.0
- v18.14.0
-->

* Returns: {integer}
Expand Down

0 comments on commit 66ab03d

Please sign in to comment.