Skip to content

Commit b8f8f05

Browse files
committed
2019-11-21, Version 13.2.0 (Current)
Notable changes: * addons: * Deprecate one- and two-argument `AtExit()`. Use the three-argument variant of `AtExit()` or `AddEnvironmentCleanupHook()` instead (Anna Henningsen) #30227 * child_process,cluster: * The `serialization` option is added that allows child process IPC to use the V8 serialization API (to e.g., pass through data types like sets or maps) (Anna Henningsen) #30162 * deps: * Update V8 to 7.9 * Update `npm` to 6.13.0 (Ruy Adorno) #30271 * embedder: * Exposes the ability to pass cli flags / options through an API as embedder (Shelley Vohr) #30466 * Allow adding linked bindings to Environment (Anna Henningsen) #30274 * esm: * Unflag --experimental-modules (Guy Bedford) #29866 * stream: * Add `writable.writableCorked` property (Robert Nagy) #29012 * worker: * Allow specifying resource limits (Anna Henningsen) #26628 * v8: * The Serialization API is now stable (Anna Henningsen) #30234 PR-URL: #30547
1 parent cf1f1de commit b8f8f05

10 files changed

+219
-15
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.1.0">13.1.0</a></b><br/>
33+
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.2.0">13.2.0</a></b><br/>
34+
<a href="doc/changelogs/CHANGELOG_V13.md#13.1.0">13.1.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V13.md#13.0.1">13.0.1</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V13.md#13.0.0">13.0.0</a><br/>
3637
</td>

doc/api/child_process.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ arbitrary command execution.**
321321
<!-- YAML
322322
added: v0.5.0
323323
changes:
324-
- version: REPLACEME
324+
- version: v13.2.0
325325
pr-url: https://github.com/nodejs/node/pull/30162
326326
description: The `serialization` option is supported now.
327327
- version: v8.0.0
@@ -392,7 +392,7 @@ The `shell` option available in [`child_process.spawn()`][] is not supported by
392392
<!-- YAML
393393
added: v0.1.90
394394
changes:
395-
- version: REPLACEME
395+
- version: v13.2.0
396396
pr-url: https://github.com/nodejs/node/pull/30162
397397
description: The `serialization` option is supported now.
398398
- version: v8.8.0
@@ -1491,7 +1491,7 @@ unavailable.
14911491

14921492
## Advanced Serialization
14931493
<!-- YAML
1494-
added: REPLACEME
1494+
added: v13.2.0
14951495
-->
14961496

14971497
Child processes support a serialization mechanism for IPC that is based on the

doc/api/cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ Please see [customizing ESM specifier resolution][] for example usage.
172172

173173
### `--experimental-conditional-exports`
174174
<!-- YAML
175-
added: REPLACEME
175+
added: v13.2.0
176176
-->
177177

178178
Enable experimental support for the `"require"` and `"node"` conditional
@@ -681,7 +681,7 @@ with crypto support (default).
681681

682682
### `--tls-keylog=file`
683683
<!-- YAML
684-
added: REPLACEME
684+
added: v13.2.0
685685
-->
686686

687687
Log TLS key material to a file. The key material is in NSS `SSLKEYLOGFILE`

doc/api/cluster.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ values are `'rr'` and `'none'`.
724724
<!-- YAML
725725
added: v0.7.1
726726
changes:
727-
- version: REPLACEME
727+
- version: v13.2.0
728728
pr-url: https://github.com/nodejs/node/pull/30162
729729
description: The `serialization` option is supported now.
730730
- version: v9.5.0

doc/api/http.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1273,7 +1273,7 @@ See [`response.socket`][].
12731273

12741274
### response.cork()
12751275
<!-- YAML
1276-
added: REPLACEME
1276+
added: v13.2.0
12771277
-->
12781278

12791279
See [`writable.cork()`][].
@@ -1569,7 +1569,7 @@ status message which was sent out.
15691569

15701570
### response.uncork()
15711571
<!-- YAML
1572-
added: REPLACEME
1572+
added: v13.2.0
15731573
-->
15741574

15751575
See [`writable.uncork()`][].

doc/api/https.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ changes:
4747

4848
#### Event: 'keylog'
4949
<!-- YAML
50-
added: REPLACEME
50+
added: v13.2.0
5151
-->
5252

5353
* `line` {Buffer} Line of ASCII text, in NSS `SSLKEYLOGFILE` format.

doc/api/stream.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ does not indicate whether the data has been flushed, for this use
507507

508508
##### writable.writableCorked
509509
<!-- YAML
510-
added: REPLACEME
510+
added: v13.2.0
511511
-->
512512

513513
* {integer}

doc/api/worker_threads.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ When this function is used, no `'message'` event will be emitted and the
159159

160160
### worker.resourceLimits
161161
<!-- YAML
162-
added: REPLACEME
162+
added: v13.2.0
163163
-->
164164

165165
* {Object|undefined}
@@ -507,7 +507,7 @@ if (isMainThread) {
507507
<!-- YAML
508508
added: v10.5.0
509509
changes:
510-
- version: REPLACEME
510+
- version: v13.2.0
511511
pr-url: https://github.com/nodejs/node/pull/26628
512512
description: The `resourceLimits` option was introduced.
513513
-->
@@ -618,7 +618,7 @@ no effect.
618618

619619
### worker.resourceLimits
620620
<!-- YAML
621-
added: REPLACEME
621+
added: v13.2.0
622622
-->
623623

624624
* {Object}

doc/changelogs/CHANGELOG_V13.md

+203
Large diffs are not rendered by default.

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
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)