Skip to content

Commit

Permalink
2022-06-01, Version 18.3.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

* deps: update undici to 5.4.0  (Node.js GitHub Bot) nodejs#43262
* (SEMVER-MINOR) util: add parseArgs module (Benjamin Coe) nodejs#42675
* (SEMVER-MINOR) http: add uniqueHeaders option to request and createServer (Paolo Insogna) nodejs#41397
* deps: upgrade npm to 8.11.0 (npm team) nodejs#43210
* deps: patch V8 to 10.2.154.4 (Michaël Zasso) nodejs#43067
* (SEMVER-MINOR) deps: update V8 to 10.2.154.2 (Michaël Zasso) nodejs#42740
* (SEMVER-MINOR) fs: make params in writing methods optional (LiviaMedeiros) nodejs#42601
* (SEMVER-MINOR) http: add uniqueHeaders option to request and createServer (Paolo Insogna) nodejs#41397
* (SEMVER-MINOR) net: add ability to reset a tcp socket (pupilTong) nodejs#43112
* (SEMVER-MINOR) Revert "build: make x86 Windows support temporarily experimental" (Michaël Zasso) [nodejs#42740](nodejs#42740)
  * This means 32-bit Windows binaries are back with this release.

PR-URL: nodejs#43266
  • Loading branch information
bengl authored and italojs committed Jun 6, 2022
1 parent 3a8fcef commit 885bbe4
Show file tree
Hide file tree
Showing 8 changed files with 110 additions and 13 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -35,7 +35,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.2.0">18.2.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.3.0">18.3.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V18.md#18.2.0">18.2.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V18.md#18.1.0">18.1.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V18.md#18.0.0">18.0.0</a><br/>
</td>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/cli.md
Expand Up @@ -442,7 +442,7 @@ To allow polyfills to be added, `--require` runs before freezing intrinsics.
### `--force-node-api-uncaught-exceptions-policy`

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

Enforces `uncaughtException` event on Node-API asynchronous callbacks.
Expand Down
6 changes: 3 additions & 3 deletions doc/api/errors.md
Expand Up @@ -2360,7 +2360,7 @@ cannot be imported through the package resolution, unless using an absolute URL.
### `ERR_PARSE_ARGS_INVALID_OPTION_VALUE`

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

When `strict` set to `true`, thrown by [`util.parseArgs()`][] if a {boolean}
Expand All @@ -2372,7 +2372,7 @@ value is provided for an option of type {boolean}.
### `ERR_PARSE_ARGS_UNEXPECTED_POSITIONAL`

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

Thrown by [`util.parseArgs()`][], when a postional argument is provided and
Expand All @@ -2383,7 +2383,7 @@ Thrown by [`util.parseArgs()`][], when a postional argument is provided and
### `ERR_PARSE_ARGS_UNKNOWN_OPTION`

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

When `strict` set to `true`, thrown by [`util.parseArgs()`][] if an argument
Expand Down
6 changes: 3 additions & 3 deletions doc/api/fs.md
Expand Up @@ -649,7 +649,7 @@ the end of the file.
#### `filehandle.write(buffer[, options])`
<!-- YAML
added: REPLACEME
added: v18.3.0
-->
* `buffer` {Buffer|TypedArray|DataView}
Expand Down Expand Up @@ -4467,7 +4467,7 @@ the end of the file.
### `fs.write(fd, buffer[, options], callback)`
<!-- YAML
added: REPLACEME
added: v18.3.0
-->
* `fd` {integer}
Expand Down Expand Up @@ -5871,7 +5871,7 @@ this API: [`fs.write(fd, buffer...)`][].
### `fs.writeSync(fd, buffer[, options])`

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

* `fd` {integer}
Expand Down
6 changes: 3 additions & 3 deletions doc/api/http.md
Expand Up @@ -2372,7 +2372,7 @@ header name:
### `message.headersDistinct`

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

* {Object}
Expand Down Expand Up @@ -2524,7 +2524,7 @@ The request/response trailers object. Only populated at the `'end'` event.
### `message.trailersDistinct`

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

* {Object}
Expand Down Expand Up @@ -2647,7 +2647,7 @@ will result in a `TypeError` being thrown.
### `outgoingMessage.appendHeader(name, value)`

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

* `name` {string} Header name
Expand Down
2 changes: 1 addition & 1 deletion doc/api/net.md
Expand Up @@ -1092,7 +1092,7 @@ The numeric representation of the remote port. For example, `80` or `21`.
### `socket.resetAndDestroy()`

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

* Returns: {net.Socket}
Expand Down
2 changes: 1 addition & 1 deletion doc/api/util.md
Expand Up @@ -1023,7 +1023,7 @@ equality.
## `util.parseArgs([config])`

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

> Stability: 1 - Experimental
Expand Down
96 changes: 96 additions & 0 deletions doc/changelogs/CHANGELOG_V18.md

Large diffs are not rendered by default.

0 comments on commit 885bbe4

Please sign in to comment.