Skip to content

Commit f5fe384

Browse files
committed
2019-12-03, Version 13.3.0 (Current)
Notable changes: * fs: * Reworked experimental recursive `rmdir()` (cjihrig) #30644 * The `maxBusyTries` option is renamed to `maxRetries`, and its default is set to 0. The `emfileWait` option has been removed, and `EMFILE` errors use the same retry logic as other errors. The `retryDelay` option is now supported. `ENFILE` errors are now retried. * http: * Make maximum header size configurable per-stream or per-server (Anna Henningsen) #30570 * http2: * Make maximum tolerated rejected streams configurable (Denys Otrishko) #30534 * Allow to configure maximum tolerated invalid frames (Denys Otrishko) #30534 * wasi: * Introduce initial WASI support (cjihrig) #30258 PR-URL: #30774
1 parent 648766b commit f5fe384

File tree

10 files changed

+224
-21
lines changed

10 files changed

+224
-21
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ release.
3030
</tr>
3131
<tr>
3232
<td valign="top">
33-
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.2.0">13.2.0</a></b><br/>
33+
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.3.0">13.3.0</a></b><br/>
34+
<a href="doc/changelogs/CHANGELOG_V13.md#13.2.0">13.2.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V13.md#13.1.0">13.1.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V13.md#13.0.1">13.0.1</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V13.md#13.0.0">13.0.0</a><br/>

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ Enable experimental ES Module support in the `vm` module.
232232

233233
### `--experimental-wasi-unstable-preview0`
234234
<!-- YAML
235-
added: REPLACEME
235+
added: v13.3.0
236236
-->
237237

238238
Enable experimental WebAssembly System Interface (WASI) support.

doc/api/errors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1812,7 +1812,7 @@ connection.
18121812
<a id="ERR_TLS_INVALID_CONTEXT">
18131813
### ERR_TLS_INVALID_CONTEXT
18141814
<!-- YAML
1815-
added: REPLACEME
1815+
added: v13.3.0
18161816
-->
18171817

18181818
The context must be a `SecureContext`.

doc/api/fs.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3220,7 +3220,7 @@ Synchronous rename(2). Returns `undefined`.
32203220
<!-- YAML
32213221
added: v0.0.2
32223222
changes:
3223-
- version: REPLACEME
3223+
- version: v13.3.0
32243224
pr-url: https://github.com/nodejs/node/pull/30644
32253225
description: The `maxBusyTries` option is renamed to `maxRetries`, and its
32263226
default is 0. The `emfileWait` option has been removed, and
@@ -3273,7 +3273,7 @@ Windows and an `ENOTDIR` error on POSIX.
32733273
<!-- YAML
32743274
added: v0.1.21
32753275
changes:
3276-
- version: REPLACEME
3276+
- version: v13.3.0
32773277
pr-url: https://github.com/nodejs/node/pull/30644
32783278
description: The `maxBusyTries` option is renamed to `maxRetries`, and its
32793279
default is 0. The `emfileWait` option has been removed, and
@@ -5012,7 +5012,7 @@ upon success.
50125012
<!-- YAML
50135013
added: v10.0.0
50145014
changes:
5015-
- version: REPLACEME
5015+
- version: v13.3.0
50165016
pr-url: https://github.com/nodejs/node/pull/30644
50175017
description: The `maxBusyTries` option is renamed to `maxRetries`, and its
50185018
default is 0. The `emfileWait` option has been removed, and

doc/api/http.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2047,7 +2047,7 @@ Found'`.
20472047
<!-- YAML
20482048
added: v0.1.13
20492049
changes:
2050-
- version: REPLACEME
2050+
- version: v13.3.0
20512051
pr-url: https://github.com/nodejs/node/pull/30570
20522052
description: The `maxHeaderSize` option is supported now.
20532053
- version: v9.6.0, v8.12.0
@@ -2171,7 +2171,7 @@ This can be overridden for servers and client requests by passing the
21712171
<!-- YAML
21722172
added: v0.3.6
21732173
changes:
2174-
- version: REPLACEME
2174+
- version: v13.3.0
21752175
pr-url: https://github.com/nodejs/node/pull/30570
21762176
description: The `maxHeaderSize` option is supported now.
21772177
- version: v10.9.0

doc/api/http2.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1941,10 +1941,10 @@ error will be thrown.
19411941
<!-- YAML
19421942
added: v8.4.0
19431943
changes:
1944-
- version: REPLACEME
1944+
- version: v13.3.0
19451945
pr-url: https://github.com/nodejs/node/pull/30534
19461946
description: Added `maxSessionRejectedStreams` option with a default of 100.
1947-
- version: REPLACEME
1947+
- version: v13.3.0
19481948
pr-url: https://github.com/nodejs/node/pull/30534
19491949
description: Added `maxSessionInvalidFrames` option with a default of 1000.
19501950
- version: v13.0.0
@@ -2068,10 +2068,10 @@ server.listen(80);
20682068
<!-- YAML
20692069
added: v8.4.0
20702070
changes:
2071-
- version: REPLACEME
2071+
- version: v13.3.0
20722072
pr-url: https://github.com/nodejs/node/pull/30534
20732073
description: Added `maxSessionRejectedStreams` option with a default of 100.
2074-
- version: REPLACEME
2074+
- version: v13.3.0
20752075
pr-url: https://github.com/nodejs/node/pull/30534
20762076
description: Added `maxSessionInvalidFrames` option with a default of 1000.
20772077
- version: v13.0.0

doc/api/n-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3262,7 +3262,7 @@ defined in [Section 24.1.1.3][] of the ECMAScript Language Specification.
32623262

32633263
### napi_is_detached_arraybuffer
32643264
<!-- YAML
3265-
added: REPLACEME
3265+
added: v13.3.0
32663266
-->
32673267

32683268
> Stability: 1 - Experimental

doc/api/wasi.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# WebAssembly System Interface (WASI)
22

3-
<!--introduced_in=REPLACEME-->
3+
<!--introduced_in=v13.3.0-->
44

55
> Stability: 1 - Experimental
66
@@ -34,7 +34,7 @@ CLI arguments are needed for the previous example to run.
3434

3535
## Class: WASI
3636
<!-- YAML
37-
added: REPLACEME
37+
added: v13.3.0
3838
-->
3939

4040
The `WASI` class provides the WASI system call API and additional convenience
@@ -45,7 +45,7 @@ sandbox directory structure configured explicitly.
4545

4646
### new WASI(\[options\])
4747
<!-- YAML
48-
added: REPLACEME
48+
added: v13.3.0
4949
-->
5050

5151
* `options` {Object}
@@ -61,7 +61,7 @@ added: REPLACEME
6161

6262
### wasi.start(instance)
6363
<!-- YAML
64-
added: REPLACEME
64+
added: v13.3.0
6565
-->
6666

6767
* `instance` {WebAssembly.Instance}
@@ -76,7 +76,7 @@ is present on `instance`, then `start()` does nothing.
7676

7777
### wasi.wasiImport
7878
<!-- YAML
79-
added: REPLACEME
79+
added: v13.3.0
8080
-->
8181

8282
* {Object}

doc/changelogs/CHANGELOG_V13.md

+202
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 13
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)