Skip to content

Commit b22ee71

Browse files
committed
2019-03-06, Version 11.11.0 (Current)
Notable Changes * n-api: * Implement date object (Jarrod Connolly) #25917 * util: * Add compact depth mode for `util.inspect()` (Ruben Bridgewater) #26269 * worker: * Improve integration with native addons (Anna Henningsen) #26175 * MessagePort.prototype.onmessage takes arguments closer to the Web specification now (Anna Henningsen) #26082
1 parent f3d6207 commit b22ee71

File tree

4 files changed

+234
-5
lines changed

4 files changed

+234
-5
lines changed

CHANGELOG.md

+2-1
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_V11.md#11.10.1">11.10.1</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.11.0">11.11.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V11.md#11.10.1">11.10.1</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V11.md#11.10.0">11.10.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V11.md#11.9.0">11.9.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V11.md#11.8.0">11.8.0</a><br/>

doc/api/n-api.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1530,7 +1530,7 @@ structure, in most cases using a `TypedArray` will suffice.
15301530

15311531
#### napi_create_date
15321532
<!-- YAML
1533-
added: REPLACEME
1533+
added: v11.11.0
15341534
napiVersion: 4
15351535
-->
15361536

@@ -2175,7 +2175,7 @@ This API returns various properties of a `DataView`.
21752175

21762176
#### napi_get_date_value
21772177
<!-- YAML
2178-
added: REPLACEME
2178+
added: v11.11.0
21792179
napiVersion: 4
21802180
-->
21812181

@@ -2784,7 +2784,7 @@ This API checks if the `Object` passed in is a buffer.
27842784

27852785
### napi_is_date
27862786
<!-- YAML
2787-
added: REPLACEME
2787+
added: v11.11.0
27882788
napiVersion: 4
27892789
-->
27902790

doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ stream.write('With ES6');
388388
<!-- YAML
389389
added: v0.3.0
390390
changes:
391-
- version: REPLACEME
391+
- version: v11.11.0
392392
pr-url: https://github.com/nodejs/node/pull/26269
393393
description: The `compact` option accepts numbers for a new output mode.
394394
- version: REPLACEME

0 commit comments

Comments
 (0)