Skip to content

Commit 40d7acc

Browse files
committed
2022-06-15, Version 18.4.0 (Current)
Notable changes: * crypto: * remove Node.js-specific webcrypto extensions (Filip Skokan) #43310 * add CFRG curves to Web Crypto API (Filip Skokan) #42507 * dns: * accept `'IPv4'` and `'IPv6'` for `family` (Antoine du Hamel) #43054 * report: * add more heap infos in process report (theanarkh) #43116 PR-URL: #43385
1 parent 812140c commit 40d7acc

File tree

9 files changed

+139
-25
lines changed

9 files changed

+139
-25
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ release.
3535
</tr>
3636
<tr>
3737
<td valign="top">
38-
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.3.0">18.3.0</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.4.0">18.4.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V18.md#18.3.0">18.3.0</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V18.md#18.2.0">18.2.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V18.md#18.1.0">18.1.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V18.md#18.0.0">18.0.0</a><br/>

doc/api/dgram.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ exist and calls such as `socket.address()` and `socket.setTTL()` will fail.
114114
<!-- YAML
115115
added: v0.1.99
116116
changes:
117-
- version: REPLACEME
117+
- version: v18.4.0
118118
pr-url: https://github.com/nodejs/node/pull/43054
119119
description: The `family` property now returns a string instead of a number.
120120
- version: v18.0.0

doc/api/dns.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ section if a custom port is used.
179179
<!-- YAML
180180
added: v0.1.90
181181
changes:
182-
- version: REPLACEME
182+
- version: v18.4.0
183183
pr-url: https://github.com/nodejs/node/pull/43054
184184
description: For compatibility with `node:net`, when passing an option
185185
object the `family` option can be the string `'IPv4'` or the

doc/api/net.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ Emitted when the server has been bound after calling [`server.listen()`][].
286286
<!-- YAML
287287
added: v0.1.90
288288
changes:
289-
- version: REPLACEME
289+
- version: v18.4.0
290290
pr-url: https://github.com/nodejs/node/pull/43054
291291
description: The `family` property now returns a string instead of a number.
292292
- version: v18.0.0
@@ -746,7 +746,7 @@ See also: [`socket.setTimeout()`][].
746746
<!-- YAML
747747
added: v0.1.90
748748
changes:
749-
- version: REPLACEME
749+
- version: v18.4.0
750750
pr-url: https://github.com/nodejs/node/pull/43054
751751
description: The `family` property now returns a string instead of a number.
752752
- version: v18.0.0

doc/api/os.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ always `[0, 0, 0]`.
225225
<!-- YAML
226226
added: v0.6.0
227227
changes:
228-
- version: REPLACEME
228+
- version: v18.4.0
229229
pr-url: https://github.com/nodejs/node/pull/43054
230230
description: The `family` property now returns a string instead of a number.
231231
- version: v18.0.0

doc/api/tls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -956,7 +956,7 @@ tlsSocket.once('session', (session) => {
956956
<!-- YAML
957957
added: v0.11.4
958958
changes:
959-
- version: REPLACEME
959+
- version: v18.4.0
960960
pr-url: https://github.com/nodejs/node/pull/43054
961961
description: The `family` property now returns a string instead of a number.
962962
- version: v18.0.0

doc/api/webcrypto.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22

33
<!-- YAML
44
changes:
5-
- version: REPLACEME
5+
- version: v18.4.0
66
pr-url: https://github.com/nodejs/node/pull/43310
77
description: Removed proprietary `'node.keyObject'` import/export format.
8-
- version: REPLACEME
8+
- version: v18.4.0
99
pr-url: https://github.com/nodejs/node/pull/43310
1010
description: Removed proprietary `'NODE-DSA'`, `'NODE-DH'`,
1111
and `'NODE-SCRYPT'` algorithms.
12-
- version: REPLACEME
12+
- version: v18.4.0
1313
pr-url: https://github.com/nodejs/node/pull/42507
1414
description: Added `'Ed25519'`, `'Ed448'`, `'X25519'`, and `'X448'`
1515
algorithms.
16-
- version: REPLACEME
16+
- version: v18.4.0
1717
pr-url: https://github.com/nodejs/node/pull/42507
1818
description: Removed proprietary `'NODE-ED25519'` and `'NODE-ED448'`
1919
algorithms.
20-
- version: REPLACEME
20+
- version: v18.4.0
2121
pr-url: https://github.com/nodejs/node/pull/42507
2222
description: Removed proprietary `'NODE-X25519'` and `'NODE-X448'` named
2323
curves from the `'ECDH'` algorithm.
@@ -553,7 +553,7 @@ The algorithms currently supported include:
553553
<!-- YAML
554554
added: v15.0.0
555555
changes:
556-
- version: REPLACEME
556+
- version: v18.4.0
557557
pr-url: https://github.com/nodejs/node/pull/42507
558558
description: Added `'X25519'`, and `'X448'` algorithms.
559559
-->
@@ -584,7 +584,7 @@ The algorithms currently supported include:
584584
<!-- YAML
585585
added: v15.0.0
586586
changes:
587-
- version: REPLACEME
587+
- version: v18.4.0
588588
pr-url: https://github.com/nodejs/node/pull/42507
589589
description: Added `'X25519'`, and `'X448'` algorithms.
590590
-->
@@ -666,7 +666,7 @@ The algorithms currently supported include:
666666
<!-- YAML
667667
added: v15.0.0
668668
changes:
669-
- version: REPLACEME
669+
- version: v18.4.0
670670
pr-url: https://github.com/nodejs/node/pull/42507
671671
description: Added `'Ed25519'`, `'Ed448'`, `'X25519'`, and `'X448'`
672672
algorithms.
@@ -754,7 +754,7 @@ The {CryptoKey} (secret key) generating algorithms supported include:
754754
<!-- YAML
755755
added: v15.0.0
756756
changes:
757-
- version: REPLACEME
757+
- version: v18.4.0
758758
pr-url: https://github.com/nodejs/node/pull/42507
759759
description: Added `'Ed25519'`, `'Ed448'`, `'X25519'`, and `'X448'`
760760
algorithms.
@@ -809,7 +809,7 @@ The algorithms currently supported include:
809809
<!-- YAML
810810
added: v15.0.0
811811
changes:
812-
- version: REPLACEME
812+
- version: v18.4.0
813813
pr-url: https://github.com/nodejs/node/pull/42507
814814
description: Added `'Ed25519'`, and `'Ed448'` algorithms.
815815
-->
@@ -893,7 +893,7 @@ The unwrapped key algorithms supported include:
893893
<!-- YAML
894894
added: v15.0.0
895895
changes:
896-
- version: REPLACEME
896+
- version: v18.4.0
897897
pr-url: https://github.com/nodejs/node/pull/42507
898898
description: Added `'Ed25519'`, and `'Ed448'` algorithms.
899899
-->
@@ -965,13 +965,13 @@ are simple JavaScript dictionary objects.
965965
### Class: `AlgorithmIdentifier`
966966

967967
<!-- YAML
968-
added: REPLACEME
968+
added: v18.4.0
969969
-->
970970

971971
#### `algorithmIdentifier.name`
972972

973973
<!-- YAML
974-
added: REPLACEME
974+
added: v18.4.0
975975
-->
976976

977977
* Type: {string}
@@ -1228,15 +1228,15 @@ added: v15.0.0
12281228
#### `ed448Params.name`
12291229

12301230
<!-- YAML
1231-
added: REPLACEME
1231+
added: v18.4.0
12321232
-->
12331233

12341234
* Type: {string} Must be `'Ed448'`.
12351235

12361236
#### `ed448Params.context`
12371237

12381238
<!-- YAML
1239-
added: REPLACEME
1239+
added: v18.4.0
12401240
-->
12411241

12421242
* Type: {ArrayBuffer|TypedArray|DataView|Buffer|undefined}

0 commit comments

Comments
 (0)