diff options
| author | Richard Lau <rlau@redhat.com> | 2021-10-18 12:00:42 -0400 |
|---|---|---|
| committer | Richard Lau <rlau@redhat.com> | 2021-10-19 17:08:25 -0400 |
| commit | 49415500bb1bf51a1fade5ea2d03f3988ecabc25 (patch) | |
| tree | bf62c42f8a294465ba730345b55b212718f2506a /src/node_version.h | |
| parent | 2bfa87edbc6dcda6b4128cb9b8af1696feac53eb (diff) | |
| download | node-new-v16.12.0-proposal.tar.gz | |
2021-10-20, Version 16.12.0 (Current)v16.12.0v16.12.0-proposal
Notable Changes:
Experimental ESM Loader Hooks API:
Node.js ESM Loader hooks have been consolidated to represent the steps involved needed to facilitate future loader chaining:
1. `resolve`: `resolve` [+ `getFormat`]
2. `load`: `getFormat` + `getSource` + `transformSource`
For consistency, `getGlobalPreloadCode` has been renamed to `globalPreload`.
A loader exporting obsolete hook(s) will trigger a single deprecation warning (per loader) listing the errant hooks.
Contributed by Jacob Smith, Geoffrey Booth, and Bradley Farias - https://github.com/nodejs/node/pull/37468
Other Notable Changes:
deps:
* upgrade npm to 8.1.0 (npm team) https://github.com/nodejs/node/pull/40463
doc:
* deprecate (doc-only) http abort related (dr-js) https://github.com/nodejs/node/pull/36670
vm:
* (SEMVER-MINOR) add support for import assertions in dynamic imports (Antoine du Hamel) https://github.com/nodejs/node/pull/40249
PR-URL: https://github.com/nodejs/node/pull/40504
Diffstat (limited to 'src/node_version.h')
| -rw-r--r-- | src/node_version.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/node_version.h b/src/node_version.h index 35d5aff53e..7d8e7e507b 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -23,13 +23,13 @@ #define SRC_NODE_VERSION_H_ #define NODE_MAJOR_VERSION 16 -#define NODE_MINOR_VERSION 11 -#define NODE_PATCH_VERSION 2 +#define NODE_MINOR_VERSION 12 +#define NODE_PATCH_VERSION 0 #define NODE_VERSION_IS_LTS 0 #define NODE_VERSION_LTS_CODENAME "" -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) |
