Skip to content

Commit e5cdc26

Browse files
MylesBorinsandrew749
authored andcommitted
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) nodejs/node#10991 * cluster: - disconnect() now returns a reference to the disconnected worker. (Sean Villars) nodejs/node#10019 * crypto: - ability to select cert store at runtime (Adam Majer) nodejs/node#8334 - Use system CAs instead of using bundled ones (Adam Majer) nodejs/node#8334 - The `Decipher` methods `setAuthTag()` and `setAAD` now return `this`. (Kirill Fomichev) nodejs/node#9398 - adding support for OPENSSL_CONF again (Sam Roberts) nodejs/node#11006 - make LazyTransform compabile with Streams1 (Matteo Collina) nodejs/node#12380 * deps: - upgrade libuv to 1.11.0 (cjihrig) nodejs/node#11094 - upgrade libuv to 1.10.2 (cjihrig) nodejs/node#10717 - upgrade libuv to 1.10.1 (cjihrig) nodejs/node#9647 - upgrade libuv to 1.10.0 (cjihrig) nodejs/node#9267 * dns: - Implemented `{ttl: true}` for `resolve4()` and `resolve6()` (Ben Noordhuis) nodejs/node#9296 * process: - add NODE_NO_WARNINGS environment variable (cjihrig) nodejs/node#10842 * readline: - add option to stop duplicates in history (Danny Nemer) nodejs/node#2982 * src: - support "--" after "-e" as end-of-options (John Barboza) nodejs/node#10651 * tls: - new tls.TLSSocket() supports sec ctx options (Sam Roberts) nodejs/node#11005 - Allow obvious key/passphrase combinations. (Sam Roberts) nodejs/node#10294 PR-URL: nodejs/node#13059
1 parent c7b238c commit e5cdc26

File tree

4 files changed

+175
-9
lines changed

4 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.10.3">6.10.3</a></b><br/>
29+
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.11.0">6.11.0</a></b><br/>
30+
<a href="doc/changelogs/CHANGELOG_V6.md#6.10.3">6.10.3</a><br/>
3031
<a href="doc/changelogs/CHANGELOG_V6.md#6.10.2">6.10.2</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V6.md#6.10.1">6.10.1</a><br/>
3233
<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
@@ -245,7 +245,7 @@ used to enable FIPS-compliant crypto if Node.js is built with
245245

246246
### `--use-openssl-ca`, `--use-bundled-ca`
247247
<!-- YAML
248-
added: REPLACEME
248+
added: v6.11.0
249249
-->
250250

251251
Use OpenSSL's default CA store or use bundled Mozilla CA store as supplied by
@@ -271,7 +271,7 @@ Specify ICU data load path. (overrides `NODE_ICU_DATA`)
271271

272272
### `--`
273273
<!-- YAML
274-
added: REPLACEME
274+
added: v6.11.0
275275
-->
276276

277277
Indicate the end of node options. Pass the rest of the arguments to the script.
@@ -316,7 +316,7 @@ with small-icu support.
316316

317317
### `NODE_NO_WARNINGS=1`
318318
<!-- YAML
319-
added: REPLACEME
319+
added: v6.11.0
320320
-->
321321

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

355355
### `OPENSSL_CONF=file`
356356
<!-- YAML
357-
added: REPLACEME
357+
added: v6.11.0
358358
-->
359359

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

0 commit comments

Comments
 (0)