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 1, 2023
1 parent fcfde34 commit 43bbe45
Show file tree
Hide file tree
Showing 6 changed files with 290 additions and 9 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -33,7 +33,8 @@ release.
</tr>
<tr>
<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
2 changes: 1 addition & 1 deletion doc/api/buffer.md
Expand Up @@ -5129,7 +5129,7 @@ and binary data should be performed using `Buffer.from(str, 'base64')` and
### `buffer.isUtf8(input)`

<!-- YAML
added: REPLACEME
added: v18.14.0
-->

* input {Buffer | ArrayBuffer | TypedArray} The input to validate.
Expand Down
6 changes: 3 additions & 3 deletions doc/api/http.md
Expand Up @@ -1503,7 +1503,7 @@ added:
- v11.3.0
- v10.14.0
changes:
- version: REPLACEME
- version: 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 @@ -2413,7 +2413,7 @@ as an argument to any listeners on the event.
<!-- YAML
added: v0.1.5
changes:
- version: REPLACEME
- version: v18.14.0
pr-url: https://github.com/nodejs/node/pull/45982
description: >-
The `joinDuplicateHeaders` option in the `http.request()`
Expand Down Expand Up @@ -3624,7 +3624,7 @@ request itself.
<!-- YAML
added: v14.3.0
changes:
- version: REPLACEME
- version: v18.14.0
pr-url: https://github.com/nodejs/node/pull/46143
description: The `label` parameter is added.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/os.md
Expand Up @@ -29,7 +29,7 @@ The operating system-specific end-of-line marker.
## `os.availableParallelism()`

<!-- YAML
added: REPLACEME
added: v18.14.0
-->

* Returns: {integer}
Expand Down

0 comments on commit 43bbe45

Please sign in to comment.