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

PR-URL: #43266
  • Loading branch information
bengl committed Jun 1, 2022
1 parent aefc9dd commit 7a2ee56
Show file tree
Hide file tree
Showing 9 changed files with 112 additions and 16 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 @@ -430,7 +430,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 @@ -2349,7 +2349,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 @@ -2361,7 +2361,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 @@ -2372,7 +2372,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 @@ -4463,7 +4463,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 @@ -5865,7 +5865,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 @@ -2370,7 +2370,7 @@ header name:
### `message.headersDistinct`

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

* {Object}
Expand Down Expand Up @@ -2522,7 +2522,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 @@ -2645,7 +2645,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 @@ -1090,7 +1090,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
95 changes: 95 additions & 0 deletions doc/changelogs/CHANGELOG_V18.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 18
#define NODE_MINOR_VERSION 2
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 3
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit 7a2ee56

Please sign in to comment.