From 455db4e615b69987270ed4337beaf6ae7baa8747 Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Thu, 13 Feb 2020 15:03:18 -0800 Subject: [PATCH] 2020-02-13, Version 12.16.1 'Erbium' (LTS) Notable changes: Node.js 12.16.0 included large update to the ESM implementation in the 12.x release stream. One of the new features, Self Referential Modules, accidentally was released not behind the `--experimental-modules` flag. This release is being made specifically to appropraitely flag the feature which is not yet ready to be release on LTS. PR-URL: https://github.com/nodejs/node/pull/31781 --- CHANGELOG.md | 3 ++- doc/changelogs/CHANGELOG_V12.md | 16 ++++++++++++++++ src/node_version.h | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d5eac43a880e4..72ddc64c563cde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,7 +28,8 @@ release. -12.16.0
+12.16.1
+12.16.0
12.15.0
12.14.1
12.14.0
diff --git a/doc/changelogs/CHANGELOG_V12.md b/doc/changelogs/CHANGELOG_V12.md index 231a9a33a58429..afc365152393ea 100644 --- a/doc/changelogs/CHANGELOG_V12.md +++ b/doc/changelogs/CHANGELOG_V12.md @@ -10,6 +10,7 @@ +12.16.1
12.16.0
12.15.0
12.14.1
@@ -53,6 +54,21 @@ * [io.js](CHANGELOG_IOJS.md) * [Archive](CHANGELOG_ARCHIVE.md) + +## 2020-02-13, Version 12.16.1 'Erbium' (LTS), @MylesBorins + +### Notable changes + +Node.js 12.16.0 included large update to the ESM implementation in the 12.x release stream. +One of the new features, Self Referential Modules, accidentally was released not behind the +`--experimental-modules` flag. This release is being made specifically to appropraitely flag +the feature which is not yet ready to be release on LTS. + +### Commits + +* [[`f0b2d875d9`](https://github.com/nodejs/node/commit/f0b2d875d9)] - **module**: 12.x self resolve flag as experimental modules (Guy Bedford) [#31757](https://github.com/nodejs/node/pull/31757) +* [[`7a5954ef26`](https://github.com/nodejs/node/commit/7a5954ef26)] - **src**: fix -Winconsistent-missing-override warning (Colin Ihrig) [#30549](https://github.com/nodejs/node/pull/30549) + ## 2020-02-11, Version 12.16.0 'Erbium' (LTS), @targos diff --git a/src/node_version.h b/src/node_version.h index b50e2cadb6d6ba..88831ab19d7201 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -29,7 +29,7 @@ #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)