Skip to content

Commit 21e8f36

Browse files
committed
2019-09-24, Version 12.11.0 (Current)
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
1 parent edd7c57 commit 21e8f36

File tree

8 files changed

+187
-11
lines changed

8 files changed

+187
-11
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
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_V12.md#12.10.0">12.10.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.11.0">12.11.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V12.md#12.10.0">12.10.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V12.md#12.9.1">12.9.1</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V12.md#12.9.0">12.9.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V12.md#12.8.1">12.8.1</a><br/>

doc/api/crypto.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2383,7 +2383,7 @@ An array of supported digest functions can be retrieved using
23832383
<!-- YAML
23842384
added: v0.11.14
23852385
changes:
2386-
- version: REPLACEME
2386+
- version: v12.10.0
23872387
pr-url: https://github.com/nodejs/node/pull/29489
23882388
description: The `oaepLabel` option was added.
23892389
- version: v12.9.0
@@ -2470,7 +2470,7 @@ be passed instead of a public key.
24702470
<!-- YAML
24712471
added: v0.11.14
24722472
changes:
2473-
- version: REPLACEME
2473+
- version: v12.10.0
24742474
pr-url: https://github.com/nodejs/node/pull/29489
24752475
description: The `oaepLabel` option was added.
24762476
- version: v12.9.0

doc/api/inspector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Connects a session to the inspector back-end.
125125

126126
### session.connectToMainThread()
127127
<!-- YAML
128-
added: REPLACEME
128+
added: v12.10.0
129129
-->
130130

131131
Connects a session to the main thread inspector back-end. An exception will

doc/api/stream.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1776,7 +1776,7 @@ const myWritable = new Writable({
17761776
#### writable.\_write(chunk, encoding, callback)
17771777
<!-- YAML
17781778
changes:
1779-
- version: REPLACEME
1779+
- version: v12.10.0
17801780
pr-url: https://github.com/nodejs/node/pull/29639
17811781
description: _write() is optional when providing _writev().
17821782
-->

doc/api/tls.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,7 @@ for more information.
844844

845845
### tlsSocket.getSharedSigalgs()
846846
<!-- YAML
847-
added: REPLACEME
847+
added: v12.10.0
848848
-->
849849

850850
* Returns: {Array} List of signature algorithms shared between the server and
@@ -1358,7 +1358,7 @@ argument.
13581358
<!-- YAML
13591359
added: v0.11.13
13601360
changes:
1361-
- version: REPLACEME
1361+
- version: v12.10.0
13621362
pr-url: https://github.com/nodejs/node/pull/29598
13631363
description: Added `sigalgs` option to override supported signature
13641364
algorithms.

doc/api/util.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ property take precedence over `--trace-deprecation` and
185185
<!-- YAML
186186
added: v0.5.3
187187
changes:
188-
- version: REPLACEME
188+
- version: v12.10.0
189189
pr-url: https://github.com/nodejs/node/pull/29606
190190
description: The `%c` specifier is ignored now.
191191
- version: v11.4.0

doc/changelogs/CHANGELOG_V12.md

Lines changed: 175 additions & 0 deletions
Large diffs are not rendered by default.

src/node_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 12
26-
#define NODE_MINOR_VERSION 10
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 11
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)