Skip to content

Commit 4c5cbb7

Browse files
committed
2017-06-06, Version 6.11.0 'Boron' (LTS)
This LTS release comes with 126 commits. This includes 40 which are test related, 32 which are doc related, 12 which are build / tool related and 4 commits which are updates to dependencies. Notable Changes: * build: - support for building mips64el (nanxiongchao) #10991 * cluster: - disconnect() now returns a reference to the disconnected worker. (Sean Villars) #10019 * crypto: - ability to select cert store at runtime (Adam Majer) #8334 - Use system CAs instead of using bundled ones (Adam Majer) #8334 - The `Decipher` methods `setAuthTag()` and `setAAD` now return `this`. (Kirill Fomichev) #9398 - adding support for OPENSSL_CONF again (Sam Roberts) #11006 - make LazyTransform compabile with Streams1 (Matteo Collina) #12380 * deps: - upgrade libuv to 1.11.0 (cjihrig) #11094 - upgrade libuv to 1.10.2 (cjihrig) #10717 - upgrade libuv to 1.10.1 (cjihrig) #9647 - upgrade libuv to 1.10.0 (cjihrig) #9267 * dns: - Implemented `{ttl: true}` for `resolve4()` and `resolve6()` (Ben Noordhuis) #9296 * process: - add NODE_NO_WARNINGS environment variable (cjihrig) #10842 * readline: - add option to stop duplicates in history (Danny Nemer) #2982 * src: - support "--" after "-e" as end-of-options (John Barboza) #10651 * tls: - new tls.TLSSocket() supports sec ctx options (Sam Roberts) #11005 - Allow obvious key/passphrase combinations. (Sam Roberts) #10294 PR-URL: #13059
1 parent afc59a9 commit 4c5cbb7

File tree

3 files changed

+171
-5
lines changed

3 files changed

+171
-5
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ release.
4848
<a href="doc/changelogs/CHANGELOG_V7.md#7.0.0">7.0.0</a><br/>
4949
</td>
5050
<td valign="top">
51-
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.10.3">6.10.3</a></b><br/>
51+
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.11.0">6.11.0</a></b><br/>
52+
<a href="doc/changelogs/CHANGELOG_V6.md#6.10.3">6.10.3</a><br/>
5253
<a href="doc/changelogs/CHANGELOG_V6.md#6.10.2">6.10.2</a><br/>
5354
<a href="doc/changelogs/CHANGELOG_V6.md#6.10.1">6.10.1</a><br/>
5455
<a href="doc/changelogs/CHANGELOG_V6.md#6.10.0">6.10.0</a><br/>

doc/api/cli.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ used to enable FIPS-compliant crypto if Node.js is built with
333333

334334
### `--use-openssl-ca`, `--use-bundled-ca`
335335
<!-- YAML
336-
added: v7.5.0
336+
added: v6.11.0
337337
-->
338338

339339
Use OpenSSL's default CA store or use bundled Mozilla CA store as supplied by
@@ -370,7 +370,7 @@ are passed to that script.
370370

371371
### `--`
372372
<!-- YAML
373-
added: v7.5.0
373+
added: v6.11.0
374374
-->
375375

376376
Indicate the end of node options. Pass the rest of the arguments to the script.
@@ -415,7 +415,7 @@ with small-icu support.
415415

416416
### `NODE_NO_WARNINGS=1`
417417
<!-- YAML
418-
added: v7.5.0
418+
added: v6.11.0
419419
-->
420420

421421
When set to `1`, process warnings are silenced.
@@ -507,7 +507,7 @@ options property is explicitly specified for a TLS or HTTPS client or server.
507507

508508
### `OPENSSL_CONF=file`
509509
<!-- YAML
510-
added: v7.7.0
510+
added: v6.11.0
511511
-->
512512

513513
Load an OpenSSL configuration file on startup. Among other uses, this can be

0 commit comments

Comments
 (0)