Skip to content

Commit

Permalink
2019-01-17, Version 11.7.0 (Current), @BridgeAR
Browse files Browse the repository at this point in the history
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
  • Loading branch information
BridgeAR committed Jan 17, 2019
1 parent 8e84ccb commit 6b7b827
Show file tree
Hide file tree
Showing 8 changed files with 292 additions and 21 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -28,7 +28,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.6.0">11.6.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.7.0">11.7.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.6.0">11.6.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.5.0">11.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.4.0">11.4.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.3.0">11.3.0</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/console.md
Expand Up @@ -88,7 +88,7 @@ changes:
pr-url: https://github.com/nodejs/node/pull/19372
description: The `Console` constructor now supports an `options` argument,
and the `colorMode` option was introduced.
- version: REPLACEME
- version: v11.7.0
pr-url: https://github.com/nodejs/node/pull/24978
description: The `inspectOptions` option is introduced.
-->
Expand Down
4 changes: 2 additions & 2 deletions doc/api/crypto.md
Expand Up @@ -1352,7 +1352,7 @@ This can be called many times with new data as it is streamed.
<!-- YAML
added: v0.1.92
changes:
- version: REPLACEME
- version: v11.7.0
pr-url: https://github.com/nodejs/node/pull/25217
description: The key can now be a private key.
- version: v8.0.0
Expand Down Expand Up @@ -1813,7 +1813,7 @@ must be an object with the properties described above.
<!-- YAML
added: v11.6.0
changes:
- version: REPLACEME
- version: v11.7.0
pr-url: https://github.com/nodejs/node/pull/25217
description: The `key` argument can now be a private key.
-->
Expand Down
4 changes: 2 additions & 2 deletions doc/api/errors.md
Expand Up @@ -2070,7 +2070,7 @@ binary itself.
### ERR_UNKNOWN_STDIN_TYPE
<!-- YAML
added: v8.0.0
removed: REPLACEME
removed: v11.7.0
-->

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

An attempt was made to launch a Node.js process with an unknown `stdout` or
Expand Down
2 changes: 1 addition & 1 deletion doc/api/util.md
Expand Up @@ -375,7 +375,7 @@ stream.write('With ES6');
<!-- YAML
added: v0.3.0
changes:
- version: REPLACEME
- version: v11.7.0
pr-url: https://github.com/nodejs/node/pull/25006
description: ArrayBuffers now also show their binary contents.
- version: v11.5.0
Expand Down
22 changes: 11 additions & 11 deletions doc/api/zlib.md
Expand Up @@ -304,7 +304,7 @@ Compression strategy.

### Brotli constants
<!-- YAML
added: REPLACEME
added: v11.7.0
-->

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

## Class: BrotliOptions
<!-- YAML
added: REPLACEME
added: v11.7.0
-->

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

## Class: zlib.BrotliCompress
<!-- YAML
added: REPLACEME
added: v11.7.0
-->

Compress data using the Brotli algorithm.

## Class: zlib.BrotliDecompress
<!-- YAML
added: REPLACEME
added: v11.7.0
-->

Decompress data using the Brotli algorithm.
Expand Down Expand Up @@ -526,7 +526,7 @@ the header.
<!-- YAML
added: v0.5.8
changes:
- version: REPLACEME
- version: v11.7.0
pr-url: https://github.com/nodejs/node/pull/24939
description: This class was renamed from `Zlib` to `ZlibBase`.
-->
Expand Down Expand Up @@ -620,7 +620,7 @@ Provides an object enumerating Zlib-related constants.

## zlib.createBrotliCompress([options])
<!-- YAML
added: REPLACEME
added: v11.7.0
-->

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

## zlib.createBrotliDecompress([options])
<!-- YAML
added: REPLACEME
added: v11.7.0
-->

* `options` {brotli options}
Expand Down Expand Up @@ -720,15 +720,15 @@ without a callback.

### zlib.brotliCompress(buffer[, options], callback)
<!-- YAML
added: REPLACEME
added: v11.7.0
-->
* `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
* `options` {brotli options}
* `callback` {Function}

### zlib.brotliCompressSync(buffer[, options])
<!-- YAML
added: REPLACEME
added: v11.7.0
-->
* `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
* `options` {brotli options}
Expand All @@ -737,15 +737,15 @@ Compress a chunk of data with [`BrotliCompress`][].

### zlib.brotliDecompress(buffer[, options], callback)
<!-- YAML
added: REPLACEME
added: v11.7.0
-->
* `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
* `options` {brotli options}
* `callback` {Function}

### zlib.brotliDecompressSync(buffer[, options])
<!-- YAML
added: REPLACEME
added: v11.7.0
-->
* `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
* `options` {brotli options}
Expand Down
270 changes: 270 additions & 0 deletions doc/changelogs/CHANGELOG_V11.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 11
#define NODE_MINOR_VERSION 6
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 7
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit 6b7b827

Please sign in to comment.