Skip to content

Commit 308b8b9

Browse files
committed
2019-05-28, Version 10.16.0 'Dubnium' (LTS)
Notable changes: - **deps**: - update ICU to 64.2 (Ujjwal Sharma) [#27361](#27361) - upgrade npm to 6.9.0 (Kat Marchán) [#26244](#26244) - upgrade openssl sources to 1.1.1b (Sam Roberts) [#26327](#26327) - upgrade to libuv 1.28.0 (cjihrig) [#27241](#27241) - **events**: - add once method to use promises with EventEmitter (Matteo Collina) [#26078](#26078) - **n-api**: - mark thread-safe function as stable (Gabriel Schulhof) [#25556](#25556) - **repl**: - support top-level for-await-of (Shelley Vohr) [#23841](#23841) - **zlib**: - add brotli support (Anna Henningsen) [#24938](#24938) PR-URL: #27514
1 parent 99e969e commit 308b8b9

13 files changed

+398
-27
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ release.
3333
<a href="doc/changelogs/CHANGELOG_V12.md#12.0.0">12.0.0</a><br/>
3434
</td>
3535
<td valign="top">
36-
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.15.3">10.15.3</a></b><br/>
36+
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.16.0">10.16.0</a></b><br/>
37+
<a href="doc/changelogs/CHANGELOG_V10.md#10.15.3">10.15.3</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V10.md#10.15.2">10.15.2</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V10.md#10.15.1">10.15.1</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V10.md#10.15.0">10.15.0</a><br/>

doc/api/events.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ emitter.emit('log');
655655

656656
## events.once(emitter, name)
657657
<!-- YAML
658-
added: REPLACEME
658+
added: v10.16.0
659659
-->
660660
* `emitter` {EventEmitter}
661661
* `name` {string}

doc/api/fs.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ argument to `fs.createReadStream()`. If `path` is passed as a string, then
490490

491491
### readStream.pending
492492
<!-- YAML
493-
added: REPLACEME
493+
added: v10.16.0
494494
-->
495495

496496
* {boolean}
@@ -845,7 +845,7 @@ argument to [`fs.createWriteStream()`][]. If `path` is passed as a string, then
845845

846846
### writeStream.pending
847847
<!-- YAML
848-
added: REPLACEME
848+
added: v10.16.0
849849
-->
850850

851851
* {boolean}

doc/api/http2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1014,7 +1014,7 @@ the `'aborted'` event will have been emitted.
10141014

10151015
#### http2stream.bufferSize
10161016
<!-- YAML
1017-
added: REPLACEME
1017+
added: v10.16.0
10181018
-->
10191019
* {number}
10201020

doc/api/n-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ available to the module code.
150150
| v6.x | | | v6.14.2* | |
151151
| v8.x | v8.0.0* | v8.10.0* | v8.11.2 | |
152152
| v9.x | v9.0.0* | v9.3.0* | v9.11.0* | |
153-
| v10.x | | | v10.0.0 | REPLACEME |
153+
| v10.x | | | v10.0.0 | v10.16.0 |
154154
| v11.x | | | v11.0.0 | v11.8.0 |
155155

156156
\* Indicates that the N-API version was released as experimental

doc/api/net.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ Useful to throttle back an upload.
727727

728728
### socket.pending
729729
<!-- YAML
730-
added: REPLACEME
730+
added: v10.16.0
731731
-->
732732

733733
* {boolean}

doc/api/readline.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ The `rl.write()` method will write the data to the `readline` `Interface`'s
311311

312312
### rl\[Symbol.asyncIterator\]()
313313
<!-- YAML
314-
added: REPLACEME
314+
added: v10.16.0
315315
-->
316316

317317
> Stability: 1 - Experimental

doc/api/stream.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1519,7 +1519,7 @@ changes:
15191519
pr-url: https://github.com/nodejs/node/pull/18438
15201520
description: >
15211521
Add `emitClose` option to specify if `'close'` is emitted on destroy
1522-
- version: REPLACEME
1522+
- version: v10.16.0
15231523
pr-url: https://github.com/nodejs/node/pull/22795
15241524
description: >
15251525
Add `autoDestroy` option to automatically `destroy()` the stream
@@ -1791,7 +1791,7 @@ constructor and implement the `readable._read()` method.
17911791
#### new stream.Readable([options])
17921792
<!-- YAML
17931793
changes:
1794-
- version: REPLACEME
1794+
- version: v10.16.0
17951795
pr-url: https://github.com/nodejs/node/pull/22795
17961796
description: >
17971797
Add `autoDestroy` option to automatically `destroy()` the stream

doc/api/tls.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -963,7 +963,7 @@ similar to:
963963
<!-- YAML
964964
added: v0.11.3
965965
changes:
966-
- version: REPLACEME
966+
- version: v10.16.0
967967
pr-url: https://github.com/nodejs/node/pull/25517
968968
description: The `timeout` option is supported now.
969969
- version: v8.0.0
@@ -1112,7 +1112,7 @@ argument.
11121112
<!-- YAML
11131113
added: v0.11.13
11141114
changes:
1115-
- version: REPLACEME
1115+
- version: v10.16.0
11161116
pr-url: https://github.com/nodejs/node/pull/24405
11171117
description: The `minVersion` and `maxVersion` can be used to restrict
11181118
the allowed TLS protocol versions.

doc/api/tty.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ of columns and rows in the corresponding [TTY](tty.html).
178178

179179
### writeStream.hasColors([count][, env])
180180
<!-- YAML
181-
added: REPLACEME
181+
added: v10.16.0
182182
-->
183183

184184
* `count` {integer} The number of colors that are requested (minimum 2).

doc/api/zlib.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ Compression strategy.
304304

305305
### Brotli constants
306306
<!-- YAML
307-
added: REPLACEME
307+
added: v10.16.0
308308
-->
309309

310310
There are several options and other constants available for Brotli-based
@@ -411,7 +411,7 @@ See the description of `deflateInit2` and `inflateInit2` at
411411

412412
## Class: BrotliOptions
413413
<!-- YAML
414-
added: REPLACEME
414+
added: v10.16.0
415415
-->
416416

417417
<!--type=misc-->
@@ -438,14 +438,14 @@ const stream = zlib.createBrotliCompress({
438438

439439
## Class: zlib.BrotliCompress
440440
<!-- YAML
441-
added: REPLACEME
441+
added: v10.16.0
442442
-->
443443

444444
Compress data using the Brotli algorithm.
445445

446446
## Class: zlib.BrotliDecompress
447447
<!-- YAML
448-
added: REPLACEME
448+
added: v10.16.0
449449
-->
450450

451451
Decompress data using the Brotli algorithm.
@@ -526,7 +526,7 @@ the header.
526526
<!-- YAML
527527
added: v0.5.8
528528
changes:
529-
- version: REPLACEME
529+
- version: v10.16.0
530530
pr-url: https://github.com/nodejs/node/pull/24939
531531
description: This class was renamed from `Zlib` to `ZlibBase`.
532532
-->
@@ -620,7 +620,7 @@ Provides an object enumerating Zlib-related constants.
620620

621621
## zlib.createBrotliCompress([options])
622622
<!-- YAML
623-
added: REPLACEME
623+
added: v10.16.0
624624
-->
625625

626626
* `options` {brotli options}
@@ -629,7 +629,7 @@ Creates and returns a new [`BrotliCompress`][] object.
629629

630630
## zlib.createBrotliDecompress([options])
631631
<!-- YAML
632-
added: REPLACEME
632+
added: v10.16.0
633633
-->
634634

635635
* `options` {brotli options}
@@ -720,15 +720,15 @@ without a callback.
720720

721721
### zlib.brotliCompress(buffer[, options], callback)
722722
<!-- YAML
723-
added: REPLACEME
723+
added: v10.16.0
724724
-->
725725
* `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
726726
* `options` {brotli options}
727727
* `callback` {Function}
728728

729729
### zlib.brotliCompressSync(buffer[, options])
730730
<!-- YAML
731-
added: REPLACEME
731+
added: v10.16.0
732732
-->
733733
* `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
734734
* `options` {brotli options}
@@ -737,15 +737,15 @@ Compress a chunk of data with [`BrotliCompress`][].
737737

738738
### zlib.brotliDecompress(buffer[, options], callback)
739739
<!-- YAML
740-
added: REPLACEME
740+
added: v10.16.0
741741
-->
742742
* `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
743743
* `options` {brotli options}
744744
* `callback` {Function}
745745

746746
### zlib.brotliDecompressSync(buffer[, options])
747747
<!-- YAML
748-
added: REPLACEME
748+
added: v10.16.0
749749
-->
750750
* `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
751751
* `options` {brotli options}

0 commit comments

Comments
 (0)