Skip to content

Commit c6a2ec5

Browse files
committed
2017-11-07, Version 6.12.0 'Boron' (LTS)
Notable Changes: * assert: - assert.fail() can now take one or two arguments (Rich Trott) #12293 * crypto: - add sign/verify support for RSASSA-PSS (Tobias Nießen) #11705 * deps: - upgrade openssl sources to 1.0.2m (Shigeki Ohtsu) #16691 - upgrade libuv to 1.15.0 (cjihrig) #15745 - upgrade libuv to 1.14.1 (cjihrig) #14866 - upgrade libuv to 1.13.1 (cjihrig) #14117 - upgrade libuv to 1.12.0 (cjihrig) #13306 * fs: - Add support for fs.write/fs.writeSync(fd, buffer, cb) and fs.write/fs.writeSync(fd, buffer, offset, cb) as documented (Andreas Lind) #7856 * inspector: - enable --inspect-brk (Refael Ackermann) #12615 * process: - add --redirect-warnings command line argument (James M Snell) #10116 * src: - allow CLI args in env with NODE_OPTIONS (Sam Roberts) #12028) - --abort-on-uncaught-exception in NODE_OPTIONS (Sam Roberts) #13932 - allow --tls-cipher-list in NODE_OPTIONS (Sam Roberts) #13172 - use SafeGetenv() for NODE_REDIRECT_WARNINGS (Sam Roberts) #12677 * test: - remove common.fail() (Rich Trott) #12293 PR-URL: #16263
1 parent b98fa82 commit c6a2ec5

File tree

5 files changed

+175
-9
lines changed

5 files changed

+175
-9
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ release.
2626
</tr>
2727
<tr>
2828
<td valign="top">
29-
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.11.5">6.11.5</a></b><br/>
29+
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.12.0">6.12.0</a></b><br/>
30+
<a href="doc/changelogs/CHANGELOG_V6.md#6.11.5">6.11.5</a><br/>
3031
<a href="doc/changelogs/CHANGELOG_V6.md#6.11.4">6.11.4</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V6.md#6.11.3">6.11.3</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V6.md#6.11.2">6.11.2</a><br/>

doc/api/cli.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Print stack traces for process warnings (including deprecations).
128128

129129
### `--redirect-warnings=file`
130130
<!-- YAML
131-
added: REPLACEME
131+
added: v6.12.0
132132
-->
133133

134134
Write process warnings to the given file instead of printing to stderr. The
@@ -338,7 +338,7 @@ When set to `1`, process warnings are silenced.
338338

339339
### `NODE_OPTIONS=options...`
340340
<!-- YAML
341-
added: REPLACEME
341+
added: v6.12.0
342342
-->
343343

344344
`options...` are interpreted as if they had been specified on the command line
@@ -438,7 +438,7 @@ OpenSSL, it may cause them to trust the same CAs as node.
438438

439439
### `NODE_REDIRECT_WARNINGS=file`
440440
<!-- YAML
441-
added: REPLACEME
441+
added: v6.12.0
442442
-->
443443

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

doc/api/crypto.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,7 @@ console.log(sign.sign(privateKey, 'hex'));
897897
<!-- YAML
898898
added: v0.1.92
899899
changes:
900-
- version: REPLACEME
900+
- version: v6.12.0
901901
pr-url: https://github.com/nodejs/node/pull/11705
902902
description: Support for RSASSA-PSS and additional options was added.
903903
-->
@@ -1005,7 +1005,7 @@ This can be called many times with new data as it is streamed.
10051005
<!-- YAML
10061006
added: v0.1.92
10071007
changes:
1008-
- version: REPLACEME
1008+
- version: v6.12.0
10091009
pr-url: https://github.com/nodejs/node/pull/11705
10101010
description: Support for RSASSA-PSS and additional options was added.
10111011
-->

0 commit comments

Comments
 (0)