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 16, 2020
1 parent b484732 commit d84392f
Show file tree
Hide file tree
Showing 8 changed files with 177 additions and 18 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -28,7 +28,8 @@ release.
</tr>
<tr>
<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: 3 additions & 3 deletions doc/api/esm.md
Expand Up @@ -6,10 +6,10 @@
added: v8.5.0
changes:
- version:
- REPLACEME
- v12.20.0
pr-url: https://github.com/nodejs/node/pull/35249
description: Support for detection of CommonJS named exports.
- version: REPLACEME
- version: v12.20.0
pr-url: https://github.com/nodejs/node/pull/31974
description: Remove experimental modules warning.
- version:
Expand Down Expand Up @@ -135,7 +135,7 @@ future use. The root of the current volume may be referenced via `file:///`.
#### `node:` Imports

<!-- YAML
added: REPLACEME
added: v12.20.0
-->

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

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

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

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

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

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

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

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

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

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

* Returns: {fs.StatWatcher}
Expand Down
2 changes: 1 addition & 1 deletion doc/api/http.md
Expand Up @@ -116,7 +116,7 @@ changes:
- version: v12.19.0
pr-url: https://github.com/nodejs/node/pull/33617
description: Add `maxTotalSockets` option to agent constructor.
- version: REPLACEME
- version: 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
6 changes: 3 additions & 3 deletions doc/api/n-api.md
Expand Up @@ -3645,7 +3645,7 @@ if (status != napi_ok) return status;
#### napi_property_attributes
<!-- YAML
changes:
- version: REPLACEME
- version: v12.20.0
pr-url: https://github.com/nodejs/node/pull/35214
description: added `napi_default_method` and `napi_default_property`
-->
Expand Down Expand Up @@ -4094,7 +4094,7 @@ specification).
#### napi_object_freeze
<!-- YAML
added: REPLACEME
added: v12.20.0
-->
> Stability: 1 - Experimental
Expand All @@ -4119,7 +4119,7 @@ ECMA-262 specification.

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

> Stability: 1 - Experimental
Expand Down
4 changes: 2 additions & 2 deletions doc/api/packages.md
Expand Up @@ -3,7 +3,7 @@
<!-- type=misc -->
<!-- YAML
changes:
- version: REPLACEME
- version: v12.20.0
pr-url: https://github.com/nodejs/node/pull/34718
description: Add support for `"exports"` patterns.
- version: v12.19.0
Expand Down Expand Up @@ -934,7 +934,7 @@ changes:
pr-url: https://github.com/nodejs/node/pull/31008
description: Implement logical conditional exports ordering.
- version:
- REPLACEME
- v12.20.0
pr-url: https://github.com/nodejs/node/pull/34718
description: Add support for `"exports"` patterns.
-->
Expand Down
158 changes: 158 additions & 0 deletions doc/changelogs/CHANGELOG_V12.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 12
#define NODE_MINOR_VERSION 19
#define NODE_PATCH_VERSION 2
#define NODE_MINOR_VERSION 20
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 1
#define NODE_VERSION_LTS_CODENAME "Erbium"

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit d84392f

Please sign in to comment.