From ed79acebb227a64a5048d606b342ebfcfcfc8faa Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Mon, 16 Nov 2020 12:04:38 -0500 Subject: [PATCH] 2020-11-24, Version 12.20.0 'Erbium' (LTS) Notable changes: crypto: * update certdata to NSS 3.56 (Shelley Vohr) https://github.com/nodejs/node/pull/35546 deps: * update llhttp to 2.1.3 (Fedor Indutny) https://github.com/nodejs/node/pull/35435 * (SEMVER-MINOR) upgrade to libuv 1.40.0 (Colin Ihrig) https://github.com/nodejs/node/pull/35333 doc: * add aduh95 to collaborators (Antoine du Hamel) https://github.com/nodejs/node/pull/35542 fs: * (SEMVER-MINOR) add .ref() and .unref() methods to watcher classes (rickyes) https://github.com/nodejs/node/pull/33134 http: * (SEMVER-MINOR) added scheduling option to http agent (delvedor) https://github.com/nodejs/node/pull/33278 module: * (SEMVER-MINOR) exports pattern support (Guy Bedford) https://github.com/nodejs/node/pull/34718 * (SEMVER-MINOR) named exports for CJS via static analysis (Guy Bedford) https://github.com/nodejs/node/pull/35249 n-api: * (SEMVER-MINOR) add more property defaults (Gerhard Stoebich) https://github.com/nodejs/node/pull/35214 src: * (SEMVER-MINOR) move node_contextify to modern THROW_ERR_* (James M Snell) https://github.com/nodejs/node/pull/35470 * (SEMVER-MINOR) move node_process to modern THROW_ERR* (James M Snell) https://github.com/nodejs/node/pull/35472 * (SEMVER-MINOR) expose v8::Isolate setup callbacks (Shelley Vohr) https://github.com/nodejs/node/pull/35512 PR-URL: https://github.com/nodejs/node/pull/35950 --- CHANGELOG.md | 3 ++- doc/api/esm.md | 6 +++++- doc/api/fs.md | 20 +++++++++++++++----- doc/api/http.md | 4 +++- doc/api/n-api.md | 8 ++++++-- doc/api/packages.md | 5 ++++- 6 files changed, 35 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e5f1f2d015f2d..e92be6ec87e9c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -61,7 +61,8 @@ release. 14.0.0
-12.19.1
+12.20.0
+12.19.1
12.19.0
12.18.4
12.18.3
diff --git a/doc/api/esm.md b/doc/api/esm.md index 17879fda4244bd..9117542825f092 100644 --- a/doc/api/esm.md +++ b/doc/api/esm.md @@ -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 @@ -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: @@ -199,7 +201,9 @@ import _ from 'data:application/json,"world!"'; #### `node:` Imports `node:` URLs are supported as an alternative means to load Node.js builtin diff --git a/doc/api/fs.md b/doc/api/fs.md index 1e971a755c8995..84bdf4894b0e4e 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -600,7 +600,9 @@ Stop watching for changes on the given `fs.FSWatcher`. Once stopped, the ### `watcher.ref()` * Returns: {fs.FSWatcher} @@ -615,7 +617,9 @@ called previously. ### `watcher.unref()` * Returns: {fs.FSWatcher} @@ -628,7 +632,9 @@ no effect. ## Class: `fs.StatWatcher` * Extends {EventEmitter} @@ -638,7 +644,9 @@ object. ### `watcher.ref()` * Returns: {fs.StatWatcher} @@ -653,7 +661,9 @@ called previously. ### `watcher.unref()` * Returns: {fs.StatWatcher} diff --git a/doc/api/http.md b/doc/api/http.md index 8e7056114bee8f..fe7e39ea6742b3 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -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. diff --git a/doc/api/n-api.md b/doc/api/n-api.md index 9ad15223f11da7..e40d2cc9ac2bc4 100644 --- a/doc/api/n-api.md +++ b/doc/api/n-api.md @@ -4214,7 +4214,9 @@ specification). #### napi_object_freeze > Stability: 1 - Experimental @@ -4239,7 +4241,9 @@ ECMA-262 specification. #### napi_object_seal > Stability: 1 - Experimental diff --git a/doc/api/packages.md b/doc/api/packages.md index 47c0f36ddcc534..4a7fea3b5635ef 100644 --- a/doc/api/packages.md +++ b/doc/api/packages.md @@ -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 @@ -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. -->