Skip to content

Commit 21e1b62

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

File tree

8 files changed

+153
-18
lines changed

8 files changed

+153
-18
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ release.
2828
</tr>
2929
<tr>
3030
<td valign="top">
31-
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.19.0">12.19.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.20.0">12.20.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V12.md#12.19.0">12.19.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V12.md#12.18.4">12.18.4</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V12.md#12.18.3">12.18.3</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V12.md#12.18.2">12.18.2</a><br/>

doc/api/esm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
added: v8.5.0
77
changes:
88
- version:
9-
- REPLACEME
9+
- v12.20.0
1010
pr-url: https://github.com/nodejs/node/pull/35249
1111
description: Support for detection of CommonJS named exports.
12-
- version: REPLACEME
12+
- version: v12.20.0
1313
pr-url: https://github.com/nodejs/node/pull/31974
1414
description: Remove experimental modules warning.
1515
- version:
@@ -135,7 +135,7 @@ future use. The root of the current volume may be referenced via `file:///`.
135135
#### `node:` Imports
136136

137137
<!-- YAML
138-
added: REPLACEME
138+
added: v12.20.0
139139
-->
140140

141141
`node:` URLs are supported as a means to load Node.js builtin modules. This

doc/api/fs.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ Stop watching for changes on the given `fs.FSWatcher`. Once stopped, the
600600

601601
### `watcher.ref()`
602602
<!-- YAML
603-
added: REPLACEME
603+
added: v12.20.0
604604
-->
605605

606606
* Returns: {fs.FSWatcher}
@@ -615,7 +615,7 @@ called previously.
615615

616616
### `watcher.unref()`
617617
<!-- YAML
618-
added: REPLACEME
618+
added: v12.20.0
619619
-->
620620

621621
* Returns: {fs.FSWatcher}
@@ -628,7 +628,7 @@ no effect.
628628

629629
## Class: `fs.StatWatcher`
630630
<!-- YAML
631-
added: REPLACEME
631+
added: v12.20.0
632632
-->
633633

634634
* Extends {EventEmitter}
@@ -638,7 +638,7 @@ object.
638638

639639
### `watcher.ref()`
640640
<!-- YAML
641-
added: REPLACEME
641+
added: v12.20.0
642642
-->
643643

644644
* Returns: {fs.StatWatcher}
@@ -653,7 +653,7 @@ called previously.
653653

654654
### `watcher.unref()`
655655
<!-- YAML
656-
added: REPLACEME
656+
added: v12.20.0
657657
-->
658658

659659
* Returns: {fs.StatWatcher}

doc/api/http.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ changes:
116116
- version: v12.19.0
117117
pr-url: https://github.com/nodejs/node/pull/33617
118118
description: Add `maxTotalSockets` option to agent constructor.
119-
- version: REPLACEME
119+
- version: v12.20.0
120120
pr-url: https://github.com/nodejs/node/pull/33278
121121
description: Add `scheduling` option to specify the free socket
122122
scheduling strategy.

doc/api/n-api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3645,7 +3645,7 @@ if (status != napi_ok) return status;
36453645
#### napi_property_attributes
36463646
<!-- YAML
36473647
changes:
3648-
- version: REPLACEME
3648+
- version: v12.20.0
36493649
pr-url: https://github.com/nodejs/node/pull/35214
36503650
description: added `napi_default_method` and `napi_default_property`
36513651
-->
@@ -4094,7 +4094,7 @@ specification).
40944094

40954095
#### napi_object_freeze
40964096
<!-- YAML
4097-
added: REPLACEME
4097+
added: v12.20.0
40984098
-->
40994099

41004100
> Stability: 1 - Experimental
@@ -4119,7 +4119,7 @@ ECMA-262 specification.
41194119

41204120
#### napi_object_seal
41214121
<!-- YAML
4122-
added: REPLACEME
4122+
added: v12.20.0
41234123
-->
41244124

41254125
> Stability: 1 - Experimental

doc/api/packages.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- type=misc -->
44
<!-- YAML
55
changes:
6-
- version: REPLACEME
6+
- version: v12.20.0
77
pr-url: https://github.com/nodejs/node/pull/34718
88
description: Add support for `"exports"` patterns.
99
- version: v12.19.0
@@ -934,7 +934,7 @@ changes:
934934
pr-url: https://github.com/nodejs/node/pull/31008
935935
description: Implement logical conditional exports ordering.
936936
- version:
937-
- REPLACEME
937+
- v12.20.0
938938
pr-url: https://github.com/nodejs/node/pull/34718
939939
description: Add support for `"exports"` patterns.
940940
-->

doc/changelogs/CHANGELOG_V12.md

Lines changed: 134 additions & 0 deletions
Large diffs are not rendered by default.

src/node_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 12
26-
#define NODE_MINOR_VERSION 19
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 20
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 1
3030
#define NODE_VERSION_LTS_CODENAME "Erbium"
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)