Skip to content

Commit 1c23c1e

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 6ec2253 commit 1c23c1e

File tree

7 files changed

+81
-6
lines changed

7 files changed

+81
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ release.
6666
<a href="doc/changelogs/CHANGELOG_V16.md#16.0.0">16.0.0</a><br/>
6767
</td>
6868
<td valign="top">
69-
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.18.3">14.18.3</a></b><br/>
69+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.19.0">14.19.0</a></b><br/>
70+
<a href="doc/changelogs/CHANGELOG_V14.md#14.18.3">14.18.3</a><br/>
7071
<a href="doc/changelogs/CHANGELOG_V14.md#14.18.2">14.18.2</a><br/>
7172
<a href="doc/changelogs/CHANGELOG_V14.md#14.18.1">14.18.1</a><br/>
7273
<a href="doc/changelogs/CHANGELOG_V14.md#14.18.0">14.18.0</a><br/>

doc/api/cli.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,9 @@ This option is a no-op. It is kept for compatibility.
664664
### `--no-addons`
665665

666666
<!-- YAML
667-
added: v16.10.0
667+
added:
668+
- v16.10.0
669+
- v14.19.0
668670
-->
669671

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

doc/api/corepack.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Corepack
22

3-
<!-- introduced_in=v16.9.0 -->
3+
<!-- introduced_in=v14.19.0 -->
44

55
<!-- type=misc -->
66

doc/api/diagnostics_channel.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,9 @@ added:
265265
- v15.1.0
266266
- v14.17.0
267267
changes:
268-
- version: v17.1.0
268+
- version:
269+
- v17.1.0
270+
- v14.19.0
269271
pr-url: https://github.com/nodejs/node/pull/40433
270272
description: Added return value. Added to channels without subscribers.
271273
-->

doc/api/errors.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1120,7 +1120,9 @@ The [debugger][] timed out waiting for the required host/port to be free.
11201120
### `ERR_DLOPEN_DISABLED`
11211121

11221122
<!-- YAML
1123-
added: v16.10.0
1123+
added:
1124+
- v16.10.0
1125+
- v14.19.0
11241126
-->
11251127

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

doc/api/packages.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,9 @@ require('./path/to/directory'); // This resolves to ./path/to/directory/main.js.
11081108
### `"packageManager"`
11091109

11101110
<!-- YAML
1111-
added: v16.9.0
1111+
added:
1112+
- v16.9.0
1113+
- v14.19.0
11121114
-->
11131115

11141116
> Stability: 1 - Experimental

doc/changelogs/CHANGELOG_V14.md

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</tr>
1010
<tr>
1111
<td valign="top">
12+
<a href="#14.19.0">14.19.0</a><br/>
1213
<a href="#14.18.3">14.18.3</a><br/>
1314
<a href="#14.18.2">14.18.2</a><br/>
1415
<a href="#14.18.1">14.18.1</a><br/>
@@ -70,6 +71,71 @@
7071
* [io.js](CHANGELOG_IOJS.md)
7172
* [Archive](CHANGELOG_ARCHIVE.md)
7273

74+
<a id="14.19.0"></a>
75+
76+
## 2022-02-01, Version 14.19.0 'Fermium' (LTS), @richardlau
77+
78+
### Notable Changes
79+
80+
#### Corepack
81+
82+
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.
83+
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.
84+
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.
85+
86+
Contributed by Maël Nison - [#39608](https://github.com/nodejs/node/pull/39608)
87+
88+
#### ICU updated
89+
90+
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.
91+
92+
Contributed by Michaël Zasso - [#40658](https://github.com/nodejs/node/pull/40658)
93+
94+
#### New option to disable loading of native addons
95+
96+
A new command line option `--no-addons` has been added to disallow loading of native addons.
97+
98+
Contributed by Dominic Elm - [#39977](https://github.com/nodejs/node/pull/39977)
99+
100+
#### Updated Root Certificates
101+
102+
Root certificates have been updated to those from Mozilla's Network Security Services 3.71.
103+
104+
Contributed by Richard Lau - [#40280](https://github.com/nodejs/node/pull/40280)
105+
106+
#### Other Notable Changes
107+
108+
* \[[`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)
109+
* \[[`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)
110+
* \[[`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)
111+
* \[[`607bc74eae`](https://github.com/nodejs/node/commit/607bc74eae)] - **(SEMVER-MINOR)** **module**: support pattern trailers (Guy Bedford) [#39635](https://github.com/nodejs/node/pull/39635)
112+
* \[[`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)
113+
114+
### Commits
115+
116+
* \[[`0231ffa501`](https://github.com/nodejs/node/commit/0231ffa501)] - **build**: add `--without-corepack` (Jonah Snider) [#41060](https://github.com/nodejs/node/pull/41060)
117+
* \[[`5389b8ab05`](https://github.com/nodejs/node/commit/5389b8ab05)] - **crypto**: update root certificates (Richard Lau) [#40280](https://github.com/nodejs/node/pull/40280)
118+
* \[[`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)
119+
* \[[`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)
120+
* \[[`737df75e17`](https://github.com/nodejs/node/commit/737df75e17)] - **(SEMVER-MINOR)** **deps**: add corepack (Maël Nison) [#39608](https://github.com/nodejs/node/pull/39608)
121+
* \[[`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)
122+
* \[[`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)
123+
* \[[`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)
124+
* \[[`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)
125+
* \[[`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)
126+
* \[[`4477da858f`](https://github.com/nodejs/node/commit/4477da858f)] - **doc**: fix corepack grammar for `--force` flag (Steven) [#40762](https://github.com/nodejs/node/pull/40762)
127+
* \[[`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)
128+
* \[[`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)
129+
* \[[`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)
130+
* \[[`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)
131+
* \[[`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)
132+
* \[[`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)
133+
* \[[`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)
134+
* \[[`607bc74eae`](https://github.com/nodejs/node/commit/607bc74eae)] - **(SEMVER-MINOR)** **module**: support pattern trailers (Guy Bedford) [#39635](https://github.com/nodejs/node/pull/39635)
135+
* \[[`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)
136+
* \[[`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)
137+
* \[[`c1695ac68a`](https://github.com/nodejs/node/commit/c1695ac68a)] - **tools**: update certdata.txt (Richard Lau) [#40280](https://github.com/nodejs/node/pull/40280)
138+
73139
<a id="14.18.3"></a>
74140

75141
## 2022-01-10, Version 14.18.3 'Fermium' (LTS), @richardlau

0 commit comments

Comments
 (0)