Skip to content

Commit 0d8021e

Browse files
committed
2017-05-30, Version 8.0.0 (Current)
* **Async Hooks** * The `async_hooks` module has landed in core [[`4a7233c178`](4a7233c178)] [#12892](#12892). * **Buffer** * Using the `--pending-deprecation` flag will cause Node.js to emit a deprecation warning when using `new Buffer(num)` or `Buffer(num)`. [[`d2d32ea5a2`](d2d32ea5a2)] [#11968](#11968). * `new Buffer(num)` and `Buffer(num)` will zero-fill new `Buffer` instances [[`7eb1b4658e`](7eb1b4658e)] [#12141](#12141). * Many `Buffer` methods now accept `Uint8Array` as input [[`beca3244e2`](beca3244e2)] [#10236](#10236). * **Child Process** * Argument and kill signal validations have been improved [[`97a77288ce`](97a77288ce)] [#12348](#12348), [[`d75fdd96aa`](d75fdd96aa)] [#10423](#10423). * Child Process methods accept `Uint8Array` as input [[`627ecee9ed`](627ecee9ed)] [#10653](#10653). * **Console** * Error events emitted when using `console` methods are now supressed. [[`f18e08d820`](f18e08d820)] [#9744](#9744). * **Dependencies** * The npm client has been updated to 5.0.0 [[`3c3b36af0f`](3c3b36af0f)] [#12936](#12936). * V8 has been updated to 5.8 with forward ABI stability to 6.0 [[`60d1aac8d2`](60d1aac8d2)] [#12784](#12784). * **Domains** * Native `Promise` instances are now `Domain` aware [[`84dabe8373`](84dabe8373)] [#12489](#12489). * **Errors** * We have started assigning static error codes to errors generated by Node.js. This has been done through multiple commits and is still a work in progress. * **File System** * The utility class `fs.SyncWriteStream` has been deprecated [[`7a55e34ef4`](7a55e34ef4)] [#10467](#10467). * The deprecated `fs.read()` string interface has been removed [[`3c2a9361ff`](3c2a9361ff)] [#9683](#9683). * **HTTP** * Improved support for userland implemented Agents [[`90403dd1d0`](90403dd1d0)] [#11567](#11567). * Outgoing Cookie headers are concatenated into a single string [[`d3480776c7`](d3480776c7)] [#11259](#11259). * The `httpResponse.writeHeader()` method has been deprecated [[`fb71ba4921`](fb71ba4921)] [#11355](#11355). * New methods for accessing HTTP headers have been added to `OutgoingMessage` [[`3e6f1032a4`](3e6f1032a4)] [#10805](#10805). * **Lib** * All deprecation messages have been assigned static identifiers [[`5de3cf099c`](5de3cf099c)] [#10116](#10116). * The legacy `linkedlist` module has been removed [[`84a23391f6`](84a23391f6)] [#12113](#12113). * **N-API** * Experimental support for the new N-API API has been added [[`56e881d0b0`](56e881d0b0)] [#11975](#11975). * **Process** * Process warning output can be redirected to a file using the `--redirect-warnings` command-line argument [[`03e89b3ff2`](03e89b3ff2)] [#10116](#10116). * Process warnings may now include additional detail [[`dd20e68b0f`](dd20e68b0f)] [#12725](#12725). * **REPL** * REPL magic mode has been deprecated [[`3f27f02da0`](3f27f02da0)] [#11599](#11599). * **Src** * `NODE_MODULE_VERSION` has been updated to 57 (ec7cbaf266)] [#12995](#12995). * Add `--pending-deprecation` command-line argument and `NODE_PENDING_DEPRECATION` environment variable [[`a16b570f8c`](a16b570f8c)] [#11968](#11968). * The `--debug` command-line argument has been deprecated. Note that using `--debug` will enable the *new* Inspector-based debug protocol as the legacy Debugger protocol previously used by Node.js has been removed. [[`010f864426`](010f864426)] [#12949](#12949). * Throw when the `-c` and `-e` command-line arguments are used at the same time [[`a5f91ab230`](a5f91ab230)] [#11689](#11689). * Throw when the `--use-bundled-ca` and `--use-openssl-ca` command-line arguments are used at the same time. [[`8a7db9d4b5`](8a7db9d4b5)] [#12087](#12087). * **Stream** * `Stream` now supports `destroy()` and `_destroy()` APIs [[`b6e1d22fa6`](b6e1d22fa6)] [#12925](#12925). * `Stream` now supports the `_final()` API [[`07c7f198db`](07c7f198db)] [#12828](#12828). * **TLS** * The `rejectUnauthorized` option now defaults to `true` [[`348cc80a3c`](348cc80a3c)] [#5923](#5923). * The `tls.createSecurePair()` API now emits a runtime deprecation [[`a2ae08999b`](a2ae08999b)] [#11349](#11349). * A runtime deprecation will now be emitted when `dhparam` is less than 2048 bits [[`d523eb9c40`](d523eb9c40)] [#11447](#11447). * **URL** * The WHATWG URL implementation is now a fully-supported Node.js API [[`d080ead0f9`](d080ead0f9)] [#12710](#12710). * **Util** * `Symbol` keys are now displayed by default when using `util.inspect()` [[`5bfd13b81e`](5bfd13b81e)] [#9726](#9726). * `toJSON` errors will be thrown when formatting `%j` [[`455e6f1dd8`](455e6f1dd8)] [#11708](#11708). * Convert `inspect.styles` and `inspect.colors` to prototype-less objects [[`aab0d202f8`](aab0d202f8)] [#11624](#11624). * The new `util.promisify()` API has been added [[`99da8e8e02`](99da8e8e02)] [#12442](#12442). * **Zlib** * Support `Uint8Array` in Zlib convenience methods [[`91383e47fd`](91383e47fd)] [#12001](#12001). * Zlib errors now use `RangeError` and `TypeError` consistently [[`b514bd231e`](b514bd231e)] [#11391](#11391).
1 parent d985ca7 commit 0d8021e

32 files changed

+1121
-227
lines changed

CHANGELOG.md

+15-109
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,30 @@ release lines.
66

77
Select a Node.js version below to view the changelog history:
88

9-
* [Node.js v7](doc/changelogs/CHANGELOG_V7.md)
10-
* [Node.js v6](doc/changelogs/CHANGELOG_V6.md)
11-
* [Node.js v5](doc/changelogs/CHANGELOG_V5.md)
12-
* [Node.js v4](doc/changelogs/CHANGELOG_V4.md)
13-
* [Node.js v0.12](doc/changelogs/CHANGELOG_V012.md)
14-
* [Node.js v0.10](doc/changelogs/CHANGELOG_V010.md)
15-
* [io.js](doc/changelogs/CHANGELOG_IOJS.md) and [Archive](doc/changelogs/CHANGELOG_ARCHIVE.md)
9+
* [Node.js 8](doc/changelogs/CHANGELOG_V8.md)
10+
* [Node.js 7](doc/changelogs/CHANGELOG_V7.md)
11+
* [Node.js 6](doc/changelogs/CHANGELOG_V6.md)
12+
* [Node.js 4](doc/changelogs/CHANGELOG_V4.md)
13+
* [Node.js 5](doc/changelogs/CHANGELOG_V5.md),
14+
[0.12](doc/changelogs/CHANGELOG_V012.md),
15+
[0.10](doc/changelogs/CHANGELOG_V010.md),
16+
[io.js](doc/changelogs/CHANGELOG_IOJS.md) and [Archive](doc/changelogs/CHANGELOG_ARCHIVE.md)
1617

1718
Please use the following table to find the changelog for a specific Node.js
1819
release.
1920

2021
<table>
2122
<tr>
22-
<th><a href="doc/changelogs/CHANGELOG_V7.md">v7</a><sup>Current</sup></th>
23-
<th title="LTS Until 2019-04"><a href="doc/changelogs/CHANGELOG_V6.md">v6</a><sup>LTS</sup></th>
24-
<th title="Unsupported Since 2016-07-01"><a href="doc/changelogs/CHANGELOG_V5.md">v5</a><sup>EOL</sup></th>
25-
<th title="LTS Until 2018-04"><a href="doc/changelogs/CHANGELOG_V4.md">v4</a><sup>LTS</sup></th>
26-
<th title="Unsupported Since 2017-01-01"><a href="doc/changelogs/CHANGELOG_V012.md">v0.12</a><sup>EOL</sup></th>
27-
<th title="Unsupported Since 2016-11-01" colspan="3"><a href="doc/changelogs/CHANGELOG_V010.md">v0.10</a><sup>EOL</sup></th>
23+
<th><a href="doc/changelogs/CHANGELOG_V8.md">8</a><sup>Current</sup></th>
24+
<th title="Supported until 2016-07-01"><a href="doc/changelogs/CHANGELOG_V7.md">7</a><sup>-</sup></th>
25+
<th title="LTS Until 2019-04"><a href="doc/changelogs/CHANGELOG_V6.md">6</a><sup>LTS</sup></th>
26+
<th title="LTS Until 2018-04"><a href="doc/changelogs/CHANGELOG_V4.md">4</a><sup>LTS</sup></th>
2827
</tr>
2928
<tr>
3029
<td valign="top">
30+
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.0.0">8.0.0</a></b><br/>
31+
</td>
32+
<td valign="top">
3133
<b><a href="doc/changelogs/CHANGELOG_V7.md#7.10.0">7.10.0</a></b><br/>
3234
<a href="doc/changelogs/CHANGELOG_V7.md#7.9.0">7.9.0</a><br/>
3335
<a href="doc/changelogs/CHANGELOG_V7.md#7.8.0">7.8.0</a><br/>
@@ -71,26 +73,6 @@ release.
7173
<a href="doc/changelogs/CHANGELOG_V6.md#6.0.0">6.0.0</a><br/>
7274
</td>
7375
<td valign="top">
74-
<a href="doc/changelogs/CHANGELOG_V5.md#5.11.1">5.11.1</a><br/>
75-
<a href="doc/changelogs/CHANGELOG_V5.md#5.11.0">5.11.0</a><br/>
76-
<a href="doc/changelogs/CHANGELOG_V5.md#5.10.1">5.10.1</a><br/>
77-
<a href="doc/changelogs/CHANGELOG_V5.md#5.10.0">5.10.0</a><br/>
78-
<a href="doc/changelogs/CHANGELOG_V5.md#5.9.1">5.9.1</a><br/>
79-
<a href="doc/changelogs/CHANGELOG_V5.md#5.9.0">5.9.0</a><br/>
80-
<a href="doc/changelogs/CHANGELOG_V5.md#5.8.0">5.8.0</a><br/>
81-
<a href="doc/changelogs/CHANGELOG_V5.md#5.7.1">5.7.1</a><br/>
82-
<a href="doc/changelogs/CHANGELOG_V5.md#5.7.0">5.7.0</a><br/>
83-
<a href="doc/changelogs/CHANGELOG_V5.md#5.6.0">5.6.0</a><br/>
84-
<a href="doc/changelogs/CHANGELOG_V5.md#5.5.0">5.5.0</a><br/>
85-
<a href="doc/changelogs/CHANGELOG_V5.md#5.4.1">5.4.1</a><br/>
86-
<a href="doc/changelogs/CHANGELOG_V5.md#5.4.0">5.4.0</a><br/>
87-
<a href="doc/changelogs/CHANGELOG_V5.md#5.3.0">5.3.0</a><br/>
88-
<a href="doc/changelogs/CHANGELOG_V5.md#5.2.0">5.2.0</a><br/>
89-
<a href="doc/changelogs/CHANGELOG_V5.md#5.1.1">5.1.1</a><br/>
90-
<a href="doc/changelogs/CHANGELOG_V5.md#5.1.0">5.1.0</a><br/>
91-
<a href="doc/changelogs/CHANGELOG_V5.md#5.0.0">5.0.0</a><br/>
92-
</td>
93-
<td valign="top">
9476
<b><a href="doc/changelogs/CHANGELOG_V4.md#4.8.3">4.8.3</a></b><br/>
9577
<a href="doc/changelogs/CHANGELOG_V4.md#4.8.2">4.8.2</a><br/>
9678
<a href="doc/changelogs/CHANGELOG_V4.md#4.8.1">4.8.1</a><br/>
@@ -126,82 +108,6 @@ release.
126108
<a href="doc/changelogs/CHANGELOG_V4.md#4.1.0">4.1.0</a><br/>
127109
<a href="doc/changelogs/CHANGELOG_V4.md#4.0.0">4.0.0</a><br/>
128110
</td>
129-
<td valign="top">
130-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.18">0.12.18</a><br/>
131-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.17">0.12.17</a><br/>
132-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.16">0.12.16</a><br/>
133-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.15">0.12.15</a><br/>
134-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.14">0.12.14</a><br/>
135-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.13">0.12.13</a><br/>
136-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.12">0.12.12</a><br/>
137-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.11">0.12.11</a><br/>
138-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.10">0.12.10</a><br/>
139-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.9">0.12.9</a><br/>
140-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.8">0.12.8</a><br/>
141-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.7">0.12.7</a><br/>
142-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.6">0.12.6</a><br/>
143-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.5">0.12.5</a><br/>
144-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.4">0.12.4</a><br/>
145-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.3">0.12.3</a><br/>
146-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.2">0.12.2</a><br/>
147-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.1">0.12.1</a><br/>
148-
<a href="doc/changelogs/CHANGELOG_V012.md#0.12.0">0.12.0</a><br/>
149-
</td>
150-
<td valign="top">
151-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.48">0.10.48</a><br/>
152-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.47">0.10.47</a><br/>
153-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.46">0.10.46</a><br/>
154-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.45">0.10.45</a><br/>
155-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.44">0.10.44</a><br/>
156-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.43">0.10.43</a><br/>
157-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.42">0.10.42</a><br/>
158-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.41">0.10.41</a><br/>
159-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.40">0.10.40</a><br/>
160-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.39">0.10.39</a><br/>
161-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.38">0.10.38</a><br/>
162-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.37">0.10.37</a><br/>
163-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.36">0.10.36</a><br/>
164-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.35">0.10.35</a><br/>
165-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.34">0.10.34</a><br/>
166-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.33">0.10.33</a><br/>
167-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.32">0.10.32</a><br/>
168-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.31">0.10.31</a><br/>
169-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.30">0.10.30</a><br/>
170-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.29">0.10.29</a><br/>
171-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.28">0.10.28</a><br/>
172-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.27">0.10.27</a><br/>
173-
</td>
174-
<td valign="top">
175-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.26">0.10.26</a><br/>
176-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.25">0.10.25</a><br/>
177-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.24">0.10.24</a><br/>
178-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.23">0.10.23</a><br/>
179-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.22">0.10.22</a><br/>
180-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.21">0.10.21</a><br/>
181-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.20">0.10.20</a><br/>
182-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.19">0.10.19</a><br/>
183-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.18">0.10.18</a><br/>
184-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.17">0.10.17</a><br/>
185-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.16">0.10.16</a><br/>
186-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.15">0.10.15</a><br/>
187-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.14">0.10.14</a><br/>
188-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.13">0.10.13</a><br/>
189-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.12">0.10.12</a><br/>
190-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.11">0.10.11</a><br/>
191-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.10">0.10.10</a><br/>
192-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.9">0.10.9</a><br/>
193-
</td>
194-
<td valign="top">
195-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.8">0.10.8</a><br/>
196-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.7">0.10.7</a><br/>
197-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.6">0.10.6</a><br/>
198-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.5">0.10.5</a><br/>
199-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.4">0.10.4</a><br/>
200-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.3">0.10.3</a><br/>
201-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.2">0.10.2</a><br/>
202-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.1">0.10.1</a><br/>
203-
<a href="doc/changelogs/CHANGELOG_V010.md#0.10.0">0.10.0</a><br/>
204-
</td>
205111
</tr>
206112
</table>
207113

doc/api/assert.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ An alias of [`assert.ok()`][].
1818
<!-- YAML
1919
added: v0.1.21
2020
changes:
21-
- version: REPLACEME
21+
- version: v8.0.0
2222
pr-url: https://github.com/nodejs/node/pull/12142
2323
description: Set and Map content is also compared
2424
- version: v6.4.0, v4.7.1
@@ -102,7 +102,7 @@ parameter is undefined, a default error message is assigned.
102102
<!-- YAML
103103
added: v1.2.0
104104
changes:
105-
- version: REPLACEME
105+
- version: v8.0.0
106106
pr-url: https://github.com/nodejs/node/pull/12142
107107
description: Set and Map content is also compared
108108
- version: v6.4.0, v4.7.1

doc/api/buffer.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ actual byte length is returned.
707707
<!-- YAML
708708
added: v0.11.13
709709
changes:
710-
- version: REPLACEME
710+
- version: v8.0.0
711711
pr-url: https://github.com/nodejs/node/pull/10236
712712
description: The arguments can now be `Uint8Array`s.
713713
-->
@@ -736,7 +736,7 @@ console.log(arr.sort(Buffer.compare));
736736
<!-- YAML
737737
added: v0.7.11
738738
changes:
739-
- version: REPLACEME
739+
- version: v8.0.0
740740
pr-url: https://github.com/nodejs/node/pull/10236
741741
description: The elements of `list` can now be `Uint8Array`s.
742742
-->
@@ -984,7 +984,7 @@ console.log(buffer.buffer === arrayBuffer);
984984
<!-- YAML
985985
added: v0.11.13
986986
changes:
987-
- version: REPLACEME
987+
- version: v8.0.0
988988
pr-url: https://github.com/nodejs/node/pull/10236
989989
description: The `target` parameter can now be a `Uint8Array`.
990990
- version: v5.11.0
@@ -1146,7 +1146,7 @@ for (const pair of buf.entries()) {
11461146
<!-- YAML
11471147
added: v0.11.13
11481148
changes:
1149-
- version: REPLACEME
1149+
- version: v8.0.0
11501150
pr-url: https://github.com/nodejs/node/pull/10236
11511151
description: The arguments can now be `Uint8Array`s.
11521152
-->
@@ -1257,7 +1257,7 @@ console.log(buf.includes('this', 4));
12571257
<!-- YAML
12581258
added: v1.5.0
12591259
changes:
1260-
- version: REPLACEME
1260+
- version: v8.0.0
12611261
pr-url: https://github.com/nodejs/node/pull/10236
12621262
description: The `value` can now be a `Uint8Array`.
12631263
- version: v5.7.0, v4.4.0
@@ -1374,7 +1374,7 @@ for (const key of buf.keys()) {
13741374
<!-- YAML
13751375
added: v6.0.0
13761376
changes:
1377-
- version: REPLACEME
1377+
- version: v8.0.0
13781378
pr-url: https://github.com/nodejs/node/pull/10236
13791379
description: The `value` can now be a `Uint8Array`.
13801380
-->
@@ -1503,7 +1503,7 @@ console.log(buf.length);
15031503

15041504
### buf.parent
15051505
<!-- YAML
1506-
deprecated: REPLACEME
1506+
deprecated: v8.0.0
15071507
-->
15081508

15091509
> Stability: 0 - Deprecated: Use [`buf.buffer`] instead.
@@ -2517,7 +2517,7 @@ Note that this is a property on the `buffer` module returned by
25172517
<!-- YAML
25182518
added: v7.1.0
25192519
changes:
2520-
- version: REPLACEME
2520+
- version: v8.0.0
25212521
pr-url: https://github.com/nodejs/node/pull/10236
25222522
description: The `source` parameter can now be a `Uint8Array`.
25232523
-->

doc/api/child_process.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ getVersion();
297297
<!-- YAML
298298
added: v0.5.0
299299
changes:
300-
- version: REPLACEME
300+
- version: v8.0.0
301301
pr-url: https://github.com/nodejs/node/pull/10866
302302
description: The `stdio` option can now be a string.
303303
- version: v6.4.0
@@ -638,7 +638,7 @@ configuration at startup.
638638
<!-- YAML
639639
added: v0.11.12
640640
changes:
641-
- version: REPLACEME
641+
- version: v8.0.0
642642
pr-url: https://github.com/nodejs/node/pull/10653
643643
description: The `input` option can now be a `Uint8Array`.
644644
- version: v6.2.1, v4.5.0
@@ -687,7 +687,7 @@ throw. The [`Error`][] object will contain the entire result from
687687
<!-- YAML
688688
added: v0.11.12
689689
changes:
690-
- version: REPLACEME
690+
- version: v8.0.0
691691
pr-url: https://github.com/nodejs/node/pull/10653
692692
description: The `input` option can now be a `Uint8Array`.
693693
-->
@@ -739,7 +739,7 @@ execution.
739739
<!-- YAML
740740
added: v0.11.12
741741
changes:
742-
- version: REPLACEME
742+
- version: v8.0.0
743743
pr-url: https://github.com/nodejs/node/pull/10653
744744
description: The `input` option can now be a `Uint8Array`.
745745
- version: v6.2.1, v4.5.0

doc/api/cli.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ Throw errors for deprecations.
151151

152152
### `--pending-deprecation`
153153
<!-- YAML
154-
added: REPLACEME
154+
added: v8.0.0
155155
-->
156156

157157
Emit pending deprecation warnings.
@@ -172,7 +172,7 @@ Silence all process warnings (including deprecations).
172172

173173
### `--napi-modules`
174174
<!-- YAML
175-
added: REPLACEME
175+
added: v8.0.0
176176
-->
177177

178178
Enable loading native modules compiled with the ABI-stable Node.js API (N-API)
@@ -187,7 +187,7 @@ Print stack traces for process warnings (including deprecations).
187187

188188
### `--redirect-warnings=file`
189189
<!-- YAML
190-
added: REPLACEME
190+
added: v8.0.0
191191
-->
192192

193193
Write process warnings to the given file instead of printing to stderr. The
@@ -360,7 +360,7 @@ Specify ICU data load path. (overrides `NODE_ICU_DATA`)
360360

361361
### `-`
362362
<!-- YAML
363-
added: REPLACEME
363+
added: v8.0.0
364364
-->
365365

366366
Alias for stdin, analogous to the use of - in other command line utilities,
@@ -422,7 +422,7 @@ When set to `1`, process warnings are silenced.
422422

423423
### `NODE_OPTIONS=options...`
424424
<!-- YAML
425-
added: REPLACEME
425+
added: v8.0.0
426426
-->
427427

428428
`options...` are interpreted as if they had been specified on the command line
@@ -461,7 +461,7 @@ V8 options that are allowed are:
461461

462462
### `NODE_PENDING_DEPRECATION=1`
463463
<!-- YAML
464-
added: REPLACEME
464+
added: v8.0.0
465465
-->
466466

467467
When set to `1`, emit pending deprecation warnings.
@@ -543,7 +543,7 @@ OpenSSL, it may cause them to trust the same CAs as node.
543543

544544
### `NODE_REDIRECT_WARNINGS=file`
545545
<!-- YAML
546-
added: REPLACEME
546+
added: v8.0.0
547547
-->
548548

549549
When set, process warnings will be emitted to the given file instead of

doc/api/console.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ myConsole.warn(`Danger ${name}! Danger!`);
5555
## Class: Console
5656
<!-- YAML
5757
changes:
58-
- version: REPLACEME
58+
- version: v8.0.0
5959
pr-url: https://github.com/nodejs/node/pull/9744
6060
description: Errors that occur while writing to the underlying streams
6161
will now be ignored.

doc/api/crypto.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,7 @@ console.log(sign.sign(privateKey).toString('hex'));
971971
<!-- YAML
972972
added: v0.1.92
973973
changes:
974-
- version: REPLACEME
974+
- version: v8.0.0
975975
pr-url: https://github.com/nodejs/node/pull/11705
976976
description: Support for RSASSA-PSS and additional options was added.
977977
-->
@@ -1095,7 +1095,7 @@ This can be called many times with new data as it is streamed.
10951095
<!-- YAML
10961096
added: v0.1.92
10971097
changes:
1098-
- version: REPLACEME
1098+
- version: v8.0.0
10991099
pr-url: https://github.com/nodejs/node/pull/11705
11001100
description: Support for RSASSA-PSS and additional options was added.
11011101
-->
@@ -1277,10 +1277,10 @@ The `key` is the raw key used by the `algorithm` and `iv` is an
12771277
<!-- YAML
12781278
added: v0.11.12
12791279
changes:
1280-
- version: REPLACEME
1281-
pr-url: REPLACEME
1280+
- version: v8.0.0
1281+
pr-url: https://github.com/nodejs/node/pull/12223
12821282
description: The `prime` argument can be any `TypedArray` or `DataView` now.
1283-
- version: REPLACEME
1283+
- version: v8.0.0
12841284
pr-url: https://github.com/nodejs/node/pull/11983
12851285
description: The `prime` argument can be a `Uint8Array` now.
12861286
- version: v6.0.0
@@ -1502,7 +1502,7 @@ console.log(hashes); // ['DSA', 'DSA-SHA', 'DSA-SHA1', ...]
15021502
<!-- YAML
15031503
added: v0.5.5
15041504
changes:
1505-
- version: REPLACEME
1505+
- version: v8.0.0
15061506
pr-url: https://github.com/nodejs/node/pull/11305
15071507
description: The `digest` parameter is always required now.
15081508
- version: v6.0.0

0 commit comments

Comments
 (0)