Skip to content

Commit

Permalink
2019-05-21, Version 12.3.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

* process:
  * Log errors using `util.inspect` in case of fatal exceptions
    (Ruben Bridgewater) #27243
* repl:
  * Add `process.on('uncaughtException')` support (Ruben Bridgewater)
    #27151
* stream:
  * Implemented `Readable.from` async iterator utility (Guy Bedford)
    #27660
* tls:
  * Expose built-in root certificates (Ben Noordhuis)
    #26415
  * Support `net.Server` options (Luigi Pinca)
    #27665
  * Expose `keylog` event on TLSSocket (Alba Mendez)
    #27654
* worker:
  * Added the ability to unshift messages from the `MessagePort`
    (Anna Henningsen) #27294
  • Loading branch information
BridgeAR committed May 21, 2019
1 parent 9f5b690 commit e0afe0e
Show file tree
Hide file tree
Showing 8 changed files with 164 additions and 13 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -29,7 +29,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.2.0">12.2.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.3.0">12.3.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.2.0">12.2.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.1.0">12.1.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.0.0">12.0.0</a><br/>
</td>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/deprecations.md
Expand Up @@ -2456,7 +2456,7 @@ Module.createRequireFromPath() is deprecated. Please use [`module.createRequire(
### DEP0131: Legacy HTTP parser
<!-- YAML
changes:
- version: REPLACEME
- version: v12.3.0
pr-url: https://github.com/nodejs/node/pull/27498
description: Documentation-only.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/repl.md
Expand Up @@ -140,7 +140,7 @@ global or scoped variable, the input `fs` will be evaluated on-demand as
#### Global Uncaught Exceptions
<!-- YAML
changes:
- version: REPLACEME
- version: v12.3.0
pr-url: https://github.com/nodejs/node/pull/27151
description: The `'uncaughtException'` event is from now on triggered if the
repl is used as standalone program.
Expand Down
4 changes: 2 additions & 2 deletions doc/api/stream.md
Expand Up @@ -504,7 +504,7 @@ the status of the `highWaterMark`.

##### writable.writableObjectMode
<!-- YAML
added: REPLACEME
added: v12.3.0
-->

Getter for the property `objectMode` of a given `Writable` stream.
Expand Down Expand Up @@ -1098,7 +1098,7 @@ the status of the `highWaterMark`.

##### readable.readableObjectMode
<!-- YAML
added: REPLACEME
added: v12.3.0
-->

Getter for the property `objectMode` of a given `Readable` stream.
Expand Down
8 changes: 4 additions & 4 deletions doc/api/tls.md
Expand Up @@ -336,7 +336,7 @@ connections using TLS or SSL.

### Event: 'keylog'
<!-- YAML
added: REPLACEME
added: v12.3.0
-->

* `line` {Buffer} Line of ASCII text, in NSS `SSLKEYLOGFILE` format.
Expand Down Expand Up @@ -654,7 +654,7 @@ Construct a new `tls.TLSSocket` object from an existing TCP socket.

### Event: 'keylog'
<!-- YAML
added: REPLACEME
added: v12.3.0
-->

* `line` {Buffer} Line of ASCII text, in NSS `SSLKEYLOGFILE` format.
Expand Down Expand Up @@ -1486,7 +1486,7 @@ publicly trusted list of CAs as given in
<!-- YAML
added: v0.3.2
changes:
- version: REPLACEME
- version: v12.3.0
pr-url: https://github.com/nodejs/node/pull/27665
description: The `options` parameter now supports `net.createServer()`
options.
Expand Down Expand Up @@ -1602,7 +1602,7 @@ console.log(tls.getCiphers()); // ['aes128-gcm-sha256', 'aes128-sha', ...]

## tls.rootCertificates
<!-- YAML
added: REPLACEME
added: v12.3.0
-->

* {string[]}
Expand Down
2 changes: 1 addition & 1 deletion doc/api/worker_threads.md
Expand Up @@ -127,7 +127,7 @@ if (isMainThread) {

## worker.receiveMessageOnPort(port)
<!-- YAML
added: REPLACEME
added: v12.3.0
-->

* `port` {MessagePort}
Expand Down
150 changes: 150 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 2
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 3
#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 e0afe0e

Please sign in to comment.