Skip to content

Commit

Permalink
2019-09-24, Version 12.11.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

* crypto:
  * Add `oaepLabel` option #29489
* deps:
  * Update V8 to 7.7.299.11 #28918
    * More efficient memory handling
    * Stack trace serialization got faster
    * The `Intl.NumberFormat` API gained new functionality
    * For more information: https://v8.dev/blog/v8-release-77
* events:
  * Add support for `EventTarget` in `once`
    #29498
* fs:
  * Expose memory file mapping flag `UV_FS_O_FILEMAP`
    #29260
* inspector:
  * New API - `Session.connectToMainThread`
    #28870
* process:
  * Initial SourceMap support via `env.NODE_V8_COVERAGE`
    #28960
* stream:
  * Make `_write()` optional when `_writev()` is implemented
    #29639
* tls:
  * Add option to override signature algorithms
    #29598
* util:
  * Add `encodeInto` to `TextEncoder`
    #29524
* worker:
  * The `worker_thread` module is now stable
    #29512
  • Loading branch information
BridgeAR committed Sep 24, 2019
1 parent edd7c57 commit 21e8f36
Show file tree
Hide file tree
Showing 8 changed files with 187 additions and 11 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_V12.md#12.10.0">12.10.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.11.0">12.11.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.10.0">12.10.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.9.1">12.9.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.9.0">12.9.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.8.1">12.8.1</a><br/>
Expand Down
4 changes: 2 additions & 2 deletions doc/api/crypto.md
Expand Up @@ -2383,7 +2383,7 @@ An array of supported digest functions can be retrieved using
<!-- YAML
added: v0.11.14
changes:
- version: REPLACEME
- version: v12.10.0
pr-url: https://github.com/nodejs/node/pull/29489
description: The `oaepLabel` option was added.
- version: v12.9.0
Expand Down Expand Up @@ -2470,7 +2470,7 @@ be passed instead of a public key.
<!-- YAML
added: v0.11.14
changes:
- version: REPLACEME
- version: v12.10.0
pr-url: https://github.com/nodejs/node/pull/29489
description: The `oaepLabel` option was added.
- version: v12.9.0
Expand Down
2 changes: 1 addition & 1 deletion doc/api/inspector.md
Expand Up @@ -125,7 +125,7 @@ Connects a session to the inspector back-end.

### session.connectToMainThread()
<!-- YAML
added: REPLACEME
added: v12.10.0
-->

Connects a session to the main thread inspector back-end. An exception will
Expand Down
2 changes: 1 addition & 1 deletion doc/api/stream.md
Expand Up @@ -1776,7 +1776,7 @@ const myWritable = new Writable({
#### writable.\_write(chunk, encoding, callback)
<!-- YAML
changes:
- version: REPLACEME
- version: v12.10.0
pr-url: https://github.com/nodejs/node/pull/29639
description: _write() is optional when providing _writev().
-->
Expand Down
4 changes: 2 additions & 2 deletions doc/api/tls.md
Expand Up @@ -844,7 +844,7 @@ for more information.

### tlsSocket.getSharedSigalgs()
<!-- YAML
added: REPLACEME
added: v12.10.0
-->

* Returns: {Array} List of signature algorithms shared between the server and
Expand Down Expand Up @@ -1358,7 +1358,7 @@ argument.
<!-- YAML
added: v0.11.13
changes:
- version: REPLACEME
- version: v12.10.0
pr-url: https://github.com/nodejs/node/pull/29598
description: Added `sigalgs` option to override supported signature
algorithms.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/util.md
Expand Up @@ -185,7 +185,7 @@ property take precedence over `--trace-deprecation` and
<!-- YAML
added: v0.5.3
changes:
- version: REPLACEME
- version: v12.10.0
pr-url: https://github.com/nodejs/node/pull/29606
description: The `%c` specifier is ignored now.
- version: v11.4.0
Expand Down
175 changes: 175 additions & 0 deletions doc/changelogs/CHANGELOG_V12.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 12
#define NODE_MINOR_VERSION 10
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 11
#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 21e8f36

Please sign in to comment.