Skip to content

Commit 0f7dcba

Browse files
committed
2018-01-13, Version 6.13.0 'Boron' (LTS)
This LTS release comes with 109 commits, 17 of which are considered Semver-Minor. This includes 32 which are doc related, 29 which are test related, 8 which are build / tool related and 1 commit which updates a dependency. Notable Changes: * console: - added console.count() and console.clear() (James M Snell) #12678 * crypto: - expose ECDH class (Bryan English) #8188 - added cypto.randomFill() and crypto.randomFillSync() (Evan Lucas) #10209 - warn on invalid authentication tag length (Tobias Nießen) #17566 * deps: - upgrade libuv to 1.16.1 (cjihrig) #16835 * dgram: - added socket.setMulticastInterface() (Will Young) #7855 * http: - add agent.keepSocketAlive and agent.reuseSocket as to allow overridable keep-alive behavior of `Agent` (Fedor Indutny) #13005 * lib: - return this from net.Socket.end() (Sam Roberts) #13481 * module: - add builtinModules api that provides list of all builtin modules in Node (Jon Moss) #16386 * net: - return this from getConnections() (Sam Roberts) #13553 * promises: - more robust stringification for unhandled rejections (Timothy Gu) #13784 * repl: - improve require() autocompletion (Alexey Orlenko) #14409 * src: - add openssl-system-ca-path configure option (Daniel Bevenius) #16790 - add --use-bundled-ca --use-openssl-ca check (Daniel Bevenius) #12087 - add process.ppid (cjihrig) #16839 * tls: - accept `lookup` option for `tls.connect()` (Fedor Indutny) #12839 * tools, build: - a new macOS installer! (JP Wesselink) #15179 * url: - WHATWG URL api support (James M Snell) #7448 * util: - add %i and %f formatting specifiers (Roman Reiss) #10308 PR-URL: #18342
1 parent 691cd5a commit 0f7dcba

11 files changed

+180
-22
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.12.3">6.12.3</a></b><br/>
29+
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.13.0">6.13.0</a></b><br/>
30+
<a href="doc/changelogs/CHANGELOG_V6.md#6.12.3">6.12.3</a><br/>
3031
<a href="doc/changelogs/CHANGELOG_V6.md#6.12.2">6.12.2</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V6.md#6.12.1">6.12.1</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V6.md#6.12.0">6.12.0</a><br/>

doc/api/console.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ console.log('this will also print');
157157

158158
### console.clear()
159159
<!-- YAML
160-
added: REPLACEME
160+
added: v6.13.0
161161
-->
162162

163163
When `stdout` is a TTY, calling `console.clear()` will attempt to clear the
@@ -171,7 +171,7 @@ binary.
171171

172172
### console.count([label])
173173
<!-- YAML
174-
added: REPLACEME
174+
added: v6.13.0
175175
-->
176176

177177
* `label` {string} The display label for the counter. Defaults to `'default'`.
@@ -204,7 +204,7 @@ undefined
204204

205205
### console.countReset([label = 'default'])
206206
<!-- YAML
207-
added: REPLACEME
207+
added: v6.13.0
208208
-->
209209

210210
* `label` {string} The display label for the counter. Defaults to `'default'`.

doc/api/crypto.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1590,7 +1590,7 @@ time is right after boot, when the whole system is still low on entropy.
15901590

15911591
### crypto.randomFillSync(buffer[, offset][, size])
15921592
<!-- YAML
1593-
added: REPLACEME
1593+
added: v6.13.0
15941594
-->
15951595

15961596
* `buffer` {Buffer|Uint8Array} Must be supplied.
@@ -1615,7 +1615,7 @@ console.log(buf.toString('hex'));
16151615

16161616
### crypto.randomFill(buffer[, offset][, size], callback)
16171617
<!-- YAML
1618-
added: REPLACEME
1618+
added: v6.13.0
16191619
-->
16201620

16211621
* `buffer` {Buffer|Uint8Array} Must be supplied.

doc/api/dgram.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ packets may be sent to a local interface's broadcast address.
338338

339339
### socket.setMulticastInterface(multicastInterface)
340340
<!-- YAML
341-
added: REPLACEME
341+
added: v6.13.0
342342
-->
343343

344344
* `multicastInterface` {String}

doc/api/http.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ socket/stream from this function, or by passing the socket/stream to `callback`.
161161

162162
### agent.keepSocketAlive(socket)
163163
<!-- YAML
164-
added: REPLACEME
164+
added: v6.13.0
165165
-->
166166

167167
* `socket` {net.Socket}
@@ -180,7 +180,7 @@ it for use with the next request.
180180

181181
### agent.reuseSocket(socket, request)
182182
<!-- YAML
183-
added: REPLACEME
183+
added: v6.13.0
184184
-->
185185

186186
* `socket` {net.Socket}

doc/api/modules.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ via `require('module')`.
647647

648648
### module.builtinModules
649649
<!-- YAML
650-
added: REPLACEME
650+
added: v6.13.0
651651
-->
652652

653653
* {string[]}

doc/api/process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1330,7 +1330,7 @@ console.log(`This platform is ${process.platform}`);
13301330

13311331
## process.ppid
13321332
<!-- YAML
1333-
added: REPLACEME
1333+
added: v6.13.0
13341334
-->
13351335

13361336
* {integer}

doc/api/tls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ argument.
778778
<!-- YAML
779779
added: v0.11.3
780780
changes:
781-
- version: REPLACEME
781+
- version: v6.13.0
782782
pr-url: https://github.com/nodejs/node/pull/12839
783783
description: The `lookup` option is supported now.
784784
-->

doc/api/url.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const myURL =
7676

7777
## The WHATWG URL API
7878
<!-- YAML
79-
added: v7.0.0, REPLACEME
79+
added: v7.0.0, v6.13.0
8080
-->
8181

8282
### Class: URL
@@ -445,7 +445,7 @@ console.log(JSON.stringify(myURLs));
445445

446446
### Class: URLSearchParams
447447
<!-- YAML
448-
added: v7.5.0, REPLACEME
448+
added: v7.5.0, v6.13.0
449449
-->
450450

451451
The `URLSearchParams` API provides read and write access to the query of a
@@ -520,7 +520,7 @@ console.log(params.toString());
520520

521521
#### Constructor: new URLSearchParams(obj)
522522
<!-- YAML
523-
added: v7.10.0, REPLACEME
523+
added: v7.10.0, v6.13.0
524524
-->
525525

526526
* `obj` {Object} An object representing a collection of key-value pairs
@@ -546,7 +546,7 @@ console.log(params.toString());
546546

547547
#### Constructor: new URLSearchParams(iterable)
548548
<!-- YAML
549-
added: v7.10.0, REPLACEME
549+
added: v7.10.0, v6.13.0
550550
-->
551551

552552
* `iterable` {Iterable} An iterable object whose elements are key-value pairs
@@ -709,7 +709,7 @@ console.log(params.toString());
709709

710710
#### urlSearchParams.sort()
711711
<!-- YAML
712-
added: v7.7.0, REPLACEME
712+
added: v7.7.0, v6.13.0
713713
-->
714714

715715
Sort all existing name-value pairs in-place by their names. Sorting is done
@@ -762,7 +762,7 @@ for (const [name, value] of params) {
762762

763763
### url.domainToASCII(domain)
764764
<!-- YAML
765-
added: v7.4.0, REPLACEME
765+
added: v7.4.0, v6.13.0
766766
-->
767767

768768
* `domain` {string}
@@ -785,7 +785,7 @@ console.log(url.domainToASCII('xn--iñvalid.com'));
785785

786786
### url.domainToUnicode(domain)
787787
<!-- YAML
788-
added: v7.4.0, REPLACEME
788+
added: v7.4.0, v6.13.0
789789
-->
790790

791791
* `domain` {string}

doc/changelogs/CHANGELOG_V6.md

+157
Large diffs are not rendered by default.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
#define SRC_NODE_VERSION_H_
33

44
#define NODE_MAJOR_VERSION 6
5-
#define NODE_MINOR_VERSION 12
6-
#define NODE_PATCH_VERSION 4
5+
#define NODE_MINOR_VERSION 13
6+
#define NODE_PATCH_VERSION 0
77

88
#define NODE_VERSION_IS_LTS 1
99
#define NODE_VERSION_LTS_CODENAME "Boron"
1010

11-
#define NODE_VERSION_IS_RELEASE 0
11+
#define NODE_VERSION_IS_RELEASE 1
1212

1313
#ifndef NODE_STRINGIFY
1414
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)