From 004415d92ca9fcf26a6e8d32ec3e36aa49b7f032 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Arboleda?= Date: Tue, 31 May 2022 21:52:00 -0500 Subject: [PATCH] 2022-05-XX, Version 16.15.1 'Gallium' (LTS), @TDB MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Notable changes OpenSSL: * add --openssl-legacy-provider option (Daniel Bevenius) https://github.com/nodejs/node/pull/40478 deps: * V8: cherry-pick 3ebf2052a1b2 (Liu Yu) https://github.com/nodejs/node/pull/43147 * upgrade npm to 8.11.0 (npm-cli+bot@github.com) https://github.com/nodejs/node/pull/43210 Other notable changes: * tools: disable trap handler for Windows cross-compiler (Michaël Zasso) https://github.com/nodejs/node/pull/40488 * tools: update V8 gypfiles for 9.6 (Michaël Zasso) https://github.com/nodejs/node/pull/40488 PR-URL: TDB --- doc/api/cli.md | 2 +- doc/changelogs/CHANGELOG_V16.md | 31 +++++++++++++++++++++++++++++++ src/node_version.h | 2 +- 3 files changed, 33 insertions(+), 2 deletions(-) diff --git a/doc/api/cli.md b/doc/api/cli.md index 380a220b7cf86f..6a821c9ea22ca9 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -735,7 +735,7 @@ against FIPS-enabled OpenSSL. ### `--openssl-legacy-provider` Enable OpenSSL 3.0 legacy provider when dynamically linking to OpenSSL 3.x. diff --git a/doc/changelogs/CHANGELOG_V16.md b/doc/changelogs/CHANGELOG_V16.md index 3a7fba0da7e332..2a25ec0042912b 100644 --- a/doc/changelogs/CHANGELOG_V16.md +++ b/doc/changelogs/CHANGELOG_V16.md @@ -9,6 +9,7 @@ +16.15.1
16.15.0
16.14.2
16.14.1
@@ -60,6 +61,36 @@ * [io.js](CHANGELOG_IOJS.md) * [Archive](CHANGELOG_ARCHIVE.md) + + +## 2022-05-XX, Version 16.15.1 'Gallium' (LTS), @TDB + +### Notable changes + +* **OpenSSL**: + * add --openssl-legacy-provider option (Daniel Bevenius) [#40478](https://github.com/nodejs/node/pull/40478) + +* **deps**: + * V8: cherry-pick 3ebf2052a1b2 (Liu Yu) [#43147](https://github.com/nodejs/node/pull/43147) + * upgrade npm to 8.11.0 (npm-cli+bot@github.com) [#43210](https://github.com/nodejs/node/pull/43210) + +#### Other notable changes + + * **(SEMVER-MINOR)** **tools**: disable trap handler for Windows cross-compiler (Michaël Zasso) [#40488](https://github.com/nodejs/node/pull/40488) + * **(SEMVER-MINOR)** **tools**: update V8 gypfiles for 9.6 (Michaël Zasso) [#40488](https://github.com/nodejs/node/pull/40488) + +### Commits + +* \[[`f7c4ce2255`](https://github.com/nodejs/node/commit/f7c4ce2255)] - **deps**: V8: cherry-pick 3ebf2052a1b2 (Liu Yu) [#43147](https://github.com/nodejs/node/pull/43147) +* \[[`447f9a0e2e`](https://github.com/nodejs/node/commit/447f9a0e2e)] - **deps**: upgrade npm to 8.11.0 () [#43210](https://github.com/nodejs/node/pull/43210) +* \[[`68572bdea2`](https://github.com/nodejs/node/commit/68572bdea2)] - **deps**: upgrade npm to 8.10.0 () [#43061](https://github.com/nodejs/node/pull/43061) +* \[[`3dfc632f12`](https://github.com/nodejs/node/commit/3dfc632f12)] - **deps**: upgrade npm to 8.9.0 (npm-robot) [#42968](https://github.com/nodejs/node/pull/42968) +* \[[`933d9ca78d`](https://github.com/nodejs/node/commit/933d9ca78d)] - **(SEMVER-MINOR)** **src**: add --openssl-legacy-provider option (Daniel Bevenius) [#40478](https://github.com/nodejs/node/pull/40478) +* \[[`b75b956afb`](https://github.com/nodejs/node/commit/b75b956afb)] - **src,inspector**: fix empty MaybeLocal crash (Darshan Sen) [#42409](https://github.com/nodejs/node/pull/42409) +* \[[`4fd90f16ce`](https://github.com/nodejs/node/commit/4fd90f16ce)] - **test**: delete test/pummel/test-repl-empty-maybelocal-crash.js (Darshan Sen) [#42720](https://github.com/nodejs/node/pull/42720) +* \[[`feac215e4e`](https://github.com/nodejs/node/commit/feac215e4e)] - **(SEMVER-MINOR)** **tools**: disable trap handler for Windows cross-compiler (Michaël Zasso) [#40488](https://github.com/nodejs/node/pull/40488) +* \[[`47cdddf59b`](https://github.com/nodejs/node/commit/47cdddf59b)] - **(SEMVER-MINOR)** **tools**: update V8 gypfiles for 9.6 (Michaël Zasso) [#40488](https://github.com/nodejs/node/pull/40488) + ## 2022-04-26, Version 16.15.0 'Gallium' (LTS), @danielleadams diff --git a/src/node_version.h b/src/node_version.h index b937a3d2abc3fc..39f6406dd2b52e 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 "Gallium" -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)