Skip to content

Commit 9beb4f8

Browse files
committed
2022-02-01, Version 14.19.0 'Fermium' (LTS)
Notable changes: Corepack: Node.js now includes Corepack, a script that acts as a bridge between Node.js projects and the package managers they are intended to be used with during development. In practical terms, Corepack will let you use Yarn and pnpm without having to install them - just like what currently happens with npm, which is shipped in Node.js by default. Contributed by Maël Nison - #39608 ICU updated: ICU has been updated to 70.1. This updates timezone database to 2021a3, including bringing forward the start for DST for Jordan from March to February. Contributed by Michaël Zasso - #40658 New option to disable loading of native addons: A new command line option `--no-addons` has been added to disallow loading of native addons. Contributed by Dominic Elm - #39977 Updated Root Certificates: Root certificates have been updated to those from Mozilla's Network Security Services 3.71. Contributed by Richard Lau - #40280 Other Notable Changes: crypto: * (SEMVER-MINOR) make FIPS related options always available (Vít Ondruch) #36341 lib: * (SEMVER-MINOR) add unsubscribe method to non-active DC channels (simon-id) #40433 * (SEMVER-MINOR) add return value for DC channel.unsubscribe (simon-id) #40433 module: * (SEMVER-MINOR) support pattern trailers (Guy Bedford) #39635 src: * (SEMVER-MINOR) make napi_create_reference accept symbol (JckXia) #39926 PR-URL: #41696
1 parent 4477da8 commit 9beb4f8

8 files changed

+76
-9
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ release.
2929
</tr>
3030
<tr>
3131
<td valign="top">
32-
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.18.3">14.18.3</a></b><br/>
32+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.19.0">14.19.0</a></b><br/>
33+
<a href="doc/changelogs/CHANGELOG_V14.md#14.18.3">14.18.3</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V14.md#14.18.2">14.18.2</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V14.md#14.18.1">14.18.1</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V14.md#14.18.0">14.18.0</a><br/>

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ This option is a no-op. It is kept for compatibility.
589589

590590
### `--no-addons`
591591
<!-- YAML
592-
added: REPLACEME
592+
added: v14.19.0
593593
-->
594594

595595
Disable the `node-addons` exports condition as well as disable loading

doc/api/corepack.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Corepack
22

3-
<!-- introduced_in=REPLACEME -->
3+
<!-- introduced_in=v14.19.0 -->
44
<!-- type=misc -->
55

66
> Stability: 1 - Experimental

doc/api/diagnostics_channel.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ channel.subscribe((message, name) => {
160160
added:
161161
- v14.17.0
162162
changes:
163-
- version: REPLACEME
163+
- version: v14.19.0
164164
pr-url: https://github.com/nodejs/node/pull/40433
165165
description: Added return value. Added to channels without subscribers.
166166
-->

doc/api/errors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ An unknown Diffie-Hellman group name was given. See
879879
<a id="ERR_DLOPEN_DISABLED"></a>
880880
### `ERR_DLOPEN_DISABLED`
881881
<!-- YAML
882-
added: REPLACEME
882+
added: v14.19.0
883883
-->
884884

885885
Loading native addons has been disabled using [`--no-addons`][].

doc/api/packages.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1051,7 +1051,7 @@ When a package has an [`"exports"`][] field, this will take precedence over the
10511051

10521052
### `"packageManager"`
10531053
<!-- YAML
1054-
added: REPLACEME
1054+
added: v14.19.0
10551055
-->
10561056

10571057
> Stability: 1 - Experimental

doc/changelogs/CHANGELOG_V14.md

+66
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
</tr>
1212
<tr>
1313
<td valign="top">
14+
<a href="#14.19.0">14.19.0</a><br/>
1415
<a href="#14.18.3">14.18.3</a><br/>
1516
<a href="#14.18.2">14.18.2</a><br/>
1617
<a href="#14.18.1">14.18.1</a><br/>
@@ -69,6 +70,71 @@
6970
* [io.js](CHANGELOG_IOJS.md)
7071
* [Archive](CHANGELOG_ARCHIVE.md)
7172

73+
<a id="14.19.0"></a>
74+
75+
## 2022-02-01, Version 14.19.0 'Fermium' (LTS), @richardlau
76+
77+
### Notable Changes
78+
79+
#### Corepack
80+
81+
Node.js now includes Corepack, a script that acts as a bridge between Node.js projects and the package managers they are intended to be used with during development.
82+
In practical terms, **Corepack will let you use Yarn and pnpm without having to install them** - just like what currently happens with npm, which is shipped in Node.js by default.
83+
Please head over to the [Corepack documentation page](https://nodejs.org/dist/latest-v14.x/docs/api/corepack.html) for more information on how to use it.
84+
85+
Contributed by Maël Nison - [#39608](https://github.com/nodejs/node/pull/39608)
86+
87+
#### ICU updated
88+
89+
ICU has been updated to 70.1. This updates timezone database to 2021a3, including bringing forward the start for DST for Jordan from March to February.
90+
91+
Contributed by Michaël Zasso - [#40658](https://github.com/nodejs/node/pull/40658)
92+
93+
#### New option to disable loading of native addons
94+
95+
A new command line option `--no-addons` has been added to disallow loading of native addons.
96+
97+
Contributed by Dominic Elm - [#39977](https://github.com/nodejs/node/pull/39977)
98+
99+
#### Updated Root Certificates
100+
101+
Root certificates have been updated to those from Mozilla's Network Security Services 3.71.
102+
103+
Contributed by Richard Lau - [#40280](https://github.com/nodejs/node/pull/40280)
104+
105+
#### Other Notable Changes
106+
107+
* \[[`0d448eaab5`](https://github.com/nodejs/node/commit/0d448eaab5)] - **(SEMVER-MINOR)** **crypto**: make FIPS related options always available (Vít Ondruch) [#36341](https://github.com/nodejs/node/pull/36341)
108+
* \[[`004eafbebf`](https://github.com/nodejs/node/commit/004eafbebf)] - **(SEMVER-MINOR)** **lib**: add unsubscribe method to non-active DC channels (simon-id) [#40433](https://github.com/nodejs/node/pull/40433)
109+
* \[[`625be7585d`](https://github.com/nodejs/node/commit/625be7585d)] - **(SEMVER-MINOR)** **lib**: add return value for DC channel.unsubscribe (simon-id) [#40433](https://github.com/nodejs/node/pull/40433)
110+
* \[[`607bc74eae`](https://github.com/nodejs/node/commit/607bc74eae)] - **(SEMVER-MINOR)** **module**: support pattern trailers (Guy Bedford) [#39635](https://github.com/nodejs/node/pull/39635)
111+
* \[[`f74fe2a59c`](https://github.com/nodejs/node/commit/f74fe2a59c)] - **(SEMVER-MINOR)** **src**: make napi\_create\_reference accept symbol (JckXia) [#39926](https://github.com/nodejs/node/pull/39926)
112+
113+
### Commits
114+
115+
* \[[`0231ffa501`](https://github.com/nodejs/node/commit/0231ffa501)] - **build**: add `--without-corepack` (Jonah Snider) [#41060](https://github.com/nodejs/node/pull/41060)
116+
* \[[`5389b8ab05`](https://github.com/nodejs/node/commit/5389b8ab05)] - **crypto**: update root certificates (Richard Lau) [#40280](https://github.com/nodejs/node/pull/40280)
117+
* \[[`0d448eaab5`](https://github.com/nodejs/node/commit/0d448eaab5)] - **(SEMVER-MINOR)** **crypto**: make FIPS related options always available (Vít Ondruch) [#36341](https://github.com/nodejs/node/pull/36341)
118+
* \[[`cd20ecc7cb`](https://github.com/nodejs/node/commit/cd20ecc7cb)] - **deps**: upgrade Corepack to 0.10 (Maël Nison) [#40374](https://github.com/nodejs/node/pull/40374)
119+
* \[[`737df75e17`](https://github.com/nodejs/node/commit/737df75e17)] - **(SEMVER-MINOR)** **deps**: add corepack (Maël Nison) [#39608](https://github.com/nodejs/node/pull/39608)
120+
* \[[`b85aa5a143`](https://github.com/nodejs/node/commit/b85aa5a143)] - **deps**: upgrade npm to 6.14.16 (Ruy Adorno) [#41603](https://github.com/nodejs/node/pull/41603)
121+
* \[[`2755d391a5`](https://github.com/nodejs/node/commit/2755d391a5)] - **deps**: update ICU to 70.1 (Michaël Zasso) [#40658](https://github.com/nodejs/node/pull/40658)
122+
* \[[`3089326d89`](https://github.com/nodejs/node/commit/3089326d89)] - **deps**: update archs files for OpenSSL-1.1.1m (Richard Lau) [#41173](https://github.com/nodejs/node/pull/41173)
123+
* \[[`59da7c12aa`](https://github.com/nodejs/node/commit/59da7c12aa)] - **deps**: upgrade openssl sources to 1.1.1m (Richard Lau) [#41173](https://github.com/nodejs/node/pull/41173)
124+
* \[[`cede1f26f6`](https://github.com/nodejs/node/commit/cede1f26f6)] - **deps**: add -fno-strict-aliasing flag to libuv (Daniel Bevenius) [#40631](https://github.com/nodejs/node/pull/40631)
125+
* \[[`4477da858f`](https://github.com/nodejs/node/commit/4477da858f)] - **doc**: fix corepack grammar for `--force` flag (Steven) [#40762](https://github.com/nodejs/node/pull/40762)
126+
* \[[`5971d58600`](https://github.com/nodejs/node/commit/5971d58600)] - **doc**: add missing YAML tag in `esm.md` (Antoine du Hamel) [#41516](https://github.com/nodejs/node/pull/41516)
127+
* \[[`e903798ae1`](https://github.com/nodejs/node/commit/e903798ae1)] - **doc**: add note regarding unfinished TLA (Antoine du Hamel) [#41434](https://github.com/nodejs/node/pull/41434)
128+
* \[[`a90defebcf`](https://github.com/nodejs/node/commit/a90defebcf)] - **esm**: make `process.exit()` default to exit code 0 (Gang Chen) [#41388](https://github.com/nodejs/node/pull/41388)
129+
* \[[`fc328f1ab0`](https://github.com/nodejs/node/commit/fc328f1ab0)] - **fs**: nullish coalescing to respect zero positional reads (Omar El-Mihilmy) [#40716](https://github.com/nodejs/node/pull/40716)
130+
* \[[`004eafbebf`](https://github.com/nodejs/node/commit/004eafbebf)] - **(SEMVER-MINOR)** **lib**: add unsubscribe method to non-active DC channels (simon-id) [#40433](https://github.com/nodejs/node/pull/40433)
131+
* \[[`625be7585d`](https://github.com/nodejs/node/commit/625be7585d)] - **(SEMVER-MINOR)** **lib**: add return value for DC channel.unsubscribe (simon-id) [#40433](https://github.com/nodejs/node/pull/40433)
132+
* \[[`2c365961d0`](https://github.com/nodejs/node/commit/2c365961d0)] - **module**: support pattern trailers for imports field (Guy Bedford) [#40041](https://github.com/nodejs/node/pull/40041)
133+
* \[[`607bc74eae`](https://github.com/nodejs/node/commit/607bc74eae)] - **(SEMVER-MINOR)** **module**: support pattern trailers (Guy Bedford) [#39635](https://github.com/nodejs/node/pull/39635)
134+
* \[[`f74fe2a59c`](https://github.com/nodejs/node/commit/f74fe2a59c)] - **(SEMVER-MINOR)** **src**: make napi\_create\_reference accept symbol (JckXia) [#39926](https://github.com/nodejs/node/pull/39926)
135+
* \[[`b050c65885`](https://github.com/nodejs/node/commit/b050c65885)] - **src**: add option to disable loading native addons (Dominic Elm) [#39977](https://github.com/nodejs/node/pull/39977)
136+
* \[[`c1695ac68a`](https://github.com/nodejs/node/commit/c1695ac68a)] - **tools**: update certdata.txt (Richard Lau) [#40280](https://github.com/nodejs/node/pull/40280)
137+
72138
<a id="14.18.3"></a>
73139
## 2022-01-10, Version 14.18.3 'Fermium' (LTS), @richardlau
74140

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 14
26-
#define NODE_MINOR_VERSION 18
27-
#define NODE_PATCH_VERSION 4
26+
#define NODE_MINOR_VERSION 19
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 1
3030
#define NODE_VERSION_LTS_CODENAME "Fermium"
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)