Skip to content

Commit 219332e

Browse files
committed
2020-11-24, Version 12.20.0 'Erbium' (LTS)
Notable changes: crypto: * update certdata to NSS 3.56 (Shelley Vohr) nodejs#35546 deps: * update llhttp to 2.1.3 (Fedor Indutny) nodejs#35435 * (SEMVER-MINOR) upgrade to libuv 1.40.0 (Colin Ihrig) nodejs#35333 doc: * add aduh95 to collaborators (Antoine du Hamel) nodejs#35542 fs: * (SEMVER-MINOR) add .ref() and .unref() methods to watcher classes (rickyes) nodejs#33134 http: * (SEMVER-MINOR) added scheduling option to http agent (delvedor) nodejs#33278 module: * (SEMVER-MINOR) exports pattern support (Guy Bedford) nodejs#34718 * (SEMVER-MINOR) named exports for CJS via static analysis (Guy Bedford) nodejs#35249 n-api: * (SEMVER-MINOR) add more property defaults (Gerhard Stoebich) nodejs#35214 src: * (SEMVER-MINOR) move node_contextify to modern THROW_ERR_* (James M Snell) nodejs#35470 * (SEMVER-MINOR) move node_process to modern THROW_ERR* (James M Snell) nodejs#35472 * (SEMVER-MINOR) expose v8::Isolate setup callbacks (Shelley Vohr) nodejs#35512 PR-URL: nodejs#35950
1 parent 7b5b8ef commit 219332e

File tree

7 files changed

+193
-11
lines changed

7 files changed

+193
-11
lines changed

Diff for: CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ release.
6161
<a href="doc/changelogs/CHANGELOG_V14.md#14.0.0">14.0.0</a><br/>
6262
</td>
6363
<td valign="top">
64-
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.19.1">12.19.1</a></b><br/>
64+
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.20.0">12.20.0</a></b><br/>
65+
<a href="doc/changelogs/CHANGELOG_V12.md#12.19.1">12.19.1</a><br/>
6566
<a href="doc/changelogs/CHANGELOG_V12.md#12.19.0">12.19.0</a><br/>
6667
<a href="doc/changelogs/CHANGELOG_V12.md#12.18.4">12.18.4</a><br/>
6768
<a href="doc/changelogs/CHANGELOG_V12.md#12.18.3">12.18.3</a><br/>

Diff for: doc/api/esm.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ changes:
1111
description: Stabilize modules implementation.
1212
- version:
1313
- v14.13.0
14+
- v12.20.0
1415
pr-url: https://github.com/nodejs/node/pull/35249
1516
description: Support for detection of CommonJS named exports.
1617
- version: v14.8.0
@@ -19,6 +20,7 @@ changes:
1920
- version:
2021
- v14.0.0
2122
- v13.14.0
23+
- v12.20.0
2224
pr-url: https://github.com/nodejs/node/pull/31974
2325
description: Remove experimental modules warning.
2426
- version:
@@ -199,7 +201,9 @@ import _ from 'data:application/json,"world!"';
199201
#### `node:` Imports
200202

201203
<!-- YAML
202-
added: v14.13.1
204+
added:
205+
- v14.13.1
206+
- v12.20.0
203207
-->
204208

205209
`node:` URLs are supported as an alternative means to load Node.js builtin

Diff for: doc/api/fs.md

+15-5
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,9 @@ Stop watching for changes on the given `fs.FSWatcher`. Once stopped, the
600600

601601
### `watcher.ref()`
602602
<!-- YAML
603-
added: v14.3.0
603+
added:
604+
- v14.3.0
605+
- v12.20.0
604606
-->
605607

606608
* Returns: {fs.FSWatcher}
@@ -615,7 +617,9 @@ called previously.
615617

616618
### `watcher.unref()`
617619
<!-- YAML
618-
added: v14.3.0
620+
added:
621+
- v14.3.0
622+
- v12.20.0
619623
-->
620624

621625
* Returns: {fs.FSWatcher}
@@ -628,7 +632,9 @@ no effect.
628632

629633
## Class: `fs.StatWatcher`
630634
<!-- YAML
631-
added: v14.3.0
635+
added:
636+
- v14.3.0
637+
- v12.20.0
632638
-->
633639

634640
* Extends {EventEmitter}
@@ -638,7 +644,9 @@ object.
638644

639645
### `watcher.ref()`
640646
<!-- YAML
641-
added: v14.3.0
647+
added:
648+
- v14.3.0
649+
- v12.20.0
642650
-->
643651

644652
* Returns: {fs.StatWatcher}
@@ -653,7 +661,9 @@ called previously.
653661

654662
### `watcher.unref()`
655663
<!-- YAML
656-
added: v14.3.0
664+
added:
665+
- v14.3.0
666+
- v12.20.0
657667
-->
658668

659669
* Returns: {fs.StatWatcher}

Diff for: doc/api/http.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,9 @@ changes:
118118
- v12.19.0
119119
pr-url: https://github.com/nodejs/node/pull/33617
120120
description: Add `maxTotalSockets` option to agent constructor.
121-
- version: v14.5.0
121+
- version:
122+
- v14.5.0
123+
- v12.20.0
122124
pr-url: https://github.com/nodejs/node/pull/33278
123125
description: Add `scheduling` option to specify the free socket
124126
scheduling strategy.

Diff for: doc/api/n-api.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -4214,7 +4214,9 @@ specification).
42144214

42154215
#### napi_object_freeze
42164216
<!-- YAML
4217-
added: v14.14.0
4217+
added:
4218+
- v14.14.0
4219+
- v12.20.0
42184220
-->
42194221

42204222
> Stability: 1 - Experimental
@@ -4239,7 +4241,9 @@ ECMA-262 specification.
42394241

42404242
#### napi_object_seal
42414243
<!-- YAML
4242-
added: v14.14.0
4244+
added:
4245+
- v14.14.0
4246+
- v12.20.0
42434247
-->
42444248

42454249
> Stability: 1 - Experimental

Diff for: doc/api/packages.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
changes:
66
- version:
77
- v14.13.0
8+
- v12.20.0
89
pr-url: https://github.com/nodejs/node/pull/34718
910
description: Add support for `"exports"` patterns.
1011
- version: v14.6.0
@@ -369,7 +370,9 @@ changes:
369370
- version: v15.1.0
370371
pr-url: https://github.com/nodejs/node/pull/35746
371372
description: Runtime deprecation.
372-
- version: v14.13.0
373+
- version:
374+
- v14.13.0
375+
- v12.20.0
373376
pr-url: https://github.com/nodejs/node/pull/34718
374377
description: Documentation-only deprecation.
375378
-->

Diff for: doc/changelogs/CHANGELOG_V12.md

+158
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)