Skip to content

Commit

Permalink
2019-07-03, Version 12.6.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

* build:
  * Experimental support for building Node.js on MIPS architecture
    is back. #27992
* child_process:
  * The promisified versions of `child_process.exec` and
    `child_process.execFile` now both return a `Promise` which has the
	child instance attached to their `child` property.
	#28325
* deps:
  * Updated libuv to 1.30.1. #28449,
    #28511
    * Support for the Haiku platform has been added.
    * The maximum `UV_THREADPOOL_SIZE` has been increased from 128 to
	  1024.
    * `uv_fs_copyfile()` now works properly when the source and
	  destination files are the same.
* process:
  * A new method, `process.resourceUsage()` was added. It returns
    resource usage for the current process, such as CPU time.
	#28018
* src:
  * Fixed an issue related to stdio that could lead to a crash of the
    process in some circumstances.
	#28490
* stream:
  * Added a `writableFinished` property to writable streams. It
    indicates that all the data has been flushed to the underlying
	system. #28007
* worker:
  * Fixed an issue that prevented worker threads to listen for data on
    stdin. #28153
* meta:
  * Added Jiawen Geng (https://github.com/gengjiawen) to collaborators.
    #28322

PR-URL: #28508
  • Loading branch information
targos committed Jul 3, 2019
1 parent d3b10f6 commit fcf8fe9
Show file tree
Hide file tree
Showing 5 changed files with 182 additions and 4 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.5.0">12.5.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.6.0">12.6.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.5.0">12.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.4.0">12.4.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.3.1">12.3.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.3.0">12.3.0</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/n-api.md
Expand Up @@ -4655,7 +4655,7 @@ prevent the event loop from exiting. The APIs `napi_ref_threadsafe_function` and
added: v10.6.0
napiVersion: 4
changes:
- version: REPLACEME
- version: v12.6.0
pr-url: https://github.com/nodejs/node/pull/27791
description: Made `func` parameter optional with custom `call_js_cb`.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/process.md
Expand Up @@ -1818,7 +1818,7 @@ Additional documentation is available in the [report documentation][].

## process.resourceUsage()
<!-- YAML
added: REPLACEME
added: v12.6.0
-->

* Returns: {Object}
Expand Down
2 changes: 1 addition & 1 deletion doc/api/stream.md
Expand Up @@ -505,7 +505,7 @@ the status of the `highWaterMark`.

##### writable.writableFinished
<!-- YAML
added: REPLACEME
added: v12.6.0
-->

* {boolean}
Expand Down

0 comments on commit fcf8fe9

Please sign in to comment.