Skip to content

Commit

Permalink
2020-11-24, Version 12.20.0 'Erbium' (LTS)
Browse files Browse the repository at this point in the history
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: #35950
  • Loading branch information
MylesBorins committed Nov 24, 2020
1 parent 7b5b8ef commit 219332e
Show file tree
Hide file tree
Showing 7 changed files with 193 additions and 11 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -61,7 +61,8 @@ release.
<a href="doc/changelogs/CHANGELOG_V14.md#14.0.0">14.0.0</a><br/>
</td>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.19.1">12.19.1</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.20.0">12.20.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.19.1">12.19.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.19.0">12.19.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.18.4">12.18.4</a><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.18.3">12.18.3</a><br/>
Expand Down
6 changes: 5 additions & 1 deletion doc/api/esm.md
Expand Up @@ -11,6 +11,7 @@ changes:
description: Stabilize modules implementation.
- version:
- v14.13.0
- v12.20.0
pr-url: https://github.com/nodejs/node/pull/35249
description: Support for detection of CommonJS named exports.
- version: v14.8.0
Expand All @@ -19,6 +20,7 @@ changes:
- version:
- v14.0.0
- v13.14.0
- v12.20.0
pr-url: https://github.com/nodejs/node/pull/31974
description: Remove experimental modules warning.
- version:
Expand Down Expand Up @@ -199,7 +201,9 @@ import _ from 'data:application/json,"world!"';
#### `node:` Imports

<!-- YAML
added: v14.13.1
added:
- v14.13.1
- v12.20.0
-->

`node:` URLs are supported as an alternative means to load Node.js builtin
Expand Down
20 changes: 15 additions & 5 deletions doc/api/fs.md
Expand Up @@ -600,7 +600,9 @@ Stop watching for changes on the given `fs.FSWatcher`. Once stopped, the

### `watcher.ref()`
<!-- YAML
added: v14.3.0
added:
- v14.3.0
- v12.20.0
-->

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

### `watcher.unref()`
<!-- YAML
added: v14.3.0
added:
- v14.3.0
- v12.20.0
-->

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

## Class: `fs.StatWatcher`
<!-- YAML
added: v14.3.0
added:
- v14.3.0
- v12.20.0
-->

* Extends {EventEmitter}
Expand All @@ -638,7 +644,9 @@ object.

### `watcher.ref()`
<!-- YAML
added: v14.3.0
added:
- v14.3.0
- v12.20.0
-->

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

### `watcher.unref()`
<!-- YAML
added: v14.3.0
added:
- v14.3.0
- v12.20.0
-->

* Returns: {fs.StatWatcher}
Expand Down
4 changes: 3 additions & 1 deletion doc/api/http.md
Expand Up @@ -118,7 +118,9 @@ changes:
- v12.19.0
pr-url: https://github.com/nodejs/node/pull/33617
description: Add `maxTotalSockets` option to agent constructor.
- version: v14.5.0
- version:
- v14.5.0
- v12.20.0
pr-url: https://github.com/nodejs/node/pull/33278
description: Add `scheduling` option to specify the free socket
scheduling strategy.
Expand Down
8 changes: 6 additions & 2 deletions doc/api/n-api.md
Expand Up @@ -4214,7 +4214,9 @@ specification).
#### napi_object_freeze
<!-- YAML
added: v14.14.0
added:
- v14.14.0
- v12.20.0
-->
> Stability: 1 - Experimental
Expand All @@ -4239,7 +4241,9 @@ ECMA-262 specification.

#### napi_object_seal
<!-- YAML
added: v14.14.0
added:
- v14.14.0
- v12.20.0
-->

> Stability: 1 - Experimental
Expand Down
5 changes: 4 additions & 1 deletion doc/api/packages.md
Expand Up @@ -5,6 +5,7 @@
changes:
- version:
- v14.13.0
- v12.20.0
pr-url: https://github.com/nodejs/node/pull/34718
description: Add support for `"exports"` patterns.
- version: v14.6.0
Expand Down Expand Up @@ -369,7 +370,9 @@ changes:
- version: v15.1.0
pr-url: https://github.com/nodejs/node/pull/35746
description: Runtime deprecation.
- version: v14.13.0
- version:
- v14.13.0
- v12.20.0
pr-url: https://github.com/nodejs/node/pull/34718
description: Documentation-only deprecation.
-->
Expand Down
158 changes: 158 additions & 0 deletions doc/changelogs/CHANGELOG_V12.md

Large diffs are not rendered by default.

0 comments on commit 219332e

Please sign in to comment.