Skip to content

Commit 871fb5a

Browse files
committed
2017-05-02, Version 7.10.0 (Current)
Notable changes: * **crypto**: - add randomFill and randomFillSync (Evan Lucas) nodejs#10209 * **meta**: Added new collaborators - add lucamaraschi to collaborators (Luca Maraschi) nodejs#12538 - add DavidCai1993 to collaborators (David Cai) nodejs#12435 - add jkrems to collaborators (Jan Krems) nodejs#12427 - add AnnaMag to collaborators (AnnaMag) nodejs#12414 * **process**: - fix crash when Promise rejection is a Symbol (Cameron Little) nodejs#11640 * **url**: - make WHATWG URL more spec compliant (Timothy Gu) nodejs#12507 * **v8**: - fix stack overflow in recursive method (Ben Noordhuis) nodejs#12460 - fix build errors with g++ 7 (Ben Noordhuis) nodejs#12392 PR-URL: nodejs#12775
1 parent 04796ee commit 871fb5a

File tree

3 files changed

+206
-3
lines changed

3 files changed

+206
-3
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_V7.md#7.9.0">7.9.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V7.md#7.10.0">7.10.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V7.md#7.9.0">7.9.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V7.md#7.8.0">7.8.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V7.md#7.7.4">7.7.4</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V7.md#7.7.3">7.7.3</a><br/>

doc/api/crypto.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1717,7 +1717,7 @@ time is right after boot, when the whole system is still low on entropy.
17171717

17181718
### crypto.randomFillSync(buffer[, offset][, size])
17191719
<!-- YAML
1720-
added: REPLACEME
1720+
added: v7.10.0
17211721
-->
17221722

17231723
* `buffer` {Buffer|Uint8Array} Must be supplied.
@@ -1742,7 +1742,7 @@ console.log(buf.toString('hex'));
17421742

17431743
### crypto.randomFill(buffer[, offset][, size], callback)
17441744
<!-- YAML
1745-
added: REPLACEME
1745+
added: v7.10.0
17461746
-->
17471747

17481748
* `buffer` {Buffer|Uint8Array} Must be supplied.

0 commit comments

Comments
 (0)