Skip to content

Commit d3f8f90

Browse files
committed
2019-01-17, Version 11.7.0 (Current), @BridgeAR
Notable Changes * compression / zlib: * Added brotli support (Anna Henningsen and Zach Vacura) nodejs#24938 * console: * Added `inspectOptions` option (Ruben Bridgewater) nodejs#24978 * crypto: * Always accept private keys as public keys (Tobias Nießen) nodejs#25217 * deps: * Upgrade npm to v6.5.0 (Jordan Harband) nodejs#25234 * fs: * Use internalBinding('fs') internally instead of process.binding('fs') (Masashi Hirano) nodejs#22478 * http(s): * Support overriding http\\s.globalAgent (Roy Sommer) nodejs#25170 * util: * Inspect ArrayBuffers contents closely (Ruben Bridgewater) nodejs#25006 * worker: * Expose workers by default and remove `--experimental-worker` flag (Anna Henningsen) nodejs#25361 PR-URL: nodejs#25537
1 parent 20fdcad commit d3f8f90

File tree

7 files changed

+289
-18
lines changed

7 files changed

+289
-18
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ release.
2828
</tr>
2929
<tr>
3030
<td valign="top">
31-
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.6.0">11.6.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.7.0">11.7.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V11.md#11.6.0">11.6.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V11.md#11.5.0">11.5.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V11.md#11.4.0">11.4.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V11.md#11.3.0">11.3.0</a><br/>

doc/api/console.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ changes:
8888
pr-url: https://github.com/nodejs/node/pull/19372
8989
description: The `Console` constructor now supports an `options` argument,
9090
and the `colorMode` option was introduced.
91-
- version: REPLACEME
91+
- version: v11.7.0
9292
pr-url: https://github.com/nodejs/node/pull/24978
9393
description: The `inspectOptions` option is introduced.
9494
-->

doc/api/crypto.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1352,7 +1352,7 @@ This can be called many times with new data as it is streamed.
13521352
<!-- YAML
13531353
added: v0.1.92
13541354
changes:
1355-
- version: REPLACEME
1355+
- version: v11.7.0
13561356
pr-url: https://github.com/nodejs/node/pull/25217
13571357
description: The key can now be a private key.
13581358
- version: v8.0.0
@@ -1813,7 +1813,7 @@ must be an object with the properties described above.
18131813
<!-- YAML
18141814
added: v11.6.0
18151815
changes:
1816-
- version: REPLACEME
1816+
- version: v11.7.0
18171817
pr-url: https://github.com/nodejs/node/pull/25217
18181818
description: The `key` argument can now be a private key.
18191819
-->

doc/api/errors.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2133,7 +2133,7 @@ binary itself.
21332133
### ERR_UNKNOWN_STDIN_TYPE
21342134
<!-- YAML
21352135
added: v8.0.0
2136-
removed: REPLACEME
2136+
removed: v11.7.0
21372137
-->
21382138

21392139
An attempt was made to launch a Node.js process with an unknown `stdin` file
@@ -2144,7 +2144,7 @@ although it is possible for user code to trigger it.
21442144
### ERR_UNKNOWN_STREAM_TYPE
21452145
<!-- YAML
21462146
added: v8.0.0
2147-
removed: REPLACEME
2147+
removed: v11.7.0
21482148
-->
21492149

21502150
An attempt was made to launch a Node.js process with an unknown `stdout` or

doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ stream.write('With ES6');
388388
<!-- YAML
389389
added: v0.3.0
390390
changes:
391-
- version: REPLACEME
391+
- version: v11.7.0
392392
pr-url: https://github.com/nodejs/node/pull/25006
393393
description: ArrayBuffers now also show their binary contents.
394394
- version: v11.5.0

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: v11.7.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: v11.7.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: v11.7.0
442442
-->
443443

444444
Compress data using the Brotli algorithm.
445445

446446
## Class: zlib.BrotliDecompress
447447
<!-- YAML
448-
added: REPLACEME
448+
added: v11.7.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: v11.7.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: v11.7.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: v11.7.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: v11.7.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: v11.7.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: v11.7.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: v11.7.0
749749
-->
750750
* `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
751751
* `options` {brotli options}

0 commit comments

Comments
 (0)