Skip to content

Commit

Permalink
2017-05-02, Version 7.10.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

* **crypto**:
  - add randomFill and randomFillSync (Evan Lucas)
    #10209
* **meta**: Added new collaborators
  - add lucamaraschi to collaborators (Luca Maraschi)
    #12538
  - add DavidCai1993 to collaborators (David Cai)
    #12435
  - add jkrems to collaborators (Jan Krems)
    #12427
  - add AnnaMag to collaborators (AnnaMag)
    #12414
* **process**:
  - fix crash when Promise rejection is a Symbol (Cameron Little)
    #11640
* **url**:
  - make WHATWG URL more spec compliant (Timothy Gu)
    #12507
* **v8**:
  - fix stack overflow in recursive method (Ben Noordhuis)
    #12460
  - fix build errors with g++ 7 (Ben Noordhuis)
    #12392

PR-URL: #12775
  • Loading branch information
evanlucas committed May 2, 2017
1 parent 141c347 commit 84ed5f8
Show file tree
Hide file tree
Showing 4 changed files with 209 additions and 6 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_V7.md#7.9.0">7.9.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V7.md#7.10.0">7.10.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V7.md#7.9.0">7.9.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V7.md#7.8.0">7.8.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V7.md#7.7.4">7.7.4</a><br/>
<a href="doc/changelogs/CHANGELOG_V7.md#7.7.3">7.7.3</a><br/>
Expand Down
4 changes: 2 additions & 2 deletions doc/api/crypto.md
Expand Up @@ -1586,7 +1586,7 @@ time is right after boot, when the whole system is still low on entropy.

### crypto.randomFillSync(buffer[, offset][, size])
<!-- YAML
added: REPLACEME
added: v7.10.0
-->

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

### crypto.randomFill(buffer[, offset][, size], callback)
<!-- YAML
added: REPLACEME
added: v7.10.0
-->

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

0 comments on commit 84ed5f8

Please sign in to comment.