Skip to content

Commit 62a3df3

Browse files
committed
2019-04-23, Version 12.0.0 (Current)
Notable changes:
1 parent d17dfc7 commit 62a3df3

28 files changed

+655
-67
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,17 @@ release.
2121
<!--lint disable maximum-line-length-->
2222
<table>
2323
<tr>
24+
<th title="Current"><a href="doc/changelogs/CHANGELOG_V12.md">12</a><sup>Current</sup></th>
2425
<th title="Current"><a href="doc/changelogs/CHANGELOG_V11.md">11</a><sup>Current</sup></th>
2526
<th title="LTS Until 2021-04"><a href="doc/changelogs/CHANGELOG_V10.md">10</a><sup>LTS</sup></th>
2627
<th title="LTS Until 2019-12"><a href="doc/changelogs/CHANGELOG_V8.md">8</a><sup>LTS</sup></th>
2728
<th title="LTS Until 2019-04"><a href="doc/changelogs/CHANGELOG_V6.md">6</a><sup>LTS</sup></th>
2829
</tr>
2930
<tr>
3031
<td valign="top">
32+
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.0.0">12.0.0</a></b><br/>
33+
</td>
34+
<td valign="top">
3135
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.14.0">11.14.0</a></b><br/>
3236
<a href="doc/changelogs/CHANGELOG_V11.md#11.13.0">11.13.0</a><br/>
3337
<a href="doc/changelogs/CHANGELOG_V11.md#11.12.0">11.12.0</a><br/>

doc/api/assert.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ An alias of [`assert.ok()`][].
163163
<!-- YAML
164164
added: v0.1.21
165165
changes:
166-
- version: REPLACEME
166+
- version: v12.0.0
167167
pr-url: https://github.com/nodejs/node/pull/25008
168168
description: The type tags are now properly compared and there are a couple
169169
minor comparison adjustments to make the check less surprising.

doc/api/buffer.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1549,7 +1549,7 @@ The `buf.parent` property is a deprecated alias for `buf.buffer`.
15491549
### buf.readBigInt64BE([offset])
15501550
### buf.readBigInt64LE([offset])
15511551
<!-- YAML
1552-
added: REPLACEME
1552+
added: v12.0.0
15531553
-->
15541554

15551555
* `offset` {integer} Number of bytes to skip before starting to read. Must
@@ -1565,7 +1565,7 @@ Integers read from a `Buffer` are interpreted as two's complement signed values.
15651565
### buf.readBigUInt64BE([offset])
15661566
### buf.readBigUInt64LE([offset])
15671567
<!-- YAML
1568-
added: REPLACEME
1568+
added: v12.0.0
15691569
-->
15701570

15711571
* `offset` {integer} Number of bytes to skip before starting to read. Must
@@ -2192,7 +2192,7 @@ console.log(`${len} bytes: ${buf.toString('utf8', 0, len)}`);
21922192
### buf.writeBigInt64BE(value[, offset])
21932193
### buf.writeBigInt64LE(value[, offset])
21942194
<!-- YAML
2195-
added: REPLACEME
2195+
added: v12.0.0
21962196
-->
21972197

21982198
* `value` {bigint} Number to be written to `buf`.
@@ -2218,7 +2218,7 @@ console.log(buf);
22182218
### buf.writeBigUInt64BE(value[, offset])
22192219
### buf.writeBigUInt64LE(value[, offset])
22202220
<!-- YAML
2221-
added: REPLACEME
2221+
added: v12.0.0
22222222
-->
22232223

22242224
* `value` {bigint} Number to be written to `buf`.

doc/api/cli.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Enable FIPS-compliant crypto at startup. (Requires Node.js to be built with
136136

137137
### `--es-module-specifier-resolution=mode`
138138
<!-- YAML
139-
added: REPLACEME
139+
added: v12.0.0
140140
-->
141141

142142
To be used in conjunction with `--experimental-modules`. Sets the resolution
@@ -150,7 +150,7 @@ Please see [customizing esm specifier resolution][] for example usage.
150150

151151
### `--experimental-json-modules`
152152
<!-- YAML
153-
added: REPLACEME
153+
added: v12.0.0
154154
-->
155155

156156
Enable experimental JSON support for the ES Module loader.
@@ -219,7 +219,7 @@ Both of the above may change in future updates, which will be breaking changes.
219219

220220
### `--heapsnapshot-signal=signal`
221221
<!-- YAML
222-
added: REPLACEME
222+
added: v12.0.0
223223
-->
224224

225225
Generates a heap snapshot each time the process receives the specified signal.
@@ -250,7 +250,7 @@ Specify ICU data load path. (Overrides `NODE_ICU_DATA`.)
250250

251251
### `--input-type=type`
252252
<!-- YAML
253-
added: REPLACEME
253+
added: v12.0.0
254254
-->
255255

256256
Used with `--experimental-modules`, this configures Node.js to interpret string
@@ -485,39 +485,39 @@ with crypto support (default).
485485

486486
### `--tls-max-v1.2`
487487
<!-- YAML
488-
added: REPLACEME
488+
added: v12.0.0
489489
-->
490490

491491
Set [`tls.DEFAULT_MAX_VERSION`][] to 'TLSv1.2'. Use to disable support for
492492
TLSv1.3.
493493

494494
### `--tls-max-v1.3`
495495
<!-- YAML
496-
added: REPLACEME
496+
added: v12.0.0
497497
-->
498498

499499
Set default [`tls.DEFAULT_MAX_VERSION`][] to 'TLSv1.3'. Use to enable support
500500
for TLSv1.3.
501501

502502
### `--tls-min-v1.0`
503503
<!-- YAML
504-
added: REPLACEME
504+
added: v12.0.0
505505
-->
506506

507507
Set default [`tls.DEFAULT_MIN_VERSION`][] to 'TLSv1'. Use for compatibility with
508508
old TLS clients or servers.
509509

510510
### `--tls-min-v1.1`
511511
<!-- YAML
512-
added: REPLACEME
512+
added: v12.0.0
513513
-->
514514

515515
Set default [`tls.DEFAULT_MIN_VERSION`][] to 'TLSv1.1'. Use for compatibility
516516
with old TLS clients or servers.
517517

518518
### `--tls-min-v1.3`
519519
<!-- YAML
520-
added: REPLACEME
520+
added: v12.0.0
521521
-->
522522

523523
Set default [`tls.DEFAULT_MIN_VERSION`][] to 'TLSv1.3'. Use to disable support
@@ -577,7 +577,7 @@ Track heap object allocations for heap snapshots.
577577

578578
### `--unhandled-rejections=mode`
579579
<!-- YAML
580-
added: REPLACEME
580+
added: v12.0.0
581581
-->
582582

583583
By default all unhandled rejections trigger a warning plus a deprecation warning

doc/api/crypto.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1129,17 +1129,17 @@ passing keys as strings or `Buffer`s due to improved security features.
11291129
<!-- YAML
11301130
added: v11.6.0
11311131
changes:
1132-
- version: REPLACEME
1132+
- version: v12.0.0
11331133
pr-url: https://github.com/nodejs/node/pull/26960
11341134
description: Added support for `'rsa-pss'`
1135-
- version: REPLACEME
1135+
- version: v12.0.0
11361136
pr-url: https://github.com/nodejs/node/pull/26786
11371137
description: This property now returns `undefined` for KeyObject
11381138
instances of unrecognized type instead of aborting.
1139-
- version: REPLACEME
1139+
- version: v12.0.0
11401140
pr-url: https://github.com/nodejs/node/pull/26774
11411141
description: Added support for `'x25519'` and `'x448'`
1142-
- version: REPLACEME
1142+
- version: v12.0.0
11431143
pr-url: https://github.com/nodejs/node/pull/26319
11441144
description: Added support for `'ed25519'` and `'ed448'`.
11451145
-->
@@ -1284,7 +1284,7 @@ console.log(verify.verify(publicKey, signature));
12841284
<!-- YAML
12851285
added: v0.1.92
12861286
changes:
1287-
- version: REPLACEME
1287+
- version: v12.0.0
12881288
pr-url: https://github.com/nodejs/node/pull/26960
12891289
description: This function now supports RSA-PSS keys.
12901290
- version: v11.6.0
@@ -1387,7 +1387,7 @@ This can be called many times with new data as it is streamed.
13871387
<!-- YAML
13881388
added: v0.1.92
13891389
changes:
1390-
- version: REPLACEME
1390+
- version: v12.0.0
13911391
pr-url: https://github.com/nodejs/node/pull/26960
13921392
description: This function now supports RSA-PSS keys.
13931393
- version: v11.7.0
@@ -1937,10 +1937,10 @@ algorithm names.
19371937
<!-- YAML
19381938
added: v10.12.0
19391939
changes:
1940-
- version: REPLACEME
1940+
- version: v12.0.0
19411941
pr-url: https://github.com/nodejs/node/pull/26774
19421942
description: Add ability to generate X25519 and X448 key pairs.
1943-
- version: REPLACEME
1943+
- version: v12.0.0
19441944
pr-url: https://github.com/nodejs/node/pull/26554
19451945
description: Add ability to generate Ed25519 and Ed448 key pairs.
19461946
- version: v11.6.0
@@ -2001,7 +2001,7 @@ a `Promise` for an `Object` with `publicKey` and `privateKey` properties.
20012001
<!-- YAML
20022002
added: v10.12.0
20032003
changes:
2004-
- version: REPLACEME
2004+
- version: v12.0.0
20052005
pr-url: https://github.com/nodejs/node/pull/26554
20062006
description: Add ability to generate Ed25519 and Ed448 key pairs.
20072007
- version: v11.6.0
@@ -2692,7 +2692,7 @@ Throws an error if FIPS mode is not available.
26922692

26932693
### crypto.sign(algorithm, data, key)
26942694
<!-- YAML
2695-
added: REPLACEME
2695+
added: v12.0.0
26962696
-->
26972697
* `algorithm` {string | null | undefined}
26982698
* `data` {Buffer | TypedArray | DataView}
@@ -2742,7 +2742,7 @@ not introduce timing vulnerabilities.
27422742

27432743
### crypto.verify(algorithm, data, key, signature)
27442744
<!-- YAML
2745-
added: REPLACEME
2745+
added: v12.0.0
27462746
-->
27472747
* `algorithm` {string | null | undefined}
27482748
* `data` {Buffer | TypedArray | DataView}

0 commit comments

Comments
 (0)