Skip to content

Commit ac59933

Browse files
committed
2022-05-31, Version 18.3.0 (Current)
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
1 parent aefc9dd commit ac59933

File tree

9 files changed

+112
-16
lines changed

9 files changed

+112
-16
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ release.
3535
</tr>
3636
<tr>
3737
<td valign="top">
38-
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.2.0">18.2.0</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.3.0">18.3.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V18.md#18.2.0">18.2.0</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V18.md#18.1.0">18.1.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V18.md#18.0.0">18.0.0</a><br/>
4142
</td>

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ To allow polyfills to be added, `--require` runs before freezing intrinsics.
430430
### `--force-node-api-uncaught-exceptions-policy`
431431

432432
<!-- YAML
433-
added: REPLACEME
433+
added: v18.3.0
434434
-->
435435

436436
Enforces `uncaughtException` event on Node-API asynchronous callbacks.

doc/api/errors.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2349,7 +2349,7 @@ cannot be imported through the package resolution, unless using an absolute URL.
23492349
### `ERR_PARSE_ARGS_INVALID_OPTION_VALUE`
23502350

23512351
<!-- YAML
2352-
added: REPLACEME
2352+
added: v18.3.0
23532353
-->
23542354

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

23632363
<!-- YAML
2364-
added: REPLACEME
2364+
added: v18.3.0
23652365
-->
23662366

23672367
Thrown by [`util.parseArgs()`][], when a postional argument is provided and
@@ -2372,7 +2372,7 @@ Thrown by [`util.parseArgs()`][], when a postional argument is provided and
23722372
### `ERR_PARSE_ARGS_UNKNOWN_OPTION`
23732373

23742374
<!-- YAML
2375-
added: REPLACEME
2375+
added: v18.3.0
23762376
-->
23772377

23782378
When `strict` set to `true`, thrown by [`util.parseArgs()`][] if an argument

doc/api/fs.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ the end of the file.
649649
#### `filehandle.write(buffer[, options])`
650650
651651
<!-- YAML
652-
added: REPLACEME
652+
added: v18.3.0
653653
-->
654654
655655
* `buffer` {Buffer|TypedArray|DataView}
@@ -4463,7 +4463,7 @@ the end of the file.
44634463
### `fs.write(fd, buffer[, options], callback)`
44644464
44654465
<!-- YAML
4466-
added: REPLACEME
4466+
added: v18.3.0
44674467
-->
44684468
44694469
* `fd` {integer}
@@ -5865,7 +5865,7 @@ this API: [`fs.write(fd, buffer...)`][].
58655865
### `fs.writeSync(fd, buffer[, options])`
58665866

58675867
<!-- YAML
5868-
added: REPLACEME
5868+
added: v18.3.0
58695869
-->
58705870

58715871
* `fd` {integer}

doc/api/http.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2370,7 +2370,7 @@ header name:
23702370
### `message.headersDistinct`
23712371

23722372
<!-- YAML
2373-
added: REPLACEME
2373+
added: v18.3.0
23742374
-->
23752375

23762376
* {Object}
@@ -2522,7 +2522,7 @@ The request/response trailers object. Only populated at the `'end'` event.
25222522
### `message.trailersDistinct`
25232523

25242524
<!-- YAML
2525-
added: REPLACEME
2525+
added: v18.3.0
25262526
-->
25272527

25282528
* {Object}
@@ -2645,7 +2645,7 @@ will result in a `TypeError` being thrown.
26452645
### `outgoingMessage.appendHeader(name, value)`
26462646

26472647
<!-- YAML
2648-
added: REPLACEME
2648+
added: v18.3.0
26492649
-->
26502650

26512651
* `name` {string} Header name

doc/api/net.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1090,7 +1090,7 @@ The numeric representation of the remote port. For example, `80` or `21`.
10901090
### `socket.resetAndDestroy()`
10911091

10921092
<!-- YAML
1093-
added: REPLACEME
1093+
added: v18.3.0
10941094
-->
10951095

10961096
* Returns: {net.Socket}

doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ equality.
10231023
## `util.parseArgs([config])`
10241024

10251025
<!-- YAML
1026-
added: REPLACEME
1026+
added: v18.3.0
10271027
-->
10281028

10291029
> Stability: 1 - Experimental

doc/changelogs/CHANGELOG_V18.md

+95
Large diffs are not rendered by default.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 18
26-
#define NODE_MINOR_VERSION 2
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 3
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)