Skip to content

Commit 6b7b827

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

File tree

8 files changed

+292
-21
lines changed

8 files changed

+292
-21
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
@@ -2070,7 +2070,7 @@ binary itself.
20702070
### ERR_UNKNOWN_STDIN_TYPE
20712071
<!-- YAML
20722072
added: v8.0.0
2073-
removed: REPLACEME
2073+
removed: v11.7.0
20742074
-->
20752075

20762076
An attempt was made to launch a Node.js process with an unknown `stdin` file
@@ -2081,7 +2081,7 @@ although it is possible for user code to trigger it.
20812081
### ERR_UNKNOWN_STREAM_TYPE
20822082
<!-- YAML
20832083
added: v8.0.0
2084-
removed: REPLACEME
2084+
removed: v11.7.0
20852085
-->
20862086

20872087
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
@@ -375,7 +375,7 @@ stream.write('With ES6');
375375
<!-- YAML
376376
added: v0.3.0
377377
changes:
378-
- version: REPLACEME
378+
- version: v11.7.0
379379
pr-url: https://github.com/nodejs/node/pull/25006
380380
description: ArrayBuffers now also show their binary contents.
381381
- 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}

doc/changelogs/CHANGELOG_V11.md

+270
Large diffs are not rendered by default.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 11
26-
#define NODE_MINOR_VERSION 6
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 7
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)