<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Node.js Blog]]></title><description><![CDATA[Node.js Blog]]></description><link>https://nodejs.org/en/</link><generator>metalsmith-feed</generator><lastBuildDate>Sat, 09 Jul 2016 07:17:41 GMT</lastBuildDate><atom:link href="https://nodejs.org/en/feed/blog.xml" rel="self" type="application/rss+xml"/><author><![CDATA[Node.js Foundation]]></author><docs/><item><title><![CDATA[Weekly Update - July 8th, 2016]]></title><description><![CDATA[<h3 id="header-node-v6-3-0-current-release">Node v6.3.0 (Current) Release<a name="node-v6-3-0-current-release" class="anchor" href="#node-v6-3-0-current-release" aria-labelledby="header-node-v6-3-0-current-release"></a></h3><ul>
<li><a href="https://nodejs.org/en/blog/release/v6.3.0/">Node v6.3.0 (Current)</a>. Complete changelog from previous releases can be found <a href="https://github.com/nodejs/node/blob/master/CHANGELOG.md">on GitHub</a>.</li>
</ul>
<h3 id="header-node-js-foundation-announces-keynotes-and-programming-for-node-js-interactive-europe">Node.js Foundation Announces Keynotes and Programming for Node.js Interactive Europe<a name="node-js-foundation-announces-keynotes-and-programming-for-node-js-interactive-europe" class="anchor" href="#node-js-foundation-announces-keynotes-and-programming-for-node-js-interactive-europe" aria-labelledby="header-node-js-foundation-announces-keynotes-and-programming-for-node-js-interactive-europe"></a></h3><p>Event will showcase workshops, community and technical talks, and use cases that will inform the future development of Node.js and JavaScript.</p>
<p>See <a href="https://nodejs.org/en/blog/announcements/interactive-2016-ams/">https://nodejs.org/en/blog/announcements/interactive-2016-ams/</a> for more information.</p>
<h3 id="header-binaries-for-linux-on-power-systems">Binaries for Linux on Power Systems<a name="binaries-for-linux-on-power-systems" class="anchor" href="#binaries-for-linux-on-power-systems" aria-labelledby="header-binaries-for-linux-on-power-systems"></a></h3><p>Community downloads now include binaries for Linux on Power Systems with big endian in addition to the existing little endian binaries.</p>
<p>See <a href="https://nodejs.org/en/download/">https://nodejs.org/en/download/</a>.</p>
<h3 id="header-community-updates">Community Updates<a name="community-updates" class="anchor" href="#community-updates" aria-labelledby="header-community-updates"></a></h3><ul>
<li><a href="https://blog.risingstack.com/node-hero-node-js-debugging-tutorial/">Node Hero - Debugging Node.js Applications</a>: you can learn how to get started with Node.js and deliver software products using it.
If you have spotted or written something about Node.js, do come over to our <a href="https://github.com/nodejs/evangelism">Evangelism team repo</a> and suggest it on the <a href="https://github.com/nodejs/evangelism/issues">Issues page</a>, specifically the Weekly Updates issue.</li>
</ul>
<h3 id="header-upcoming-events">Upcoming Events<a name="upcoming-events" class="anchor" href="#upcoming-events" aria-labelledby="header-upcoming-events"></a></h3><ul>
<li><a href="http://www.nodeconf.eu/">NodeConf EU 2016</a>: Sunday 16th - Thursday 20th October, Lyrath Estate Kilkenny</li>
<li><a href="https://2016.nodeconf.com.ar">NodeConf Argentina</a>: 18 - 19 November, 2016</li>
</ul>
<p>Have an event about Node.js coming up? You can put your events here through the <a href="https://github.com/nodejs/evangelism">Evangelism team repo</a> and announce it in the <a href="https://github.com/nodejs/evangelism/issues">Issues page</a>, specifically the Weekly Updates issue.</p>
]]></description><link>https://nodejs.org/en/blog/weekly-updates/weekly-update.2016-07-08</link><guid isPermaLink="true">https://nodejs.org/en/blog/weekly-updates/weekly-update.2016-07-08</guid><dc:creator><![CDATA[Minwoo Jung (github.com/JungMinu)]]></dc:creator><pubDate>Fri, 08 Jul 2016 12:00:00 GMT</pubDate></item><item><title><![CDATA[Node v6.3.0 (Current)]]></title><description><![CDATA[<h3 id="header-notable-changes">Notable changes<a name="notable-changes" class="anchor" href="#notable-changes" aria-labelledby="header-notable-changes"></a></h3><ul>
<li><strong>buffer</strong>: Added <code>buffer.swap64()</code> to complement <code>swap16()</code> &amp; <code>swap32()</code>. (Zach Bjornson) <a href="https://github.com/nodejs/node/pull/7157">#7157</a></li>
<li><strong>build</strong>: New <code>configure</code> options have been added for building Node.js as a shared library. (Stefan Budeanu) <a href="https://github.com/nodejs/node/pull/6994">#6994</a><ul>
<li>The options are: <code>--shared</code>, <code>--without-v8-platform</code> &amp; <code>--without-bundled-v8</code>.</li>
</ul>
</li>
<li><strong>crypto</strong>: Root certificates have been updated. (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7363">#7363</a></li>
<li><strong>debugger</strong>: The server address is now configurable via <code>--debug=&lt;address&gt;:&lt;port&gt;</code>. (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/3316">#3316</a></li>
<li><strong>npm</strong>: Upgraded npm to v3.10.3 (Kat Marchán) <a href="https://github.com/nodejs/node/pull/7515">#7515</a> &amp; (Rebecca Turner) <a href="https://github.com/nodejs/node/pull/7410">#7410</a></li>
<li><strong>readline</strong>: Added the <code>prompt</code> option to the readline constructor. (Evan Lucas) <a href="https://github.com/nodejs/node/pull/7125">#7125</a></li>
<li><strong>repl / vm</strong>: <code>sigint</code>/<code>ctrl+c</code> will now break out of infinite loops without stopping the Node.js instance. (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6635">#6635</a></li>
<li><strong>src</strong>:<ul>
<li>Added a <code>node::FreeEnvironment</code> public C++ API. (Cheng Zhao) <a href="https://github.com/nodejs/node/pull/3098">#3098</a></li>
<li>Refactored <code>require(&#39;constants&#39;)</code>, constants are now available directly from their respective modules. (James M Snell) <a href="https://github.com/nodejs/node/pull/6534">#6534</a></li>
</ul>
</li>
<li><strong>stream</strong>: Improved <code>readable.read()</code> performance by up to 70%. (Brian White) <a href="https://github.com/nodejs/node/pull/7077">#7077</a></li>
<li><strong>timers</strong>: <code>setImmediate()</code> is now up to 150% faster in some situations. (Andras) <a href="https://github.com/nodejs/node/pull/6436">#6436</a></li>
<li><strong>util</strong>: Added a <code>breakLength</code> option to <code>util.inspect()</code> to control how objects are formatted across lines. (cjihrig) <a href="https://github.com/nodejs/node/pull/7499">#7499</a></li>
<li><strong>v8-inspector</strong>: Experimental support has been added for debugging Node.js over the inspector protocol. (Ali Ijaz Sheikh) <a href="https://github.com/nodejs/node/pull/6792">#6792</a><ul>
<li><strong>Note: This feature is <em>experimental</em>, and it could be altered or removed.</strong></li>
<li>You can try this feature by running Node.js with the <code>--inspect</code> flag.</li>
</ul>
</li>
</ul>
<h3 id="header-commits">Commits<a name="commits" class="anchor" href="#commits" aria-labelledby="header-commits"></a></h3><ul>
<li>[<a href="https://github.com/nodejs/node/commit/40211e80f2"><code>40211e80f2</code></a>] - <strong>assert</strong>: remove unneeded arguments special handling (Rich Trott) <a href="https://github.com/nodejs/node/pull/7413">#7413</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/44f0f940c8"><code>44f0f940c8</code></a>] - <strong>benchmark</strong>: add <code>setImmediate()</code> benchmarks (Andras) <a href="https://github.com/nodejs/node/pull/6436">#6436</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/35c70b5668"><code>35c70b5668</code></a>] - <strong>benchmark</strong>: <code>util._extend</code> vs <code>object.assign</code> (surya panikkal) <a href="https://github.com/nodejs/node/pull/7255">#7255</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4014ecbfb4"><code>4014ecbfb4</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>buffer</strong>: speed up swap16/32, add swap64 (Zach Bjornson) <a href="https://github.com/nodejs/node/pull/7157">#7157</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ac8e1bf609"><code>ac8e1bf609</code></a>] - <strong>buffer</strong>: improve creation performance. (Ingvar Stepanyan) <a href="https://github.com/nodejs/node/pull/7349">#7349</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5e4113e58d"><code>5e4113e58d</code></a>] - <strong>build</strong>: Fix compile failure in <code>backtrace_posix.cc</code> (Michael Dawson) <a href="https://github.com/nodejs/node/pull/7544">#7544</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/15a32dd42b"><code>15a32dd42b</code></a>] - <strong>build</strong>: export openssl symbols on windows (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6274">#6274</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b829a4969f"><code>b829a4969f</code></a>] - <strong>build</strong>: enable big toc for release builds in AIX (Gireesh Punathil) <a href="https://github.com/nodejs/node/pull/7508">#7508</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/9b5be44b01"><code>9b5be44b01</code></a>] - <strong>build</strong>: split CI rules in Makefile (João Reis) <a href="https://github.com/nodejs/node/pull/7317">#7317</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1bd6a623a0"><code>1bd6a623a0</code></a>] - <strong>build</strong>: drop unconditional openssl dep from cctest (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7486">#7486</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8a31b234ee"><code>8a31b234ee</code></a>] - <strong>build</strong>: remove unused files from <code>CPPLINT_FILES</code> (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/91744aaf00"><code>91744aaf00</code></a>] - <strong>build</strong>: configure <code>--shared</code> (Stefan Budeanu) <a href="https://github.com/nodejs/node/pull/6994">#6994</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2aa06b9fa0"><code>2aa06b9fa0</code></a>] - <strong>child_process</strong>: preserve argument type (Rich Trott) <a href="https://github.com/nodejs/node/pull/7391">#7391</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4a0fb6fcb8"><code>4a0fb6fcb8</code></a>] - <strong><em>Revert</em></strong> &quot;<strong>child_process</strong>: measure buffer length in bytes&quot; (Rich Trott) <a href="https://github.com/nodejs/node/pull/7391">#7391</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c1bd3fe14c"><code>c1bd3fe14c</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>cluster</strong>: work with <code>v8_inspector</code> (cjihrig) <a href="https://github.com/nodejs/node/pull/6792">#6792</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/fa9e6f7463"><code>fa9e6f7463</code></a>] - <strong>crypto</strong>: Allow GCM ciphers to have a longer IV length (Michael Wain) <a href="https://github.com/nodejs/node/pull/6376">#6376</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ef41c8bd8e"><code>ef41c8bd8e</code></a>] - <strong>crypto</strong>: update root certificates (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7363">#7363</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2c7804ad9e"><code>2c7804ad9e</code></a>] - <strong>crypto,tls</strong>: perf improvements for crypto and tls getCiphers (James M Snell) <a href="https://github.com/nodejs/node/pull/7225">#7225</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4891001d7e"><code>4891001d7e</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>debugger</strong>: make listen address configurable (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/3316">#3316</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5bb63e13d1"><code>5bb63e13d1</code></a>] - <strong>deps</strong>: upgrade npm to 3.10.3 (Kat Marchán) <a href="https://github.com/nodejs/node/pull/7515">#7515</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/581e6deeda"><code>581e6deeda</code></a>] - <strong>deps</strong>: upgrade npm to 3.10.2 (Rebecca Turner) <a href="https://github.com/nodejs/node/pull/7410">#7410</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/12b199369d"><code>12b199369d</code></a>] - <strong>deps</strong>: update <code>icu-small</code> to include punycode datafiles (James M Snell) <a href="https://github.com/nodejs/node/pull/7355">#7355</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/225f3b9f34"><code>225f3b9f34</code></a>] - <strong>deps</strong>: update <code>v8_inspector</code> (Michaël Zasso) <a href="https://github.com/nodejs/node/pull/7385">#7385</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a4880b5b10"><code>a4880b5b10</code></a>] - <strong>deps</strong>: <code>MASM.UseSafeExceptionHandlers</code> for OpenSSL (Fedor Indutny) <a href="https://github.com/nodejs/node/pull/7427">#7427</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/cbe57479c4"><code>cbe57479c4</code></a>] - <strong>deps</strong>: switch to upstream <code>v8_inspector</code> (Ali Ijaz Sheikh) <a href="https://github.com/nodejs/node/pull/7302">#7302</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/f4777c77eb"><code>f4777c77eb</code></a>] - <strong>deps</strong>: update <code>v8_inspector</code> (Ali Ijaz Sheikh) <a href="https://github.com/nodejs/node/pull/7118">#7118</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/62105288d3"><code>62105288d3</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>deps</strong>: import <code>v8_inspector</code> (Ali Ijaz Sheikh) <a href="https://github.com/nodejs/node/pull/6792">#6792</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c544213717"><code>c544213717</code></a>] - <strong>deps</strong>: backport 7dfb5beeec from V8 upstream (Myles Borins) <a href="https://github.com/nodejs/node/pull/7348">#7348</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b0da07a788"><code>b0da07a788</code></a>] - <strong>doc</strong>: add <code>added:</code> information for timers (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7493">#7493</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/63d361b531"><code>63d361b531</code></a>] - <strong>doc</strong>: fix documentation of process.argv (Tarun Garg) <a href="https://github.com/nodejs/node/pull/7449">#7449</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/45f83e59c4"><code>45f83e59c4</code></a>] - <strong>doc</strong>: add guide for Node.js Timers (Ryan Lewis) <a href="https://github.com/nodejs/node/pull/6825">#6825</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7d07a0b68e"><code>7d07a0b68e</code></a>] - <strong>doc</strong>: improve usage of <code>zero</code>/<code>0</code> (Rich Trott) <a href="https://github.com/nodejs/node/pull/7466">#7466</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8d18aed59e"><code>8d18aed59e</code></a>] - <strong>doc</strong>: fixing minor typo in <code>AtExit</code> hooks section (Daniel Bevenius) <a href="https://github.com/nodejs/node/pull/7485">#7485</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/58ae35c34d"><code>58ae35c34d</code></a>] - <strong>doc</strong>: fix broken refs to <code>url.parse()</code> in http docs (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7392">#7392</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/f269c008f2"><code>f269c008f2</code></a>] - <strong>doc</strong>: add <code>added:</code> information for https (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7392">#7392</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1c7b622cfc"><code>1c7b622cfc</code></a>] - <strong>doc</strong>: add <code>added:</code> information for http (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7392">#7392</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/bc37e6a22d"><code>bc37e6a22d</code></a>] - <strong>doc</strong>: general improvements to timers.md (James M Snell) <a href="https://github.com/nodejs/node/pull/6937">#6937</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5f766ad6d0"><code>5f766ad6d0</code></a>] - <strong>doc</strong>: fix typographic error in process doc (Rich Trott) <a href="https://github.com/nodejs/node/pull/7431">#7431</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3475591d1c"><code>3475591d1c</code></a>] - <strong>doc</strong>: fix &quot;sign.verify&quot; typo in crypto doc. (Ruslan Iusupov) <a href="https://github.com/nodejs/node/pull/7411">#7411</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/44bc638cdb"><code>44bc638cdb</code></a>] - <strong>doc</strong>: clarify <code>child_process</code> stdout/stderr types (sartrey) <a href="https://github.com/nodejs/node/pull/7361">#7361</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/efce335e63"><code>efce335e63</code></a>] - <strong>doc</strong>: add CTC meeting minutes 2016-06-15 (Josh Gavant) <a href="https://github.com/nodejs/node/pull/7320">#7320</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b725437c81"><code>b725437c81</code></a>] - <strong>doc</strong>: minor rewording to the GitHub issue/pr templates (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/7403">#7403</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4486ba9ee1"><code>4486ba9ee1</code></a>] - <strong>doc</strong>: add lance to collaborators (Lance Ball) <a href="https://github.com/nodejs/node/pull/7407">#7407</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/09a7c91baa"><code>09a7c91baa</code></a>] - <strong>doc</strong>: update &quot;who to cc in issues&quot; chart (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6694">#6694</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/eed65973d5"><code>eed65973d5</code></a>] - <strong>doc</strong>: fix link in the stream doc (Italo A. Casas) <a href="https://github.com/nodejs/node/pull/7347">#7347</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a04cd85667"><code>a04cd85667</code></a>] - <strong>doc</strong>: fix repl defineCommand example (akki) <a href="https://github.com/nodejs/node/pull/7365">#7365</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/029af2c1f6"><code>029af2c1f6</code></a>] - <strong>doc</strong>: update build instructions for Windows (João Reis) <a href="https://github.com/nodejs/node/pull/7285">#7285</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7a0718bdc6"><code>7a0718bdc6</code></a>] - <strong>doc</strong>: add <code>added:</code> information for tls (Italo A. Casas) <a href="https://github.com/nodejs/node/pull/7018">#7018</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ec515c5d3b"><code>ec515c5d3b</code></a>] - <strong>doc</strong>: mention http request &quot;aborted&quot; events (Kyle E. Mitchell) <a href="https://github.com/nodejs/node/pull/7270">#7270</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0f434fee6e"><code>0f434fee6e</code></a>] - <strong>doc</strong>: add RReverser to collaborators (Ingvar Stepanyan) <a href="https://github.com/nodejs/node/pull/7370">#7370</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7aa2125fae"><code>7aa2125fae</code></a>] - <strong>doc</strong>: add argument information for <code>socket.destroy()</code> (Rich Trott) <a href="https://github.com/nodejs/node/pull/7238">#7238</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/9e9d7b8fba"><code>9e9d7b8fba</code></a>] - <strong>doc</strong>: general improvements to os.md copy (James M Snell) <a href="https://github.com/nodejs/node/pull/7124">#7124</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/cd439465cc"><code>cd439465cc</code></a>] - <strong>doc</strong>: fix typos in the stream doc (vsemozhetbyt) <a href="https://github.com/nodejs/node/pull/7336">#7336</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/dddfed24db"><code>dddfed24db</code></a>] - <strong>doc</strong>: document <code>socket.destroyed</code> (Tushar Mathur) <a href="https://github.com/nodejs/node/pull/6128">#6128</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/cd7c29e471"><code>cd7c29e471</code></a>] - <strong>doc</strong>: correct <code>added:</code> information for fs.access (Richard Lau) <a href="https://github.com/nodejs/node/pull/7299">#7299</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6aa179b4a6"><code>6aa179b4a6</code></a>] - <strong>doc</strong>: add <code>added:</code> information for repl (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7256">#7256</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/08a9aa31e1"><code>08a9aa31e1</code></a>] - <strong>doc</strong>: fix broken link in vm.md (Luigi Pinca) <a href="https://github.com/nodejs/node/pull/7304">#7304</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/12fbac102b"><code>12fbac102b</code></a>] - <strong>doc</strong>: fix cluster worker <code>&#39;message&#39;</code> event (cjihrig) <a href="https://github.com/nodejs/node/pull/7309">#7309</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1a0ed26883"><code>1a0ed26883</code></a>] - <strong>doc</strong>: fix events typo (Greyson Parrelli) <a href="https://github.com/nodejs/node/pull/7329">#7329</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1e7a7be1ad"><code>1e7a7be1ad</code></a>] - <strong>doc</strong>: clarify <code>fs.access()</code> works on directories too. (Lance Ball) <a href="https://github.com/nodejs/node/pull/7321">#7321</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e7b84007be"><code>e7b84007be</code></a>] - <strong>http</strong>: replace finish() callback with arrow function (Guy Fraser) <a href="https://github.com/nodejs/node/pull/7378">#7378</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c4aaf47f4d"><code>c4aaf47f4d</code></a>] - <strong>inspector</strong>: Do cleanups before notifying callback (Eugene Ostroukhov) <a href="https://github.com/nodejs/node/pull/7450">#7450</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/fe580eb578"><code>fe580eb578</code></a>] - <strong>inspector</strong>: print warning when used (Evan Lucas) <a href="https://github.com/nodejs/node/pull/7383">#7383</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8dd48c9251"><code>8dd48c9251</code></a>] - <strong>inspector</strong>: fix inspector connection cleanup (Eugene Ostroukhov) <a href="https://github.com/nodejs/node/pull/7268">#7268</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/09ecd1fb58"><code>09ecd1fb58</code></a>] - <strong>inspector</strong>: fix coverity scan errors (Eugene Ostroukhov) <a href="https://github.com/nodejs/node/pull/7324">#7324</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/88b2aa3ce6"><code>88b2aa3ce6</code></a>] - <strong>inspector</strong>: <code>process.exit()</code> should wait for inspector (Eugene Ostroukhov) <a href="https://github.com/nodejs/node/pull/7252">#7252</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7da8a413f6"><code>7da8a413f6</code></a>] - <strong>inspector</strong>: reduce implementation in header (Eugene Ostroukhov) <a href="https://github.com/nodejs/node/pull/7228">#7228</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ec90a7a92e"><code>ec90a7a92e</code></a>] - <strong>inspector</strong>: change default port (Ali Ijaz Sheikh) <a href="https://github.com/nodejs/node/pull/7212">#7212</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d0e24923a6"><code>d0e24923a6</code></a>] - <strong>net</strong>: use icu&#39;s punycode implementation (James M Snell) <a href="https://github.com/nodejs/node/pull/7355">#7355</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/fb39025e31"><code>fb39025e31</code></a>] - <strong>punycode</strong>: update to v2.0.0 (Mathias Bynens) <a href="https://github.com/nodejs/node/pull/7267">#7267</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6b1fc63dcb"><code>6b1fc63dcb</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>readline</strong>: allow passing prompt to constructor (Evan Lucas) <a href="https://github.com/nodejs/node/pull/7125">#7125</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/72d659a000"><code>72d659a000</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>readline</strong>: return old status from <code>_setRawMode()</code> (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6635">#6635</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7a7b8f7e67"><code>7a7b8f7e67</code></a>] - <strong>repl</strong>: Default <code>useGlobal</code> to false in CLI REPL. (Lance Ball) <a href="https://github.com/nodejs/node/pull/5703">#5703</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c39f6c0204"><code>c39f6c0204</code></a>] - <strong>repl</strong>: Enable tab completion for global properties (Lance Ball) <a href="https://github.com/nodejs/node/pull/7369">#7369</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ca95a84bc4"><code>ca95a84bc4</code></a>] - <strong>repl</strong>: fix tab completion for defined commands (Prince J Wesley) <a href="https://github.com/nodejs/node/pull/7364">#7364</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/da8e510ee0"><code>da8e510ee0</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>repl</strong>: break on sigint/ctrl+c (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6635">#6635</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3cba8acc15"><code>3cba8acc15</code></a>] - <strong>src</strong>: remove obsolete <code>NOLINT</code> comments (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/57cc4e3071"><code>57cc4e3071</code></a>] - <strong>src</strong>: print backtrace on failed <code>CHECK</code>/<code>ASSERT</code> (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6734">#6734</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b8919b1d23"><code>b8919b1d23</code></a>] - <strong>src</strong>: move <code>ABORT()</code> logic into <code>node::Abort()</code> (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6734">#6734</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c96d701769"><code>c96d701769</code></a>] - <strong>src</strong>: print backtrace on abort/unreachable code (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6734">#6734</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6cec90a611"><code>6cec90a611</code></a>] - <strong>src</strong>: print backtrace on fatal error (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6734">#6734</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8f7baffee4"><code>8f7baffee4</code></a>] - <strong>src</strong>: fix bad logic in uid/gid checks (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7374">#7374</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6fa560dce9"><code>6fa560dce9</code></a>] - <strong>src</strong>: fix memory leak in <code>WriteBuffers()</code> error path (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7374">#7374</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ce039c3240"><code>ce039c3240</code></a>] - <strong>src</strong>: fix use-after-return in zlib bindings (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7374">#7374</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2816418c04"><code>2816418c04</code></a>] - <strong>src</strong>: remove deprecated <code>HMAC_Init</code>, use <code>HMAC_Init_ex</code> (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7374">#7374</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b7e661b12c"><code>b7e661b12c</code></a>] - <strong>src</strong>: remove duplicate <code>HMAC_Init</code> calls (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7374">#7374</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/25bc7fee34"><code>25bc7fee34</code></a>] - <strong>src</strong>: remove unused <code>md_</code> data members (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7374">#7374</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2228a656b0"><code>2228a656b0</code></a>] - <strong>src</strong>: remove unused data member <code>write_queue_size_</code> (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7374">#7374</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/9945b4ecd6"><code>9945b4ecd6</code></a>] - <strong>src</strong>: guard against starting fs watcher twice (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7374">#7374</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3b1c19f90a"><code>3b1c19f90a</code></a>] - <strong>src</strong>: initialize <code>encoding_</code> data member (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7374">#7374</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c795d1ed9b"><code>c795d1ed9b</code></a>] - <strong>src</strong>: check <code>uv_async_init()</code> return value (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7374">#7374</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/001aa06bc0"><code>001aa06bc0</code></a>] - <strong>src</strong>: lint v8abbr.h (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ca4fb084f6"><code>ca4fb084f6</code></a>] - <strong>src</strong>: lint <code>node_lttng_tp.h</code> (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/da0ebf62c7"><code>da0ebf62c7</code></a>] - <strong>src</strong>: lint <code>node_win32_perfctr_provider.cc</code> (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3fa643b069"><code>3fa643b069</code></a>] - <strong>src</strong>: fix whitespace/indent cpplint warnings (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/f72259aa89"><code>f72259aa89</code></a>] - <strong>src</strong>: fix whitespace/blank_line cpplint warnings (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1b3c1b08a8"><code>1b3c1b08a8</code></a>] - <strong>src</strong>: fix runtime/references cpplint warnings (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/be0c575ab4"><code>be0c575ab4</code></a>] - <strong>src</strong>: fix runtime/int cpplint warnings (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/88c5183147"><code>88c5183147</code></a>] - <strong>src</strong>: fix runtime/indentation_namespace warnings (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1fa6dba8f2"><code>1fa6dba8f2</code></a>] - <strong>src</strong>: fix readability/nolint cpplint warnings (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/43e83576bd"><code>43e83576bd</code></a>] - <strong>src</strong>: fix readability/namespace cpplint warnings (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5fd158568f"><code>5fd158568f</code></a>] - <strong>src</strong>: fix readability/inheritance cpplint warnings (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b7e006b489"><code>b7e006b489</code></a>] - <strong>src</strong>: fix readability/constructors cpplint warnings (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7fe758de85"><code>7fe758de85</code></a>] - <strong>src</strong>: fix readability/braces cpplint warnings (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6280ccdaaa"><code>6280ccdaaa</code></a>] - <strong>src</strong>: fix build/header_guard cpplint warnings (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5dfa234bae"><code>5dfa234bae</code></a>] - <strong>src</strong>: fix build/c++tr1 cpplint warnings (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/84dd526f51"><code>84dd526f51</code></a>] - <strong>src</strong>: renaming <code>ares_task</code> struct to <code>node_ares_task</code> (Daniel Bevenius) <a href="https://github.com/nodejs/node/pull/7345">#7345</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/059335180d"><code>059335180d</code></a>] - <strong>src</strong>: use RAII for mutexes and condition variables (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7334">#7334</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3d69ad1cf3"><code>3d69ad1cf3</code></a>] - <strong>src</strong>: make Sec-WebSocket-Key check case-insensitive (Myles Borins) <a href="https://github.com/nodejs/node/pull/7248">#7248</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/38d36e3285"><code>38d36e3285</code></a>] - <strong>src</strong>: fix <code>--without-inspector</code> build (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7258">#7258</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2fd140b949"><code>2fd140b949</code></a>] - <strong>src</strong>: fix json payload from inspector (Myles Borins) <a href="https://github.com/nodejs/node/pull/7232">#7232</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/643b33b497"><code>643b33b497</code></a>] - <strong>src</strong>: add linebreak to inspector message (Nicolas Romer) <a href="https://github.com/nodejs/node/pull/7070">#7070</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ea2d661447"><code>ea2d661447</code></a>] - <strong>src</strong>: fix <code>--without-inspector</code> build (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7078">#7078</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2a8bd35bac"><code>2a8bd35bac</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>src</strong>: add <code>node::FreeEnvironment</code> public API (Cheng Zhao) <a href="https://github.com/nodejs/node/pull/3098">#3098</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/929b6c29d8"><code>929b6c29d8</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>src</strong>: refactor <code>require(&#39;constants&#39;)</code> (James M Snell) <a href="https://github.com/nodejs/node/pull/6534">#6534</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/cd38401724"><code>cd38401724</code></a>] - <strong>src</strong>: fix Windows segfault with <code>--eval</code> (Bryce Simonds) <a href="https://github.com/nodejs/node/pull/6938">#6938</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6dc0dae830"><code>6dc0dae830</code></a>] - <strong>src</strong>: rename &quot;node&quot; script to &quot;bootstrap_node&quot; (Daniel Bevenius) <a href="https://github.com/nodejs/node/pull/7277">#7277</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7d4f038a78"><code>7d4f038a78</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>src,lib</strong>: v8-inspector support (Pavel Feldman) <a href="https://github.com/nodejs/node/pull/6792">#6792</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e1d6bd9e30"><code>e1d6bd9e30</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>stream</strong>: improve <code>Readable.read()</code> performance (Brian White) <a href="https://github.com/nodejs/node/pull/7077">#7077</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/962ac37e1f"><code>962ac37e1f</code></a>] - <strong>string_decoder</strong>: fix bad utf8 character handling (Brian White) <a href="https://github.com/nodejs/node/pull/7310">#7310</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/f6ba5f6380"><code>f6ba5f6380</code></a>] - <strong>test</strong>: really run addon tests on <code>make test</code> (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7542">#7542</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c132e9cc24"><code>c132e9cc24</code></a>] - <strong>test</strong>: listen on and connect to <code>127.0.0.1</code> (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7524">#7524</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6da49ac1fd"><code>6da49ac1fd</code></a>] - <strong>test</strong>: handle SmartOS bug in test-tls-session-cache (Rich Trott) <a href="https://github.com/nodejs/node/pull/7505">#7505</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b383fdde79"><code>b383fdde79</code></a>] - <strong>test</strong>: remove <code>common.PORT</code> from http tests (Rich Trott) <a href="https://github.com/nodejs/node/pull/7467">#7467</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/658ab3d1e6"><code>658ab3d1e6</code></a>] - <strong>test</strong>: check types for http request and response (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7003">#7003</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/517e71508e"><code>517e71508e</code></a>] - <strong>test</strong>: add abort test for backtrace validation (cjihrig) <a href="https://github.com/nodejs/node/pull/6734">#6734</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6de80fcaea"><code>6de80fcaea</code></a>] - <strong>test</strong>: don&#39;t use internal headers in add-on tests (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6734">#6734</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c7ab7a31d7"><code>c7ab7a31d7</code></a>] - <strong>test</strong>: fix abort/test-abort-uncaught-exception (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6734">#6734</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4b0ab5b308"><code>4b0ab5b308</code></a>] - <strong>test</strong>: add <code>testcfg.py</code> to test/abort/ (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6734">#6734</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/365f5207b3"><code>365f5207b3</code></a>] - <strong>test</strong>: test <code>isFullWidthCodePoint()</code> with invalid input (Rich Trott) <a href="https://github.com/nodejs/node/pull/7422">#7422</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e30f32f003"><code>e30f32f003</code></a>] - <strong><em>Revert</em></strong> &quot;<strong>test</strong>: mark test-vm-timeout flaky on windows&quot; (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7373">#7373</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/457d244170"><code>457d244170</code></a>] - <strong>test</strong>: fix flaky test-vm-timeout (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7373">#7373</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/16aff79dee"><code>16aff79dee</code></a>] - <strong>test</strong>: add test for <code>exec()</code> known issue (Rich Trott) <a href="https://github.com/nodejs/node/pull/7375">#7375</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8f1733c4e7"><code>8f1733c4e7</code></a>] - <strong>test</strong>: add more <code>UTF-8</code> <code>StringDecoder</code> tests (Martin von Gagern) <a href="https://github.com/nodejs/node/pull/7310">#7310</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0bbf2ef6ea"><code>0bbf2ef6ea</code></a>] - <strong>test</strong>: fix flaky test-fs-watch-encoding on OS X (Rich Trott) <a href="https://github.com/nodejs/node/pull/7356">#7356</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/009858bd0a"><code>009858bd0a</code></a>] - <strong>test</strong>: remove internet/test-tls-connnect-cnnic (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7363">#7363</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c236a13341"><code>c236a13341</code></a>] - <strong>test</strong>: mark test-vm-timeout flaky on windows (Rich Trott) <a href="https://github.com/nodejs/node/pull/7359">#7359</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/580e11026e"><code>580e11026e</code></a>] - <strong>test</strong>: refresh the tmpdir before using (Rich Trott) <a href="https://github.com/nodejs/node/pull/7327">#7327</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e2bf250a29"><code>e2bf250a29</code></a>] - <strong>test</strong>: add tests for some <code>stream.Readable</code> uses (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7260">#7260</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/efb7a90fa9"><code>efb7a90fa9</code></a>] - <strong>timers</strong>: optimize <code>setImmediate()</code> (Andras) <a href="https://github.com/nodejs/node/pull/6436">#6436</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a5d894590d"><code>a5d894590d</code></a>] - <strong>timers</strong>: optimize linkedlist (Andras) <a href="https://github.com/nodejs/node/pull/6436">#6436</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/77331a7c01"><code>77331a7c01</code></a>] - <strong>tls</strong>: avoid calling <code>Buffer.byteLength</code> multiple times (James M Snell) <a href="https://github.com/nodejs/node/pull/7236">#7236</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d857e9a3e9"><code>d857e9a3e9</code></a>] - <strong>tools</strong>: explicit path for V8 test tap output (Myles Borins) <a href="https://github.com/nodejs/node/pull/7460">#7460</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e727cb5021"><code>e727cb5021</code></a>] - <strong>tools</strong>: fix <code>-Wunused-variable</code> warning (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/9d0641e20d"><code>9d0641e20d</code></a>] - <strong>tools</strong>: allow cpplint to run outside git repo (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/01b7b9a2bc"><code>01b7b9a2bc</code></a>] - <strong>tools</strong>: add back <code>--mode=tap</code> to cpplint (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e3662a4386"><code>e3662a4386</code></a>] - <strong>tools</strong>: disable unwanted cpplint rules again (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5830ec5d41"><code>5830ec5d41</code></a>] - <strong>tools</strong>: update cpplint to r456 (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7462">#7462</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3eb02b6743"><code>3eb02b6743</code></a>] - <strong>tools</strong>: output include guards in mk-ca-bundle.pl (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7363">#7363</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/32e068a5d0"><code>32e068a5d0</code></a>] - <strong>tools</strong>: update certdata.txt (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7363">#7363</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/bd8c951757"><code>bd8c951757</code></a>] - <strong>tools</strong>: disable readability/function cpplint rule (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7334">#7334</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3b8914d5ce"><code>3b8914d5ce</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>util</strong>: add an option for configuring break length (cjihrig) <a href="https://github.com/nodejs/node/pull/7499">#7499</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6151544751"><code>6151544751</code></a>] - <strong>vm</strong>: don&#39;t print out arrow message for custom error (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7398">#7398</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/55b87c0238"><code>55b87c0238</code></a>] - <strong>vm</strong>: test for abort condition of current invocation (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7373">#7373</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d049919e7d"><code>d049919e7d</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>vm</strong>: add ability to break on sigint/ctrl+c (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6635">#6635</a></li>
</ul>
<p>Windows 32-bit Installer: <a href="https://nodejs.org/dist/v6.3.0/node-v6.3.0-x86.msi">https://nodejs.org/dist/v6.3.0/node-v6.3.0-x86.msi</a><br>
Windows 64-bit Installer: <a href="https://nodejs.org/dist/v6.3.0/node-v6.3.0-x64.msi">https://nodejs.org/dist/v6.3.0/node-v6.3.0-x64.msi</a><br>
Windows 32-bit Binary: <a href="https://nodejs.org/dist/v6.3.0/win-x86/node.exe">https://nodejs.org/dist/v6.3.0/win-x86/node.exe</a><br>
Windows 64-bit Binary: <a href="https://nodejs.org/dist/v6.3.0/win-x64/node.exe">https://nodejs.org/dist/v6.3.0/win-x64/node.exe</a><br>
Mac OS X 64-bit Installer: <a href="https://nodejs.org/dist/v6.3.0/node-v6.3.0.pkg">https://nodejs.org/dist/v6.3.0/node-v6.3.0.pkg</a><br>
Mac OS X 64-bit Binary: <a href="https://nodejs.org/dist/v6.3.0/node-v6.3.0-darwin-x64.tar.gz">https://nodejs.org/dist/v6.3.0/node-v6.3.0-darwin-x64.tar.gz</a><br>
Linux 32-bit Binary: <a href="https://nodejs.org/dist/v6.3.0/node-v6.3.0-linux-x86.tar.xz">https://nodejs.org/dist/v6.3.0/node-v6.3.0-linux-x86.tar.xz</a><br>
Linux 64-bit Binary: <a href="https://nodejs.org/dist/v6.3.0/node-v6.3.0-linux-x64.tar.xz">https://nodejs.org/dist/v6.3.0/node-v6.3.0-linux-x64.tar.xz</a><br>
Linux PPC LE 64-bit Binary: <a href="https://nodejs.org/dist/v6.3.0/node-v6.3.0-linux-ppc64le.tar.xz">https://nodejs.org/dist/v6.3.0/node-v6.3.0-linux-ppc64le.tar.xz</a><br>
SunOS 32-bit Binary: <a href="https://nodejs.org/dist/v6.3.0/node-v6.3.0-sunos-x86.tar.xz">https://nodejs.org/dist/v6.3.0/node-v6.3.0-sunos-x86.tar.xz</a><br>
SunOS 64-bit Binary: <a href="https://nodejs.org/dist/v6.3.0/node-v6.3.0-sunos-x64.tar.xz">https://nodejs.org/dist/v6.3.0/node-v6.3.0-sunos-x64.tar.xz</a><br>
ARMv6 32-bit Binary: <em>Coming soon</em><br>
ARMv7 32-bit Binary: <a href="https://nodejs.org/dist/v6.3.0/node-v6.3.0-linux-armv7l.tar.xz">https://nodejs.org/dist/v6.3.0/node-v6.3.0-linux-armv7l.tar.xz</a><br>
ARMv8 64-bit Binary: <a href="https://nodejs.org/dist/v6.3.0/node-v6.3.0-linux-arm64.tar.xz">https://nodejs.org/dist/v6.3.0/node-v6.3.0-linux-arm64.tar.xz</a><br>
Source Code: <a href="https://nodejs.org/dist/v6.3.0/node-v6.3.0.tar.gz">https://nodejs.org/dist/v6.3.0/node-v6.3.0.tar.gz</a><br>
Other release files: <a href="https://nodejs.org/dist/v6.3.0/">https://nodejs.org/dist/v6.3.0/</a><br>
Documentation: <a href="https://nodejs.org/docs/v6.3.0/api/">https://nodejs.org/docs/v6.3.0/api/</a></p>
<p>Shasums (GPG signing hash: SHA512, file hash: SHA256):</p>
<pre><code>-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

5c711a62e464f1d455c31afe2a62e9866eeaf1c23d977b57a60285d0bd040ba5  node-v6.3.0-darwin-x64.tar.gz
4f9a19b5688092d5652e8748093cb9c90fa503ea13b976e51dbd53c2fa07c116  node-v6.3.0-darwin-x64.tar.xz
9275894c3ed6373068cddeeb968e4d2ceba76368b6cd3b01aca79f0b592badd6  node-v6.3.0-headers.tar.gz
85358983586760b0a9c0d36294ca5266dbd4e5d0df5390dfbf7aba684799e8db  node-v6.3.0-headers.tar.xz
58995c3f91962fc4383696f9c64763b3cd27d9b5903b4cf2a5ccfe86c8258e9f  node-v6.3.0-linux-arm64.tar.gz
18000ebe5208a2ddb17ab6d301a79d6ffa29287d579299480c62859c42c6c51c  node-v6.3.0-linux-arm64.tar.xz
de3554545e2d04719ebcd990984ff1eb5d6edbbbb9d24893cb998e2eb15d8bf5  node-v6.3.0-linux-armv7l.tar.gz
dce3e835d17a4febfb234f37593eb1b1dc02c87c16f49504c1800de7a8ccb0f2  node-v6.3.0-linux-armv7l.tar.xz
4665fa5c521e7c39bec441c66c41017a0a430944eb49fd0adec6e1c3b72f992b  node-v6.3.0-linux-ppc64le.tar.gz
7fd30dc537135180604139ac59db5673230ea6e95163046f08302968230951f0  node-v6.3.0-linux-ppc64le.tar.xz
72d6b834e88acc7d805f5bc7b90bce7f418b5b7270efa5126b614ae81a6c8b6c  node-v6.3.0-linux-ppc64.tar.gz
fb90a4ecde4feb7b70cb2af5297e560b03a3a3c8a201e05eaeb259c294f0b70e  node-v6.3.0-linux-ppc64.tar.xz
d26c09fc95ebb457b79fcb0a2890fe8417b2c04f4016dadf2d165c07af762764  node-v6.3.0-linux-x64.tar.gz
eeee9611daaa80ddd277dba66586f3580ce5cb6309838f854e557e780a68a2c9  node-v6.3.0-linux-x64.tar.xz
9302affb9844ec9a51e774169072bff3421c0232f746b3d504ba6c13c749ff9f  node-v6.3.0-linux-x86.tar.gz
504dc0ad16f8f5d9147df757eb47838a4ae159d50f3efe73539d3b761267f213  node-v6.3.0-linux-x86.tar.xz
c752cab4c2519e513626dacdab93e7c0b8ef25de7d34e46813bf5035d6c81bfe  node-v6.3.0.pkg
7d5f8b37ea3809db6bd633cb1702d1f942319de0c606883ffd300b36728283b7  node-v6.3.0-sunos-x64.tar.gz
6f7bd008f9d6aff1ee69d26b7215dedcfbf12108c22d4259059233067f29eae6  node-v6.3.0-sunos-x64.tar.xz
a494375cce067250bf8729b007a913a9b06b7b3a0ca1629dd263a84da3d172e2  node-v6.3.0-sunos-x86.tar.gz
654e0ed32e76ec5e4707d5d4af5aeab25dd824e638b70bf43a764ee78bf1530a  node-v6.3.0-sunos-x86.tar.xz
4ed7a99985f8afee337cc22d5fef61b495ab4238dfff3750ac9019e87fc6aae6  node-v6.3.0.tar.gz
66c2015bfedfff219f6026b1271a7a94942eb66856929cca1f40f895fbbef62c  node-v6.3.0.tar.xz
3aec8f0e2a74f6fe02f16e6af0be21a5a6f5003ddd03d24d4b1884a2b01d1ead  node-v6.3.0-win-x64.7z
723b2e9c8eee51aded69b08ae74cee495859799ee2e029ef495ee8cf2e9b68e8  node-v6.3.0-win-x64.zip
d53e30f1c561356f0bc2cdb68d93eacb31ba63ba6c02b467304502cc0b6bc0b7  node-v6.3.0-win-x86.7z
38a0160eac3ee8c2c2497ffdd7fcb7c644a73cbb9532a78fc11f2efbae1a74ea  node-v6.3.0-win-x86.zip
ec3fdc5e383948c68a2fa762be548ea18e83710c1b4af013b1b687faacfab274  node-v6.3.0-x64.msi
d838594fe4d3de0ec8265d742e7d3400a0e7c0c1d29df490f1f9c3af4639469d  node-v6.3.0-x86.msi
83cd7d82f5d7b2be3298fb44d218d38879f564e21a3fcab21c51138f032495c4  win-x64/node.exe
a98e6d7d10bcc85495da8f3f72c51ff7e506e248440c681f1ca8fc6644836143  win-x64/node.lib
94f4c037001787c1cb0e05057f339da19c59cf832f514a5ed592c04a4d367112  win-x64/node_pdb.7z
81591b06a70c6880b9acaa1642643d9f9734d36b660c888bf5e97ac65d88cb7e  win-x64/node_pdb.zip
f789e1b0040fb0f86ba567df42f7759a5b16c9976a45cf2c73693456e8b52e0a  win-x86/node.exe
39de1eda0901e6cd16155abb7bf0db28aad8bff938c2857f08cd1a12cbdd58c9  win-x86/node.lib
a1ef9df3736a29a4394ecb158b20e3192bbe5355028b0b41fb60c31d986c6456  win-x86/node_pdb.7z
7b6c9ad8ae08e70e3f5439c632377e6c31058187268d640c8980eeb22623f50c  win-x86/node_pdb.zip
-----BEGIN PGP SIGNATURE-----
Comment: GPGTools - https://gpgtools.org

iQIcBAEBCgAGBQJXfUO5AAoJEEX17r2BPa6Ob0cQAIsV4/DC/961LkhIV2RJUXUO
YhFC6nchaTM3MSr3RQvDQQNC3TmEt9JagPPyMC1oMiy9DT7rzq52UCquIMh6nS8j
NjBs+L55Y0BaXrQbuqGs+isiqqUVvuLZkLU9IBbKs8hID4egqrHyY7tkxidoO3kL
g+z/A43rcSOPZzrGl6muwIe9OF/81o1sJHTETfn939SXfM9zOXQmbo71EfUnVNHT
ZfEIk4o4v24SR7+OW444ziJpJY4robJcFnUlA0WvBkf34ByAKIWnXm5yEEaNIIHa
R3E84JrXM0HgDfCVQ089pAyY1ImLT4XosK3j1pmjND/nOHHblH/TfcF73pBqtC70
n3eXjilVaTzZeMnRFHi5Ofopc9VPgAhAd/+Ya1aVDzUb0IA5mR3uMR8KTYx1UDZN
5yuBpHLhj4TFYmjHVvPRsJ4VT7qSUtHZXzHJyEG+mqhjJQtjkbF81fHbO0NYzr3G
uY0iUdc+cKmGuWq059qFJFo/6mlPdIlIydCIs31peVwRpI4JuXapGuVwRvlyD/kH
cFmElIXdq7S+Kn9jxIaokx2bo1hoZ1Q8Tb74s0kxhh+1bUlQohuUScvS3h1PG7cM
nn8OdMAVg9tNs2YrCndYzWqup80l+23boLTX9qyxEWeQo2Nb9Ddja2oZXERLy4hT
+v4vjY1hcMdVt/eL5tZ+
=DrfW
-----END PGP SIGNATURE-----
</code></pre>]]></description><link>https://nodejs.org/en/blog/release/v6.3.0</link><guid isPermaLink="true">https://nodejs.org/en/blog/release/v6.3.0</guid><dc:creator><![CDATA[Jeremiah Senkpiel]]></dc:creator><pubDate>Wed, 06 Jul 2016 18:02:20 GMT</pubDate></item><item><title><![CDATA[Node.js Foundation Announces Keynotes and Programming for Node.js Interactive Europe]]></title><description><![CDATA[<blockquote>
<p>Event provides neutral forum for learning about the future of Node.js and JavaScript from the community and enterprise alike</p>
</blockquote>
<p><strong>SAN FRANCISCO, June 29, 2016</strong> – <a href="https://nodejs.org/en/foundation/">Node.js Foundation</a>, a community-led and industry-backed consortium to advance the development of the Node.js platform, today announced the initial programming for Node.js Interactive Europe, September 15 -16, 2016, in Amsterdam, Netherlands. The event will showcase workshops, community and technical talks, and use cases that will inform the future development of Node.js and JavaScript.</p>
<p>With 4 million users a month and adoption across numerous industries, Node.js is emerging as a universal platform used for web applications, IoT, enterprise application development and microservice architectures. This marquee event attracts enterprise users, developers and community stakeholders, providing them with a unique opportunity for cross-disciplinary discussions that are aimed to provide new insights and new opportunities around Node.js development. </p>
<p>“We’ve hand-selected a range of presenters and content that will showcase the future of Node.js and how pervasive it has become in the market through both a community and enterprise lens,” said Mikeal Rogers, community manager of Node.js Foundation. “This is a perfect conference if you are a front end, back end, mobile, IoT or full stack developer.”</p>
<p>The keynotes will focus on the future of Node.js and corresponding technologies. The initial keynotes include:</p>
<ul>
<li><strong>Ashley Williams</strong>, Node.js Foundation community board chair, founder of NodeTogether, and developer community and content manager at npm</li>
<li><strong>Doug Wilson</strong>, Express lead maintainer </li>
<li><strong>James Snell</strong>, IBM engineer and Node.js Foundation TSC member</li>
<li><strong>Kat Marchán</strong>, CLI engineer at npm</li>
<li><strong>Mikeal Rogers</strong>, community manager at the Node.js Foundation</li>
</ul>
<p>Experts from the world’s leading companies and most important open source projects will deep dive into tracks ranging from artificial intelligence to security. A sampling of this year’s sessions include: </p>
<h2 id="header-cloud-and-back-end">Cloud and Back End<a name="cloud-and-back-end" class="anchor" href="#cloud-and-back-end" aria-labelledby="header-cloud-and-back-end"></a></h2><ul>
<li>Node.js and Containers go together like Peanut Butter and Jelly from <strong>Ross Kukulinski of NodeSource</strong></li>
<li>Building the Node.JS Global Distribution Network from <strong>Guillermo Rauch creator of Socket.io</strong></li>
<li>SWIMming in the microservices Ocean from <strong>Luca Maraschi of Sporti and nearForm</strong></li>
</ul>
<h2 id="header-diagnosing-debugging-and-devops">Diagnosing, Debugging, and DevOps<a name="diagnosing-debugging-and-devops" class="anchor" href="#diagnosing-debugging-and-devops" aria-labelledby="header-diagnosing-debugging-and-devops"></a></h2><ul>
<li>Instrumentation and Tracing in Node.js from <strong>Thomas Watson of Opbeat</strong></li>
<li>The Cost of Logging from <strong>Matteo Collina of nearForm</strong></li>
</ul>
<h2 id="header-machine-learning-big-data-artificial-intelligence">Machine Learning, Big Data, Artificial Intelligence<a name="machine-learning-big-data-artificial-intelligence" class="anchor" href="#machine-learning-big-data-artificial-intelligence" aria-labelledby="header-machine-learning-big-data-artificial-intelligence"></a></h2><ul>
<li>Taking on Genetically Evolving Cellular Automata with JavaScript from <strong>Irina Shestak of Small Media Foundation</strong></li>
<li>From Pterodactyls and Cactus to Artificial Intelligence by <strong>Ivan Seidel of Tenda Digital</strong></li>
</ul>
<h2 id="header-node-js-core">Node.js Core<a name="node-js-core" class="anchor" href="#node-js-core" aria-labelledby="header-node-js-core"></a></h2><ul>
<li>Keeping the Node.js Community Infrastructure Humming: An Update from the Build Workgroup from <strong>Michael Dawson of IBM</strong></li>
<li>Creating Native Addons - General Principles from <strong>Gabriel Schulhof of Intel</strong></li>
<li>The CITGM Diaries from <strong>Myles Borins of IBM</strong></li>
</ul>
<h2 id="header-security">Security<a name="security" class="anchor" href="#security" aria-labelledby="header-security"></a></h2><ul>
<li>FIPS Comes to Node.js from <strong>Stefan Budeanu of IBM</strong></li>
<li>Take Data Validation Seriously from <strong>Paul Milham of WildWorks</strong></li>
</ul>
<h2 id="header-iot">IoT<a name="iot" class="anchor" href="#iot" aria-labelledby="header-iot"></a></h2><ul>
<li>Node.js on Hardware: Where We Are, Where We&#39;re Going, and How We&#39;ll Get There from <strong>Kassandra Perch of NodeBots</strong></li>
<li>Why did the robot cross the road? Computer vision, robots and mobile games from <strong>Pawel Szymczykowski of Wedgies</strong></li>
<li>The Future is Now: How to Realize your New Potential as a Cyborg from <strong>Emily Rose of Salesforce</strong></li>
</ul>
<h2 id="header-node-js-everywhere">Node.js Everywhere<a name="node-js-everywhere" class="anchor" href="#node-js-everywhere" aria-labelledby="header-node-js-everywhere"></a></h2><ul>
<li>Bitcoin, Blockchain and Node from <strong>Portia Burton of The Atlantic</strong></li>
<li>Node.js and the African Market from <strong>Ogatcha Prudence of Pilby</strong></li>
<li>The Radical Modularity from <strong>Aria Stewart of npm</strong></li>
</ul>
<h2 id="header-workshops">Workshops<a name="workshops" class="anchor" href="#workshops" aria-labelledby="header-workshops"></a></h2><ul>
<li>Deploying Node.js applications using plain old Linux from <strong>Luke Bond of YLD</strong></li>
<li>Build a real-time multiplayer chess game with Socket.io from <strong>David Washington of Microsoft</strong></li>
<li>Isomorphic JavaScript with React + Express from <strong>Azat Mardan of Capital One</strong></li>
</ul>
<p>The event will provide free onsite childcare for attendees and offers ASL, interpretation and transcription assistance upon request. The Node.js Foundation is offering three diversity scholarships this year. More information can be found <a href="http://events.linuxfoundation.org/events/node-interactive-europe/attend/diversity-scholarship">here</a>. </p>
<p>Node.js Interactive is made possible by support from Platinum Sponsor IBM; Gold Sponsors nearForm and YLD; and Silver Sponsor Opbeat. If you are interested in sponsoring please contact Todd Benzies at tbenzies@linuxfoundation.org.</p>
<p>For attendees who register before July 4th, the early bird registration fee is $400. Visit <a href="https://www.regonline.com/Register/Checkin.aspx?EventID=1811779">here</a> to register. </p>
<p>About the Node.js Foundation </p>
<p>Node.js is used by tens of thousands of organizations in more than 200 countries and amasses more than 4 million active users per month. It is the runtime of choice for high-performance, low latency applications, powering everything from enterprise applications, robots, API engines, cloud stacks and mobile websites.</p>
<p>The Foundation is made up of a diverse group of companies including Platinum members IBM, Intel, Joyent, Microsoft, PayPal and Red Hat. Gold members include GoDaddy and NodeSource, and Silver members include Apigee, AppDynamics, Codefresh, DigitalOcean, Fidelity, Google, Groupon, nearForm, New Relic, npm, Opbeat, RisingStack, Sauce Labs, SAP, StrongLoop (an IBM company), Sphinx, YLD, and Yahoo!. Get involved here: <a href="https://nodejs.org">https://nodejs.org</a>.</p>
]]></description><link>https://nodejs.org/en/blog/announcements/interactive-2016-ams</link><guid isPermaLink="true">https://nodejs.org/en/blog/announcements/interactive-2016-ams</guid><dc:creator><![CDATA[Node.js Foundation]]></dc:creator><pubDate>Wed, 29 Jun 2016 12:00:00 GMT</pubDate></item><item><title><![CDATA[Node v4.4.7 (LTS)]]></title><description><![CDATA[<h3 id="header-notable-changes">Notable Changes<a name="notable-changes" class="anchor" href="#notable-changes" aria-labelledby="header-notable-changes"></a></h3><ul>
<li><strong>debugger</strong>:<ul>
<li>All properties of an array (aside from length) can now be printed in the repl (cjihrig) <a href="https://github.com/nodejs/node/pull/6448">#6448</a></li>
</ul>
</li>
<li><strong>npm</strong>:<ul>
<li>Upgrade npm to 2.15.8 (Rebecca Turner) <a href="https://github.com/nodejs/node/pull/7412">#7412</a></li>
</ul>
</li>
<li><strong>stream</strong>:<ul>
<li>Fix for a bug that became more prevalent with the stream changes that landed in v4.4.5. (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7160">#7160</a></li>
</ul>
</li>
<li><strong>V8</strong>:<ul>
<li>Fix for a bug in crankshaft that was causing crashes on arm64 (Myles Borins) <a href="https://github.com/nodejs/node/pull/7442">#7442</a></li>
<li>Add missing classes to postmortem info such as JSMap and JSSet (evan.lucas) <a href="https://github.com/nodejs/node/pull/3792">#3792</a></li>
</ul>
</li>
</ul>
<h3 id="header-commits">Commits<a name="commits" class="anchor" href="#commits" aria-labelledby="header-commits"></a></h3><ul>
<li>[<a href="https://github.com/nodejs/node/commit/87cdb83a96"><code>87cdb83a96</code></a>] - <strong>benchmark</strong>: merge url.js with url-resolve.js (Andreas Madsen) <a href="https://github.com/nodejs/node/pull/5177">#5177</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/921e8568d5"><code>921e8568d5</code></a>] - <strong>benchmark</strong>: move misc to categorized directories (Andreas Madsen) <a href="https://github.com/nodejs/node/pull/5177">#5177</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c189eec14e"><code>c189eec14e</code></a>] - <strong>benchmark</strong>: fix configuation parameters (Andreas Madsen) <a href="https://github.com/nodejs/node/pull/5177">#5177</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/58ad451f0b"><code>58ad451f0b</code></a>] - <strong>benchmark</strong>: move string-decoder to its own category (Andreas Madsen) <a href="https://github.com/nodejs/node/pull/5177">#5177</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a01caa3166"><code>a01caa3166</code></a>] - <strong>build</strong>: don&#39;t compile with -B, redux (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6650">#6650</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/37606caeaf"><code>37606caeaf</code></a>] - <strong>build</strong>: don&#39;t compile with -B (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6393">#6393</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/64fb7a1929"><code>64fb7a1929</code></a>] - <strong>build</strong>: update android-configure script for npm (Robert Chiras) <a href="https://github.com/nodejs/node/pull/6349">#6349</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/43ce6fc8d2"><code>43ce6fc8d2</code></a>] - <strong>build</strong>: fix DESTCPU detection for binary target (Richard Lau) <a href="https://github.com/nodejs/node/pull/6310">#6310</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6dfe7aeed5"><code>6dfe7aeed5</code></a>] - <strong>cares</strong>: Support malloc(0) scenarios for AIX (Gireesh Punathil) <a href="https://github.com/nodejs/node/pull/6305">#6305</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2389006720"><code>2389006720</code></a>] - <strong>debugger</strong>: display array contents in repl (cjihrig) <a href="https://github.com/nodejs/node/pull/6448">#6448</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1c6809ce75"><code>1c6809ce75</code></a>] - <strong>debugger</strong>: introduce exec method for debugger (Jackson Tian)</li>
<li>[<a href="https://github.com/nodejs/node/commit/200b3ca9ed"><code>200b3ca9ed</code></a>] - <strong>deps</strong>: upgrade npm in LTS to 2.15.8 (Rebecca Turner) <a href="https://github.com/nodejs/node/pull/7412">#7412</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/49921e8819"><code>49921e8819</code></a>] - <strong>deps</strong>: backport 102e3e87e7 from V8 upstream (Myles Borins) <a href="https://github.com/nodejs/node/pull/7442">#7442</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/de00f91041"><code>de00f91041</code></a>] - <strong>deps</strong>: backport bc2e393 from v8 upstream (evan.lucas) <a href="https://github.com/nodejs/node/pull/3792">#3792</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1549899531"><code>1549899531</code></a>] - <strong>dgram,test</strong>: add addMembership/dropMembership tests (Rich Trott) <a href="https://github.com/nodejs/node/pull/6753">#6753</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0ba3c2ca66"><code>0ba3c2ca66</code></a>] - <strong>doc</strong>: fix layout problem in v4 changelog (Myles Borins) <a href="https://github.com/nodejs/node/pull/7394">#7394</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/98469ad84d"><code>98469ad84d</code></a>] - <strong>doc</strong>: correct args for cluster message event (Colin Ihrig) <a href="https://github.com/nodejs/node/pull/7297">#7297</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/67863f110b"><code>67863f110b</code></a>] - <strong>doc</strong>: update licenses (Myles Borins) <a href="https://github.com/nodejs/node/pull/7127">#7127</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c31eaad42d"><code>c31eaad42d</code></a>] - <strong>doc</strong>: clarify buffer class (Steve Mao) <a href="https://github.com/nodejs/node/pull/6914">#6914</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e0dd476fe5"><code>e0dd476fe5</code></a>] - <strong>doc</strong>: fix typos in timers topic to aid readability (Kevin Donahue) <a href="https://github.com/nodejs/node/pull/6916">#6916</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a8391bc9fc"><code>a8391bc9fc</code></a>] - <strong>doc</strong>: add jhamhader to collaborators (Yuval Brik) <a href="https://github.com/nodejs/node/pull/6946">#6946</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/22ca7b877b"><code>22ca7b877b</code></a>] - <strong>doc</strong>: add @othiym23 to list of collaborators (Forrest L Norvell) <a href="https://github.com/nodejs/node/pull/6945">#6945</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2c3c4e5819"><code>2c3c4e5819</code></a>] - <strong>doc</strong>: reference list of language-specific globals (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6900">#6900</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5a1a0b5ed1"><code>5a1a0b5ed1</code></a>] - <strong>doc</strong>: make the api doc print-friendly (Marian) <a href="https://github.com/nodejs/node/pull/6748">#6748</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/03db88e012"><code>03db88e012</code></a>] - <strong>doc</strong>: add bengl to collaborators (Bryan English) <a href="https://github.com/nodejs/node/pull/6921">#6921</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/fbf95dde94"><code>fbf95dde94</code></a>] - <strong>doc</strong>: Update DCO to v1.1 (William Kapke) <a href="https://github.com/nodejs/node/pull/6353">#6353</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/f23a9c39c0"><code>f23a9c39c0</code></a>] - <strong>doc</strong>: fix typo in Error.captureStackTrace (Mohsen) <a href="https://github.com/nodejs/node/pull/6811">#6811</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/30ab6a890c"><code>30ab6a890c</code></a>] - <strong>doc</strong>: fix name to match git log (Robert Jefe Lindstaedt) <a href="https://github.com/nodejs/node/pull/6880">#6880</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2b0f40ca16"><code>2b0f40ca16</code></a>] - <strong>doc</strong>: add note for fs.watch virtualized env (Robert Jefe Lindstaedt) <a href="https://github.com/nodejs/node/pull/6809">#6809</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3b461870be"><code>3b461870be</code></a>] - <strong>doc</strong>: Backport ee.once doc clarifications to 4.x. (Lance Ball) <a href="https://github.com/nodejs/node/pull/7103">#7103</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/eadb7e5b20"><code>eadb7e5b20</code></a>] - <strong>doc</strong>: subdivide TOC, add auxiliary links (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6167">#6167</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/107839c5dd"><code>107839c5dd</code></a>] - <strong>doc</strong>: no Node.js(1) (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6167">#6167</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/401325f9e2"><code>401325f9e2</code></a>] - <strong>doc</strong>: better example &amp; synopsis (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6167">#6167</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c654184f28"><code>c654184f28</code></a>] - <strong>doc</strong>: remove link to Sign in crypto.md (Kirill Fomichev) <a href="https://github.com/nodejs/node/pull/6812">#6812</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3e9288e466"><code>3e9288e466</code></a>] - <strong>doc</strong>: fix exec example in child_process (Evan Lucas) <a href="https://github.com/nodejs/node/pull/6660">#6660</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3d820e45b4"><code>3d820e45b4</code></a>] - <strong>doc</strong>: &quot;a&quot; -&gt; &quot;an&quot; in api/documentation.md (Anchika Agarwal) <a href="https://github.com/nodejs/node/pull/6689">#6689</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/352496daa2"><code>352496daa2</code></a>] - <strong>doc</strong>: move the readme newcomers section (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6681">#6681</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ac6b921ce5"><code>ac6b921ce5</code></a>] - <strong>doc</strong>: mention existence/purpose of module wrapper (Matt Harrison) <a href="https://github.com/nodejs/node/pull/6433">#6433</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/97d1fc0fc6"><code>97d1fc0fc6</code></a>] - <strong>doc</strong>: improve onboarding-extras.md formatting (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6548">#6548</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c9b144ddd4"><code>c9b144ddd4</code></a>] - <strong>doc</strong>: linkify remaining references to fs.Stats object (Kevin Donahue) <a href="https://github.com/nodejs/node/pull/6485">#6485</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d909c25a33"><code>d909c25a33</code></a>] - <strong>doc</strong>: fix the lint of an example in cluster.md (yorkie) <a href="https://github.com/nodejs/node/pull/6516">#6516</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/21d02f460f"><code>21d02f460f</code></a>] - <strong>doc</strong>: add missing underscore for markdown italics (Kevin Donahue) <a href="https://github.com/nodejs/node/pull/6529">#6529</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/18ecc779bb"><code>18ecc779bb</code></a>] - <strong>doc</strong>: ensure consistent grammar in node.1 file (justshiv) <a href="https://github.com/nodejs/node/pull/6426">#6426</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/52d9e7b61d"><code>52d9e7b61d</code></a>] - <strong>doc</strong>: fix a typo in __dirname section (William Luo) <a href="https://github.com/nodejs/node/pull/6473">#6473</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/de20235235"><code>de20235235</code></a>] - <strong>doc</strong>: remove all scrollbar styling (Claudio Rodriguez) <a href="https://github.com/nodejs/node/pull/6479">#6479</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a6f45b4eda"><code>a6f45b4eda</code></a>] - <strong>doc</strong>: Remove extra space in REPL example (Juan) <a href="https://github.com/nodejs/node/pull/6447">#6447</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/feda15b2b8"><code>feda15b2b8</code></a>] - <strong>doc</strong>: update build instructions for OS X (Rich Trott) <a href="https://github.com/nodejs/node/pull/6309">#6309</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3d1a3e4a30"><code>3d1a3e4a30</code></a>] - <strong>doc</strong>: change references to Stable to Current (Myles Borins) <a href="https://github.com/nodejs/node/pull/6318">#6318</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e28598b1ef"><code>e28598b1ef</code></a>] - <strong>doc</strong>: update authors (James M Snell) <a href="https://github.com/nodejs/node/pull/6373">#6373</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0f3a94acbd"><code>0f3a94acbd</code></a>] - <strong>doc</strong>: add JacksonTian to collaborators (Jackson Tian) <a href="https://github.com/nodejs/node/pull/6388">#6388</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d7d54c8fd2"><code>d7d54c8fd2</code></a>] - <strong>doc</strong>: add Minqi Pan to collaborators (Minqi Pan) <a href="https://github.com/nodejs/node/pull/6387">#6387</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/83721c6fd2"><code>83721c6fd2</code></a>] - <strong>doc</strong>: add eljefedelrodeodeljefe to collaborators (Robert Jefe Lindstaedt) <a href="https://github.com/nodejs/node/pull/6389">#6389</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b112fd1b4e"><code>b112fd1b4e</code></a>] - <strong>doc</strong>: add ronkorving to collaborators (ronkorving) <a href="https://github.com/nodejs/node/pull/6385">#6385</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ac60d9cc86"><code>ac60d9cc86</code></a>] - <strong>doc</strong>: add estliberitas to collaborators (Alexander Makarenko) <a href="https://github.com/nodejs/node/pull/6386">#6386</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/435cd56de5"><code>435cd56de5</code></a>] - <strong>doc</strong>: DCO anchor that doesn&#39;t change (William Kapke) <a href="https://github.com/nodejs/node/pull/6257">#6257</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7d8141dd1b"><code>7d8141dd1b</code></a>] - <strong>doc</strong>: add stefanmb to collaborators (Stefan Budeanu) <a href="https://github.com/nodejs/node/pull/6227">#6227</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6dfc96326d"><code>6dfc96326d</code></a>] - <strong>doc</strong>: add iWuzHere to collaborators (Imran Iqbal) <a href="https://github.com/nodejs/node/pull/6226">#6226</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3dbcc73159"><code>3dbcc73159</code></a>] - <strong>doc</strong>: add santigimeno to collaborators (Santiago Gimeno) <a href="https://github.com/nodejs/node/pull/6225">#6225</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ae3eb24a3d"><code>ae3eb24a3d</code></a>] - <strong>doc</strong>: add addaleax to collaborators (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6224">#6224</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/46ee7bb4ba"><code>46ee7bb4ba</code></a>] - <strong>doc</strong>: fix incorrect references in buffer docs (Amery) <a href="https://github.com/nodejs/node/pull/6194">#6194</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e3f78eb7c1"><code>e3f78eb7c1</code></a>] - <strong>doc</strong>: improve rendering of v4.4.5 changelog entry (Myles Borins) <a href="https://github.com/nodejs/node/pull/6958">#6958</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/bac87d01d9"><code>bac87d01d9</code></a>] - <strong>gitignore</strong>: adding .vs/ directory to .gitignore (Mike Kaufman) <a href="https://github.com/nodejs/node/pull/6070">#6070</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/93f2314dc2"><code>93f2314dc2</code></a>] - <strong>gitignore</strong>: ignore VS 2015 *.VC.opendb files (Mike Kaufman) <a href="https://github.com/nodejs/node/pull/6070">#6070</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c98aaf59bf"><code>c98aaf59bf</code></a>] - <strong>http</strong>: speed up checkIsHttpToken (Jackson Tian) <a href="https://github.com/nodejs/node/pull/4790">#4790</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/552e25cb6b"><code>552e25cb6b</code></a>] - <strong>lib,test</strong>: update in preparation for linter update (Rich Trott) <a href="https://github.com/nodejs/node/pull/6498">#6498</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/aaeeec4765"><code>aaeeec4765</code></a>] - <strong>lib,test,tools</strong>: alignment on variable assignments (Rich Trott) <a href="https://github.com/nodejs/node/pull/6869">#6869</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b3acbc5648"><code>b3acbc5648</code></a>] - <strong>net</strong>: replace <strong>defineGetter</strong> with defineProperty (Fedor Indutny) <a href="https://github.com/nodejs/node/pull/6284">#6284</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4c1eb5bf03"><code>4c1eb5bf03</code></a>] - <strong>repl</strong>: create history file with mode 0600 (Carl Lei) <a href="https://github.com/nodejs/node/pull/3394">#3394</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/90306bb81d"><code>90306bb81d</code></a>] - <strong>src</strong>: use size_t for http parser array size fields (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/5969">#5969</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/af41a63d0f"><code>af41a63d0f</code></a>] - <strong>src</strong>: replace ARRAY_SIZE with typesafe arraysize (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/5969">#5969</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/037291e31f"><code>037291e31f</code></a>] - <strong>src</strong>: make sure Utf8Value always zero-terminates (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7101">#7101</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a08a0179e9"><code>a08a0179e9</code></a>] - <strong>stream</strong>: ensure awaitDrain is increased once (David Halls) <a href="https://github.com/nodejs/node/pull/7292">#7292</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b73ec46dcb"><code>b73ec46dcb</code></a>] - <strong>stream</strong>: reset awaitDrain after manual .resume() (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7160">#7160</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/55319fe798"><code>55319fe798</code></a>] - <strong>stream_base</strong>: expose <code>bytesRead</code> getter (Fedor Indutny) <a href="https://github.com/nodejs/node/pull/6284">#6284</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0414d882ce"><code>0414d882ce</code></a>] - <strong>test</strong>: fix test-net-* error code check for getaddrinfo(3) (Natanael Copa) <a href="https://github.com/nodejs/node/pull/5099">#5099</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/be0bb5f5fc"><code>be0bb5f5fc</code></a>] - <strong>test</strong>: fix unreliable known_issues test (Rich Trott) <a href="https://github.com/nodejs/node/pull/6555">#6555</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ab50e82f42"><code>ab50e82f42</code></a>] - <strong>test</strong>: fix test-process-exec-argv flakiness (Santiago Gimeno) <a href="https://github.com/nodejs/node/pull/7128">#7128</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4e38655d5f"><code>4e38655d5f</code></a>] - <strong>test</strong>: refactor test-tls-reuse-host-from-socket (Rich Trott) <a href="https://github.com/nodejs/node/pull/6756">#6756</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1c4549a31e"><code>1c4549a31e</code></a>] - <strong>test</strong>: fix flaky test-stdout-close-catch (Santiago Gimeno) <a href="https://github.com/nodejs/node/pull/6808">#6808</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3b94e31245"><code>3b94e31245</code></a>] - <strong>test</strong>: robust handling of env for npm-test-install (Myles Borins) <a href="https://github.com/nodejs/node/pull/6797">#6797</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4067cde7ee"><code>4067cde7ee</code></a>] - <strong>test</strong>: abstract skip functionality to common (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/7114">#7114</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8b396e3d71"><code>8b396e3d71</code></a>] - <strong>test</strong>: fix test-debugger-repl-break-in-module (Rich Trott) <a href="https://github.com/nodejs/node/pull/6686">#6686</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/847b29c050"><code>847b29c050</code></a>] - <strong>test</strong>: fix test-debugger-repl-term (Rich Trott) <a href="https://github.com/nodejs/node/pull/6682">#6682</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1d68bdbe3f"><code>1d68bdbe3f</code></a>] - <strong>test</strong>: fix error message checks in test-module-loading (James M Snell) <a href="https://github.com/nodejs/node/pull/5986">#5986</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7e739ae159"><code>7e739ae159</code></a>] - <strong>test,tools</strong>: adjust function argument alignment (Rich Trott) <a href="https://github.com/nodejs/node/pull/7100">#7100</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/216486c2b6"><code>216486c2b6</code></a>] - <strong>tools</strong>: lint for function argument alignment (Rich Trott) <a href="https://github.com/nodejs/node/pull/7100">#7100</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6a76485ad7"><code>6a76485ad7</code></a>] - <strong>tools</strong>: update ESLint to 2.9.0 (Rich Trott) <a href="https://github.com/nodejs/node/pull/6498">#6498</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a31153c02c"><code>a31153c02c</code></a>] - <strong>tools</strong>: remove the minifying logic (Sakthipriyan Vairamani) <a href="https://github.com/nodejs/node/pull/6636">#6636</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/10bd1a73fd"><code>10bd1a73fd</code></a>] - <strong>tools</strong>: fix license-builder.sh again for ICU (Steven R. Loomis) <a href="https://github.com/nodejs/node/pull/6068">#6068</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0f6146c6c0"><code>0f6146c6c0</code></a>] - <strong>tools</strong>: add tests for the doctool (Ian Kronquist) <a href="https://github.com/nodejs/node/pull/6031">#6031</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/cc3645cff3"><code>cc3645cff3</code></a>] - <strong>tools</strong>: lint for alignment of variable assignments (Rich Trott) <a href="https://github.com/nodejs/node/pull/6869">#6869</a></li>
</ul>
<p>Windows 32-bit Installer: <a href="https://nodejs.org/dist/v4.4.7/node-v4.4.7-x86.msi">https://nodejs.org/dist/v4.4.7/node-v4.4.7-x86.msi</a><br>
Windows 64-bit Installer: <a href="https://nodejs.org/dist/v4.4.7/node-v4.4.7-x64.msi">https://nodejs.org/dist/v4.4.7/node-v4.4.7-x64.msi</a><br>
Windows 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.7/win-x86/node.exe">https://nodejs.org/dist/v4.4.7/win-x86/node.exe</a><br>
Windows 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.7/win-x64/node.exe">https://nodejs.org/dist/v4.4.7/win-x64/node.exe</a><br>
Mac OS X 64-bit Installer: <a href="https://nodejs.org/dist/v4.4.7/node-v4.4.7.pkg">https://nodejs.org/dist/v4.4.7/node-v4.4.7.pkg</a><br>
Mac OS X 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.7/node-v4.4.7-darwin-x64.tar.gz">https://nodejs.org/dist/v4.4.7/node-v4.4.7-darwin-x64.tar.gz</a><br>
Linux 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.7/node-v4.4.7-linux-x86.tar.xz">https://nodejs.org/dist/v4.4.7/node-v4.4.7-linux-x86.tar.xz</a><br>
Linux 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.7/node-v4.4.7-linux-x64.tar.xz">https://nodejs.org/dist/v4.4.7/node-v4.4.7-linux-x64.tar.xz</a><br>
Linux PPC LE 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.7/node-v4.4.7-linux-ppc64le.tar.xz">https://nodejs.org/dist/v4.4.7/node-v4.4.7-linux-ppc64le.tar.xz</a><br>
SunOS 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.7/node-v4.4.7-sunos-x86.tar.xz">https://nodejs.org/dist/v4.4.7/node-v4.4.7-sunos-x86.tar.xz</a><br>
SunOS 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.7/node-v4.4.7-sunos-x64.tar.xz">https://nodejs.org/dist/v4.4.7/node-v4.4.7-sunos-x64.tar.xz</a><br>
ARMv6 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.7/node-v4.4.7-linux-armv6l.tar.xz">https://nodejs.org/dist/v4.4.7/node-v4.4.7-linux-armv6l.tar.xz</a><br>
ARMv7 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.7/node-v4.4.7-linux-armv7l.tar.xz">https://nodejs.org/dist/v4.4.7/node-v4.4.7-linux-armv7l.tar.xz</a><br>
ARMv8 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.7/node-v4.4.7-linux-arm64.tar.xz">https://nodejs.org/dist/v4.4.7/node-v4.4.7-linux-arm64.tar.xz</a><br>
Source Code: <a href="https://nodejs.org/dist/v4.4.7/node-v4.4.7.tar.gz">https://nodejs.org/dist/v4.4.7/node-v4.4.7.tar.gz</a><br>
Other release files: <a href="https://nodejs.org/dist/v4.4.7/">https://nodejs.org/dist/v4.4.7/</a><br>
Documentation: <a href="https://nodejs.org/docs/v4.4.7/api/">https://nodejs.org/docs/v4.4.7/api/</a></p>
<p>Shasums (GPG signing hash: SHA512, file hash: SHA256):</p>
<pre><code>-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

1971386a2dcf4406b5bc414d111ea40b227cfebf396badd447c37ace0eef2fa9  node-v4.4.7-darwin-x64.tar.gz
33b08574815d20cdfa52cbc18ba68cc068a432b31f2f2ce3cd35b2b6dd83ced1  node-v4.4.7-darwin-x64.tar.xz
6c5cff955e7ffccc59386e79a811d868b97829fdf0accb2fc152da875171efde  node-v4.4.7-headers.tar.gz
de54185703f19087eac4ff29ddd24ca285f7ccbdca12bf38fe9e9a64c4ac6e09  node-v4.4.7-headers.tar.xz
a1e2faf3859976ac7322b950353044863c2e36ad6e2e09a8fc9f80f72fd01b18  node-v4.4.7-linux-arm64.tar.gz
33cc2a5457e56e976e4744b1df87f32f478ae9bb5a0799f01743e937f6f170a5  node-v4.4.7-linux-arm64.tar.xz
ba51e7487a15b31823e352fe3e3c949fa754fba7cffc4b82f7421c374f22980f  node-v4.4.7-linux-armv6l.tar.gz
6ef0397b71f14d3d9a7ccdd8a5e4217923c59ff348ce87bd5c1fdb751578b990  node-v4.4.7-linux-armv6l.tar.xz
68a6b3dd2b6554e89d05ed6df4c9cf33763c3eea63041ee2c8b189400f07567b  node-v4.4.7-linux-armv7l.tar.gz
66e6632e7c6dbde5009d1836b417d5d0d1471d07521dd3ba2af4a4b8edc18cf5  node-v4.4.7-linux-armv7l.tar.xz
a2202e69b97259d409b1db653d50305570f78b57a9f48a55dd63e0ceced2dad6  node-v4.4.7-linux-ppc64le.tar.gz
da3886e025328303c104a2399cb6aa7758e5bdf688e9fa99869227c5411199f0  node-v4.4.7-linux-ppc64le.tar.xz
781cb67ac07312c8e6d1c434965f0dca1cd04a525971e28811287af5025563b0  node-v4.4.7-linux-ppc64.tar.gz
386a725604f927b7dc113909f69567e7a750736616cb74aec3ed63afdf2a22fb  node-v4.4.7-linux-ppc64.tar.xz
5ad10465cc9d837c1fda8db0fd1bdc1a4ce823dd6afbc533ac2127e6a9a64133  node-v4.4.7-linux-x64.tar.gz
f28beed1b553696c14af078e484439e7c0eb6510b5608235f60873ba238e3907  node-v4.4.7-linux-x64.tar.xz
604c4f85ef00a13c172465c9672a2a0f13524921e255eeb75242afb42af6d814  node-v4.4.7-linux-x86.tar.gz
d2750b7efc6c218e9d543acb1639e3b499f8d720a292f0514744bb69def8cd7d  node-v4.4.7-linux-x86.tar.xz
7473a6e4974478d2b3f4fab2f1af804f5c30f06ba6ca736be66b63c410ff16e7  node-v4.4.7.pkg
d86382a337795d054d07677643cd049df545186d46528b8df7041e29ceb84779  node-v4.4.7-sunos-x64.tar.gz
ddded367e605d502e42f3df08895552f0901ccb35a025bfd4c9a2dfe86d044d3  node-v4.4.7-sunos-x64.tar.xz
d7bae99460f1fb35456303630c743d9c467449d2f56bd48f1dd96f1ecabb7da6  node-v4.4.7-sunos-x86.tar.gz
4481f5d0f50fd7eafe6d7a87daf15513ce38d6b0538646c127c39ebc64746e0d  node-v4.4.7-sunos-x86.tar.xz
cbe1c6e421969dd5639d0fbaa6d3c1f56c0463b87efe75be8594638da4d8fc4f  node-v4.4.7.tar.gz
1ef900b9cb3ffb617c433a3247a9d67ff36c9455cbc9c34175bee24bdbfdf731  node-v4.4.7.tar.xz
cb8bddc884cf8c34711f0baae68faebeb5bb81015974ca66044bed918536cc16  node-v4.4.7-x64.msi
e0985e3837921a0f9e5c3c4c472936d6113a7b4c0b202db69adb2b8aa52c8b27  node-v4.4.7-x86.msi
dccadddf0091b1686108061a34e247c552a71b7e1e9f17cd61bead8c041cdd7c  win-x64/node.exe
60233a0e265acb671a0fdb1db7c12a1b8668242a9665de6a8daf84e7610c088c  win-x64/node.lib
3b1b9673e7bcb89eb3dc8c345ee5f6ff567e838736c0f38e965281658421a30a  win-x86/node.exe
550c845c890dbd9cc1a52c7bc7af8a4b3a50708f069dda454393adcfa4428557  win-x86/node.lib
-----BEGIN PGP SIGNATURE-----

iQEcBAEBAgAGBQJXcv4iAAoJEJM7AfQLXKlGX7EH/j7D1dK1M3oT5H75lEwcomc7
Ezy+lq5bztHP9ghWq+4rmQB8/1FaW+0wk4nKyWb0S+NjjbJPeAaZ2mf5QLiKTjmC
5GTwtjEJy9daJ9+OCRVq0DNYJK0XdrsE/FFTGrY/EXE3f6SfKJmd3uW6S8NZt+cX
AaRkNAHvAkUmwDP+3bMKBr6QZZwGVddAQOMpnbXHjcdDHmWv8uh5+sR9KB3FsTJ4
lESEx4xcHkPUVBKveNqVfnbsSivPmpLcW6VYRWNOXyH7wFfYgtUGoeQ46wfhl1q9
D/hFCVLpxBNr2z6qLU+7fxInJzRPT9+2DBk1PN81axTG53AgUSNb11I2naVue/M=
=rofn
-----END PGP SIGNATURE-----
</code></pre>]]></description><link>https://nodejs.org/en/blog/release/v4.4.7</link><guid isPermaLink="true">https://nodejs.org/en/blog/release/v4.4.7</guid><dc:creator><![CDATA[Myles Borins]]></dc:creator><pubDate>Tue, 28 Jun 2016 22:54:11 GMT</pubDate></item><item><title><![CDATA[Weekly Update - June 26th, 2016]]></title><description><![CDATA[<h3 id="header-important-security-releases">Important security releases<a name="important-security-releases" class="anchor" href="#important-security-releases" aria-labelledby="header-important-security-releases"></a></h3><p>These are security releases. All Node.js users should consult the security release summary at <a href="https://nodejs.org/en/blog/vulnerability/june-2016-security-releases">https://nodejs.org/en/blog/vulnerability/june-2016-security-releases</a> for details on patched vulnerabilities.</p>
<ul>
<li><a href="https://nodejs.org/en/blog/release/v5.12.0/">Node v5.12.0 (Stable)</a></li>
<li><a href="https://nodejs.org/en/blog/release/v4.4.6/">Node v4.4.6 (LTS)</a></li>
<li><a href="https://nodejs.org/en/blog/release/v0.12.15/">Node v0.12.15 (Maintenance)</a></li>
<li><a href="https://nodejs.org/en/blog/release/v0.10.46/">Node v0.10.46 (Maintenance)</a></li>
</ul>
<h3 id="header-binaries-for-linux-on-power-systems">Binaries for Linux on Power Systems<a name="binaries-for-linux-on-power-systems" class="anchor" href="#binaries-for-linux-on-power-systems" aria-labelledby="header-binaries-for-linux-on-power-systems"></a></h3><p>Community downloads now include binaries for Linux on Power Systems with big endian in addition to the existing little endian binaries.</p>
<p>See <a href="https://nodejs.org/en/download/">https://nodejs.org/en/download/</a>.</p>
<h3 id="header-community-updates">Community Updates<a name="community-updates" class="anchor" href="#community-updates" aria-labelledby="header-community-updates"></a></h3><ul>
<li><a href="https://blog.risingstack.com/node-js-logging-tutorial/">How to Get Node.js Logging Right</a>: The aim of this article is to provide help with logging in Node.js modules, applications and distributed systems</li>
<li><a href="https://blog.risingstack.com/node-hero-node-js-unit-testing-tutorial/">Node Hero - Node.js Unit Testing Tutorial</a>: you can learn how to get started with Node.js and deliver software products using it.
If you have spotted or written something about Node.js, do come over to our <a href="https://github.com/nodejs/evangelism">Evangelism team repo</a> and suggest it on the <a href="https://github.com/nodejs/evangelism/issues">Issues page</a>, specifically the Weekly Updates issue.</li>
</ul>
<h3 id="header-upcoming-events">Upcoming Events<a name="upcoming-events" class="anchor" href="#upcoming-events" aria-labelledby="header-upcoming-events"></a></h3><ul>
<li><a href="https://2016.nodeconf.com.ar">NodeConf Argentina</a>: 18 - 19 November, 2016</li>
</ul>
<p>Have an event about Node.js coming up? You can put your events here through the <a href="https://github.com/nodejs/evangelism">Evangelism team repo</a> and announce it in the <a href="https://github.com/nodejs/evangelism/issues">Issues page</a>, specifically the Weekly Updates issue.</p>
]]></description><link>https://nodejs.org/en/blog/weekly-updates/weekly-update.2016-06-26</link><guid isPermaLink="true">https://nodejs.org/en/blog/weekly-updates/weekly-update.2016-06-26</guid><dc:creator><![CDATA[Minwoo Jung (github.com/JungMinu)]]></dc:creator><pubDate>Sun, 26 Jun 2016 12:00:00 GMT</pubDate></item><item><title><![CDATA[Node v5.12.0 (Stable)]]></title><description><![CDATA[<h3 id="header-notable-changes">Notable changes<a name="notable-changes" class="anchor" href="#notable-changes" aria-labelledby="header-notable-changes"></a></h3><p>This is a security release. All Node.js users should consult the security release summary at <a href="https://nodejs.org/en/blog/vulnerability/june-2016-security-releases">https://nodejs.org/en/blog/vulnerability/june-2016-security-releases</a> for details on patched vulnerabilities.</p>
<ul>
<li><strong>buffer</strong><ul>
<li>backport allocUnsafeSlow (Сковорода Никита Андреевич) <a href="https://github.com/nodejs/node/pull/7169">#7169</a></li>
<li>ignore negative allocation lengths (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7221">#7221</a></li>
</ul>
</li>
<li><strong>deps</strong>: backport 3a9bfec from v8 upstream (Ben Noordhuis) <a href="https://github.com/nodejs/node-private/pull/40">nodejs/node-private#40</a><ul>
<li>Fixes a Buffer overflow vulnerability discovered in v8. More details can be found in the CVE (CVE-2016-1699).</li>
</ul>
</li>
</ul>
<h3 id="header-commits">Commits<a name="commits" class="anchor" href="#commits" aria-labelledby="header-commits"></a></h3><ul>
<li>[<a href="https://github.com/nodejs/node/commit/0ca0827b71"><code>0ca0827b71</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>buffer</strong>: backport allocUnsafeSlow (Сковорода Никита Андреевич) <a href="https://github.com/nodejs/node/pull/7169">#7169</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/27785aeb37"><code>27785aeb37</code></a>] - <strong>buffer</strong>: ignore negative allocation lengths (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7221">#7221</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/34b96c1322"><code>34b96c1322</code></a>] - <strong>deps</strong>: backport 3a9bfec from v8 upstream (Ben Noordhuis) <a href="https://github.com/nodejs/node-private/pull/40">nodejs/node-private#40</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2ebeb82852"><code>2ebeb82852</code></a>] - <strong>test</strong>: fix test-net-* error code check for getaddrinfo(3) (Natanael Copa) <a href="https://github.com/nodejs/node/pull/5099">#5099</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/03d36aea4f"><code>03d36aea4f</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>test</strong>: add buffer testcase for resetting kZeroFill (Сковорода Никита Андреевич) <a href="https://github.com/nodejs/node/pull/7169">#7169</a></li>
</ul>
<p>Windows 32-bit Installer: <a href="https://nodejs.org/dist/v5.12.0/node-v5.12.0-x86.msi">https://nodejs.org/dist/v5.12.0/node-v5.12.0-x86.msi</a><br>
Windows 64-bit Installer: <a href="https://nodejs.org/dist/v5.12.0/node-v5.12.0-x64.msi">https://nodejs.org/dist/v5.12.0/node-v5.12.0-x64.msi</a><br>
Windows 32-bit Binary: <a href="https://nodejs.org/dist/v5.12.0/win-x86/node.exe">https://nodejs.org/dist/v5.12.0/win-x86/node.exe</a><br>
Windows 64-bit Binary: <a href="https://nodejs.org/dist/v5.12.0/win-x64/node.exe">https://nodejs.org/dist/v5.12.0/win-x64/node.exe</a><br>
Mac OS X 64-bit Installer: <a href="https://nodejs.org/dist/v5.12.0/node-v5.12.0.pkg">https://nodejs.org/dist/v5.12.0/node-v5.12.0.pkg</a><br>
Mac OS X 64-bit Binary: <a href="https://nodejs.org/dist/v5.12.0/node-v5.12.0-darwin-x64.tar.gz">https://nodejs.org/dist/v5.12.0/node-v5.12.0-darwin-x64.tar.gz</a><br>
Linux 32-bit Binary: <a href="https://nodejs.org/dist/v5.12.0/node-v5.12.0-linux-x86.tar.xz">https://nodejs.org/dist/v5.12.0/node-v5.12.0-linux-x86.tar.xz</a><br>
Linux 64-bit Binary: <a href="https://nodejs.org/dist/v5.12.0/node-v5.12.0-linux-x64.tar.xz">https://nodejs.org/dist/v5.12.0/node-v5.12.0-linux-x64.tar.xz</a><br>
Linux PPC LE 64-bit Binary: <a href="https://nodejs.org/dist/v5.12.0/node-v5.12.0-linux-ppc64le.tar.xz">https://nodejs.org/dist/v5.12.0/node-v5.12.0-linux-ppc64le.tar.xz</a><br>
SunOS 32-bit Binary: <a href="https://nodejs.org/dist/v5.12.0/node-v5.12.0-sunos-x86.tar.xz">https://nodejs.org/dist/v5.12.0/node-v5.12.0-sunos-x86.tar.xz</a><br>
SunOS 64-bit Binary: <a href="https://nodejs.org/dist/v5.12.0/node-v5.12.0-sunos-x64.tar.xz">https://nodejs.org/dist/v5.12.0/node-v5.12.0-sunos-x64.tar.xz</a><br>
ARMv6 32-bit Binary: <a href="https://nodejs.org/dist/v5.12.0/node-v5.12.0-linux-armv6l.tar.xz">https://nodejs.org/dist/v5.12.0/node-v5.12.0-linux-armv6l.tar.xz</a><br>
ARMv7 32-bit Binary: <a href="https://nodejs.org/dist/v5.12.0/node-v5.12.0-linux-armv7l.tar.xz">https://nodejs.org/dist/v5.12.0/node-v5.12.0-linux-armv7l.tar.xz</a><br>
ARMv8 64-bit Binary: <a href="https://nodejs.org/dist/v5.12.0/node-v5.12.0-linux-arm64.tar.xz">https://nodejs.org/dist/v5.12.0/node-v5.12.0-linux-arm64.tar.xz</a><br>
Source Code: <a href="https://nodejs.org/dist/v5.12.0/node-v5.12.0.tar.gz">https://nodejs.org/dist/v5.12.0/node-v5.12.0.tar.gz</a><br>
Other release files: <a href="https://nodejs.org/dist/v5.12.0/">https://nodejs.org/dist/v5.12.0/</a><br>
Documentation: <a href="https://nodejs.org/docs/v5.12.0/api/">https://nodejs.org/docs/v5.12.0/api/</a></p>
<p>Shasums (GPG signing hash: SHA512, file hash: SHA256):</p>
<pre><code>-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

bcbfb16896d4b13e08184343420ab00822e9ef09a72f9dbc41ef0cfcc84b99c2  node-v5.12.0-darwin-x64.tar.gz
2778a6344e5285af6412c66ef967cd3da2edb3262f19c06e484a062191f43019  node-v5.12.0-darwin-x64.tar.xz
a36e815ac5a4d7d3f486deda97359ae8e01d42259bf4a2be4fbbf41efd585c70  node-v5.12.0-headers.tar.gz
27deab94f424f38202a6ea8e945a542da71fe8f0808d69899ba4a855293bbb92  node-v5.12.0-headers.tar.xz
db02351d2c205a3c60218f937a41a8b8d665f326e7dfa263954ab39f8a8a2bc3  node-v5.12.0-linux-arm64.tar.gz
3eeaed6ce895c551903164966f950533c200ac24f68bdaebaab0e29e9923dc6d  node-v5.12.0-linux-arm64.tar.xz
f58b9db77eb82830157f814704e8c3b3ba3420079a8ded3ad39302a33e3a30af  node-v5.12.0-linux-armv6l.tar.gz
88a102d0d2614b088987759089b9d4351e9941a2e7095350f352a5eb4eafd0c6  node-v5.12.0-linux-armv6l.tar.xz
da51a7025772766453f330b3274a12381995e07d68c99c55357767171af4c538  node-v5.12.0-linux-armv7l.tar.gz
6ac1d3ec0cd5cb797cb641bfd170bfb19ffe96967fc90ed166c710e8a0841b5f  node-v5.12.0-linux-armv7l.tar.xz
5cde9c115aade3d3eac494106ad29a2e0743a19516aa8a4ed531783292c7641f  node-v5.12.0-linux-ppc64le.tar.gz
0413665e0d3fca6c58fec9301485bcbbc6f0336d64c0a591121538a7f969bab6  node-v5.12.0-linux-ppc64le.tar.xz
a57642f7aa59f7a5248fd5368217f7c7218ae889664ab8974af468797bbfa7bb  node-v5.12.0-linux-ppc64.tar.gz
f9b252f201b29b10c7d774db79eddeae782a5b8d1478e0ed5146036d4dbe5bb2  node-v5.12.0-linux-ppc64.tar.xz
c0f459152aa87aba8a019a95899352170db0d8d52c860715c88356cb253fe2c4  node-v5.12.0-linux-x64.tar.gz
619fc1d14ee0c92894cf01bf1a47f5bae321ac04dfeb4cea6a2b6ce65832df79  node-v5.12.0-linux-x64.tar.xz
1ee1ef4e9f8bfb2976f35ca10658f3828cae10ef462d3fee7c3f159a3e21365b  node-v5.12.0-linux-x86.tar.gz
6a83c52fa00c72cbc90a94dc392636fa4a5f1543311a4838c6ad87f703d67200  node-v5.12.0-linux-x86.tar.xz
8835e19bff36fe2a0120e8b189aa33ea87e99eb8b08605212a5ddb8fb63bcaf2  node-v5.12.0.pkg
e5738517163e9409457ff2fe434aa410b70064ba8639a38173decc430a87c546  node-v5.12.0-sunos-x64.tar.gz
d3f72ebebb31c081b794c09941184e4744852552b1b32e4121cdc129c41d6a58  node-v5.12.0-sunos-x64.tar.xz
b3831faef7112f4bd71dd4dff3f2296c8ee1f4f8e7b3adfdd205caa91adde198  node-v5.12.0-sunos-x86.tar.gz
ddd41de09925860e383ed55d0251e5040ff5637c6504c9a6891eb167d3ff74db  node-v5.12.0-sunos-x86.tar.xz
250c12a561d7319e71e142ee92ab682494c7823d81ce24703c80eb52bdf9ba42  node-v5.12.0.tar.gz
4f926373f11f2a25156eee1804ec012eb912c42e5d34fc2909889da22efdadfe  node-v5.12.0.tar.xz
afc6be86edc989c40a7019dfce370819448a2b43c1a641d12ee9efc6391a23a8  node-v5.12.0-x64.msi
b3fc857e4925418ec43063606ce01134f91a20be8c7b6a0dbf0a9093636b40f9  node-v5.12.0-x86.msi
cf27938a7fb5c983eb46cf9f27190016832d254ed96227d7720af299d2d75f1e  win-x64/node.exe
2938e21edafdb5bfaabc7ea14b34c77b9d8af4a7a5d389178ca902c06f5a3d6b  win-x64/node.lib
92c22479607ab269eae7c6040cb059757fd0a29ddc188d3a25e46ee485e6e221  win-x86/node.exe
aebf98d723036e2a3c458baf21a93eb45f1a42da794fc29dc47d01b5c70dae3d  win-x86/node.lib
-----BEGIN PGP SIGNATURE-----
Comment: GPGTools - https://gpgtools.org

iQIcBAEBCgAGBQJXbG57AAoJELY7U1pMIGypxHIQAKJnkwx/SDOJGquRw1Wl4V9W
A6NzAzRDfCE2NYeglWMqinTjSFJkeYP98z4x63cE9uctxJns23z+PfPkRHZDbsSB
Y/mHAm5ntbk8cndISgBiK55QiFaYzVFaw3A1XoIozTGR4irbPbaj28iUbY4T8q2+
O3GfcDKD+SXS1AtTZ+P2GE6rxE0qkBYHMxM7b7lD5VXnzGr4Cyg4jSaD7w6PK2yG
u986AW9EJjKigZtvy3nkO27+ZNx3jDNskWBpT6YjhAKSs18/qTGHgOL2Jtk6rdfv
Vd/sumfIIlDUFXT/g01/leYbOHyIMmQYASm5XBA5UBoQuuapRvCVAe0SuRKe/9wV
bD/DfDORzdJUuebvdxx9K+iMbFGD2ADKmFAomjxyTynZup0VrmeSUQtbpGucp0X/
16Li8NDBD4WRXHYjcqXujJ4+cs/DZ6DUuqloCcB4cigs4sAyuqPVnZu5HTfBMzox
T1HWbDh2hE6HqsXcYbCM1G7yXLH7VTGaJJifZNP1AL2C24Xa8zWbhOAcJ4JB1Z8J
NQ2nW68AnXMh54PJhR/aBQLj3BC16i3RbWc8bhu85SpTVAO4y8W6i14FALJapXNz
6tEa/LTc9aH5RiugUfZzWBBdl/FfdeKyRofaN7PbJwTqo7XCJxZ11wbYwYR35Edo
4nsbRK+UN1gwWqSMvLXz
=H+Rd
-----END PGP SIGNATURE-----
</code></pre>]]></description><link>https://nodejs.org/en/blog/release/v5.12.0</link><guid isPermaLink="true">https://nodejs.org/en/blog/release/v5.12.0</guid><dc:creator><![CDATA[Evan Lucas]]></dc:creator><pubDate>Thu, 23 Jun 2016 23:31:02 GMT</pubDate></item><item><title><![CDATA[Node v4.4.6 (LTS)]]></title><description><![CDATA[<h3 id="header-notable-changes">Notable Changes<a name="notable-changes" class="anchor" href="#notable-changes" aria-labelledby="header-notable-changes"></a></h3><p>This is an important security release. All Node.js users should consult the security release summary at nodejs.org for details on patched vulnerabilities.</p>
<p>This release is specifically related to a Buffer overflow vulnerability discovered in v8, more details can be found <a href="https://www.cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-1669">in the CVE</a></p>
<h3 id="header-commits">Commits<a name="commits" class="anchor" href="#commits" aria-labelledby="header-commits"></a></h3><ul>
<li>[<a href="https://github.com/nodejs/node/commit/134c3b3977"><code>134c3b3977</code></a>] - <strong>deps</strong>: backport 3a9bfec from v8 upstream (Ben Noordhuis) <a href="https://github.com/nodejs/node-private/pull/38">nodejs/node-private#38</a></li>
</ul>
<p>Windows 32-bit Installer: <a href="https://nodejs.org/dist/v4.4.6/node-v4.4.6-x86.msi">https://nodejs.org/dist/v4.4.6/node-v4.4.6-x86.msi</a><br>
Windows 64-bit Installer: <a href="https://nodejs.org/dist/v4.4.6/node-v4.4.6-x64.msi">https://nodejs.org/dist/v4.4.6/node-v4.4.6-x64.msi</a><br>
Windows 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.6/win-x86/node.exe">https://nodejs.org/dist/v4.4.6/win-x86/node.exe</a><br>
Windows 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.6/win-x64/node.exe">https://nodejs.org/dist/v4.4.6/win-x64/node.exe</a><br>
Mac OS X 64-bit Installer: <a href="https://nodejs.org/dist/v4.4.6/node-v4.4.6.pkg">https://nodejs.org/dist/v4.4.6/node-v4.4.6.pkg</a><br>
Mac OS X 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.6/node-v4.4.6-darwin-x64.tar.gz">https://nodejs.org/dist/v4.4.6/node-v4.4.6-darwin-x64.tar.gz</a><br>
Linux 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.6/node-v4.4.6-linux-x86.tar.xz">https://nodejs.org/dist/v4.4.6/node-v4.4.6-linux-x86.tar.xz</a><br>
Linux 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.6/node-v4.4.6-linux-x64.tar.xz">https://nodejs.org/dist/v4.4.6/node-v4.4.6-linux-x64.tar.xz</a><br>
Linux PPC LE 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.6/node-v4.4.6-linux-ppc64le.tar.xz">https://nodejs.org/dist/v4.4.6/node-v4.4.6-linux-ppc64le.tar.xz</a><br>
SunOS 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.6/node-v4.4.6-sunos-x86.tar.xz">https://nodejs.org/dist/v4.4.6/node-v4.4.6-sunos-x86.tar.xz</a><br>
SunOS 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.6/node-v4.4.6-sunos-x64.tar.xz">https://nodejs.org/dist/v4.4.6/node-v4.4.6-sunos-x64.tar.xz</a><br>
ARMv6 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.6/node-v4.4.6-linux-armv6l.tar.xz">https://nodejs.org/dist/v4.4.6/node-v4.4.6-linux-armv6l.tar.xz</a><br>
ARMv7 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.6/node-v4.4.6-linux-armv7l.tar.xz">https://nodejs.org/dist/v4.4.6/node-v4.4.6-linux-armv7l.tar.xz</a><br>
ARMv8 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.6/node-v4.4.6-linux-arm64.tar.xz">https://nodejs.org/dist/v4.4.6/node-v4.4.6-linux-arm64.tar.xz</a><br>
Source Code: <a href="https://nodejs.org/dist/v4.4.6/node-v4.4.6.tar.gz">https://nodejs.org/dist/v4.4.6/node-v4.4.6.tar.gz</a><br>
Other release files: <a href="https://nodejs.org/dist/v4.4.6/">https://nodejs.org/dist/v4.4.6/</a><br>
Documentation: <a href="https://nodejs.org/docs/v4.4.6/api/">https://nodejs.org/docs/v4.4.6/api/</a></p>
<p>Shasums (GPG signing hash: SHA512, file hash: SHA256):</p>
<pre><code>-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

2afbc5f48ce3b3bb9b9a46e64b8a23c08a448bf8bf89c10a5a053fd0ec024a07  node-v4.4.6-darwin-x64.tar.gz
0b431bf1aa7fe9cd161a6d0b99da040ab67f98ed5e779c031f8c3420ad11b814  node-v4.4.6-darwin-x64.tar.xz
75c114e9f4f3a10e5b8116a3ead9123b3982d951c392ed7a6c737638035dca21  node-v4.4.6-headers.tar.gz
9389abec4b36775c4be959454dafb77e9872cbc57ccb5a10f7ef63c9936a503d  node-v4.4.6-headers.tar.xz
de0c093ed38934f25cc5eaa1ecd84878fe123e0632db3bf4c3ffcd8af107a62d  node-v4.4.6-linux-arm64.tar.gz
5a87874f63b534165d24d922b1be4d4d44da6a490832256b0a7a490915d8b719  node-v4.4.6-linux-arm64.tar.xz
372087f61b2c53fbeb84b5cd0cdb508ef1c7d1fcecf9a56393d957d61ae4b2c2  node-v4.4.6-linux-armv6l.tar.gz
0d4d5e1fbd97a1b349f7bb4d7f36529db75166f2ca0d28ec40aa78834d83acd6  node-v4.4.6-linux-armv6l.tar.xz
736ca6a35cbae8870cf819362a699a9639c76eed27b6ae4f667713fbc9ec809f  node-v4.4.6-linux-armv7l.tar.gz
6a9499375aafa23e46c72a86827ba5024727e2a66b2a5a4fcef458d1b59a76e1  node-v4.4.6-linux-armv7l.tar.xz
ce02faf08867b01ba7bdb1431cd6750a13e8742ad30d6e9bdc2b36a417b578ad  node-v4.4.6-linux-ppc64le.tar.gz
4ac5f5f4ed016c99f629a55c7c848f7feeedc616cfd2d788d5b57da832c39d8c  node-v4.4.6-linux-ppc64le.tar.xz
228685937ffd2aad0999460616bfa25fa17538b52df6b328481142c1bbd565eb  node-v4.4.6-linux-ppc64.tar.gz
1e5ddb72c71d972f62530a78110ffe82a6446665a595ca172057034dc95d747d  node-v4.4.6-linux-ppc64.tar.xz
bef5cc1db30b56d3f40b123c6a40529b6f69c403fa969ec2654b62d4cac95e26  node-v4.4.6-linux-x64.tar.gz
5a5633419069b2f049b8429165ab93712f8532a8b1a8fc1e733afc4d848c581c  node-v4.4.6-linux-x64.tar.xz
86b7d4374b27ecb8d2f63b371147c0f7f7cf8b80f37ff740f42e2f074184329e  node-v4.4.6-linux-x86.tar.gz
22d039fa55ecdb3644b49fd3ca5a9d9eb101ee07681f11afa63bbb60150bc791  node-v4.4.6-linux-x86.tar.xz
0ff8facfc59cbe4bbbce559962d783293cbc540fe78230ab6dd8982dd9011bde  node-v4.4.6.pkg
d1fa8b52c126a092f7c6d4ce95e12cf39d014e9593700d792aa38f529deb2f1e  node-v4.4.6-sunos-x64.tar.gz
8de91bc3b07cf6325336156bf421e8258039fb465d095bdbaabf788b216c3b27  node-v4.4.6-sunos-x64.tar.xz
cd0c3d55eb0d80787348cc6841ec9381746ef4992bae629d9b34671ef0270c29  node-v4.4.6-sunos-x86.tar.gz
069f80346c74cf0db22ed362968ecef0e03f1750bed6a531bf9d200a6e0177c5  node-v4.4.6-sunos-x86.tar.xz
45eab3d415616e5831ba5961b67cec5423e1f9c175ca7e331de7f560c2998d9f  node-v4.4.6.tar.gz
0f6bbfbea525469c91932b1aac35e0810e6bcda96f1c720e42a433942ee66106  node-v4.4.6.tar.xz
cff69594b5cf2ad1bf9d9c706ab43a8afd7531e187fa44cec626618b49164cce  node-v4.4.6-x64.msi
78df65d9177034d805d0f687de179846b6467216bc915b7998305e26e9d59b06  node-v4.4.6-x86.msi
6f12a13513d6c26aff1035bf1b6da4790370b0c54b1fd2e1c551a842c3a2558d  win-x64/node.exe
3c81920c8f9ccdfa832de847b8fe75aca66844075880073cebb420245286e1cc  win-x64/node.lib
d1350a5940dbea27f9d65c47dbe2d2ebf3790f2caad3d7eafa07c48c83946d57  win-x86/node.exe
cb7b950cd0ab71c850680bfbcec783ade4ef27c77015c277670614f3ba56cdd4  win-x86/node.lib
-----BEGIN PGP SIGNATURE-----

iQEcBAEBAgAGBQJXbGvwAAoJEJM7AfQLXKlGwroH/22IUdoCh8sl0ddlgZ0gNTM6
/0dPRedM4U2nQrME7nugv3ZAdbGtU/UamKPGJn/yXGgHKbv7jL1oM3IpNTmwsTVs
me9fXUi/w+rzcz+xrVlIucAhsAKkWWKmT6Ox1YyDSpe00pEFs3cBC5LCGpCpn0WG
05Bj5udTurHQxrAUYAlro8uRXKMd/FHKu9eW587tQ6q3Q0stmPJ3FMnfNglk0eKk
fWwORVZt8RNPJqKhaEGB9RusW0sVooHyUe6gT20biQNJ4H2pLH7DT/EYfV44SDkO
piQ2ObJkJ4cIv58t4aKY8CaT+FnQ1jJNAdb5C6JK6FKaUvpE4dW5UPU5PMEVJXs=
=cA0d
-----END PGP SIGNATURE-----
</code></pre>]]></description><link>https://nodejs.org/en/blog/release/v4.4.6</link><guid isPermaLink="true">https://nodejs.org/en/blog/release/v4.4.6</guid><dc:creator><![CDATA[Myles Borins]]></dc:creator><pubDate>Thu, 23 Jun 2016 23:29:12 GMT</pubDate></item><item><title><![CDATA[Node v0.12.15 (Maintenance)]]></title><description><![CDATA[<h3 id="header-notable-changes">Notable changes:<a name="notable-changes" class="anchor" href="#notable-changes" aria-labelledby="header-notable-changes"></a></h3><p>This is a security release. All Node.js users should consult the security release summary at <a href="https://nodejs.org/en/blog/vulnerability/june-2016-security-releases/">https://nodejs.org/en/blog/vulnerability/june-2016-security-releases/</a> for details on patched vulnerabilities.</p>
<ul>
<li><strong>libuv</strong>: (CVE-2014-9748) Fixes a bug in the read/write locks implementation for Windows XP and Windows 2003 that can lead to undefined and potentially unsafe behaviour. More information can be found at <a href="https://github.com/libuv/libuv/issues/515">https://github.com/libuv/libuv/issues/515</a> or at <a href="https://nodejs.org/en/blog/vulnerability/june-2016-security-releases/">https://nodejs.org/en/blog/vulnerability/june-2016-security-releases/</a>.</li>
<li><strong>V8</strong>: (CVE-2016-1669) Fixes a potential Buffer overflow vulnerability discovered in V8, more details can be found in the CVE at <a href="https://www.cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-1669">https://www.cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-1669</a> or at <a href="https://nodejs.org/en/blog/vulnerability/june-2016-security-releases/">https://nodejs.org/en/blog/vulnerability/june-2016-security-releases/</a>.</li>
</ul>
<h3 id="header-commits">Commits:<a name="commits" class="anchor" href="#commits" aria-labelledby="header-commits"></a></h3><ul>
<li>[da8501edf6] - deps: backport bd1777fd from libuv upstream (Rod Vagg)</li>
<li>[9207a00f8e] - deps: backport 85adf43e from libuv upstream (Rod Vagg)</li>
<li>[9627f34230] - deps: backport 98239224 from libuv upstream (Rod Vagg)</li>
<li>[5df21b2e36] - deps: backport 9a4fd268 from libuv upstream (Rod Vagg)</li>
<li>[e75de35057] - deps: backport 3eb6764a from libuv upstream (Rod Vagg)</li>
<li>[a113e02f16] - deps: backport 3a9bfec from v8 upstream (Ben Noordhuis)</li>
<li>[8138055c88] - test: fix test failure due to expired certificates (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7195">https://github.com/nodejs/node/pull/7195</a></li>
</ul>
<p>Windows 32-bit Installer: <a href="https://nodejs.org/dist/v0.12.15/node-v0.12.15-x86.msi">https://nodejs.org/dist/v0.12.15/node-v0.12.15-x86.msi</a><br>
Windows 64-bit Installer: <a href="https://nodejs.org/dist/v0.12.15/x64/node-v0.12.15-x64.msi">https://nodejs.org/dist/v0.12.15/x64/node-v0.12.15-x64.msi</a><br>
Windows 32-bit Binary: <a href="https://nodejs.org/dist/v0.12.15/node.exe">https://nodejs.org/dist/v0.12.15/node.exe</a><br>
Windows 64-bit Binary: <a href="https://nodejs.org/dist/v0.12.15/x64/node.exe">https://nodejs.org/dist/v0.12.15/x64/node.exe</a><br>
Mac OS X Universal Installer: <a href="https://nodejs.org/dist/v0.12.15/node-v0.12.15.pkg">https://nodejs.org/dist/v0.12.15/node-v0.12.15.pkg</a><br>
Mac OS X 64-bit Binary: <a href="https://nodejs.org/dist/v0.12.15/node-v0.12.15-darwin-x64.tar.gz">https://nodejs.org/dist/v0.12.15/node-v0.12.15-darwin-x64.tar.gz</a><br>
Mac OS X 32-bit Binary: <a href="https://nodejs.org/dist/v0.12.15/node-v0.12.15-darwin-x86.tar.gz">https://nodejs.org/dist/v0.12.15/node-v0.12.15-darwin-x86.tar.gz</a><br>
Linux 32-bit Binary: <a href="https://nodejs.org/dist/v0.12.15/node-v0.12.15-linux-x86.tar.gz">https://nodejs.org/dist/v0.12.15/node-v0.12.15-linux-x86.tar.gz</a><br>
Linux 64-bit Binary: <a href="https://nodejs.org/dist/v0.12.15/node-v0.12.15-linux-x64.tar.gz">https://nodejs.org/dist/v0.12.15/node-v0.12.15-linux-x64.tar.gz</a><br>
SunOS 32-bit Binary: <a href="https://nodejs.org/dist/v0.12.15/node-v0.12.15-sunos-x86.tar.gz">https://nodejs.org/dist/v0.12.15/node-v0.12.15-sunos-x86.tar.gz</a><br>
SunOS 64-bit Binary: <a href="https://nodejs.org/dist/v0.12.15/node-v0.12.15-sunos-x64.tar.gz">https://nodejs.org/dist/v0.12.15/node-v0.12.15-sunos-x64.tar.gz</a><br>
Source Code: <a href="https://nodejs.org/dist/v0.12.15/node-v0.12.15.tar.gz">https://nodejs.org/dist/v0.12.15/node-v0.12.15.tar.gz</a><br>
Other release files: <a href="https://nodejs.org/dist/v0.12.15/">https://nodejs.org/dist/v0.12.15/</a><br>
Documentation: <a href="https://nodejs.org/docs/v0.12.15/api/">https://nodejs.org/docs/v0.12.15/api/</a></p>
<p>Shasums (GPG signing hash: SHA512, file hash: SHA256):</p>
<pre><code>-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

ff39a5428a1aec5aedcd6645aff0f66ef86b5bf12775794b4dec22b1e4231cc5  node.exe
a1a45e5e9522f5206adc9df964c985d45469418f9daa99b4c589f004817a7e5d  node.exp
ad9ee3ad0341b60b63d17880c8e294dea07310939d8e827942f6389080e4c675  node.lib
0ebb993fb2a9a0dce45d7c1b9d23be182f2e9ec9a233e1ccf4f959e50848126d  node.pdb
125551969069284099d402d85e36e1637d9dd6f19105261f87b8f8b2020b3433  node-v0.12.15-darwin-x64.tar.gz
976c5a044e2fcc9dedf59e7747dd7ace34ea1070b53be32e39ff262203ddf448  node-v0.12.15-darwin-x64.tar.xz
2026bdd953a783d78e2036f67f95590d3334f06541371bbbc87d3ec4991e60e9  node-v0.12.15-darwin-x86.tar.gz
61438f804d21fb08817d9d355efcd6092e7ea25544b564ad2ab525c2f42c6786  node-v0.12.15-darwin-x86.tar.xz
bb5d26514a2c217eb5895efe4884d533e10f31d31949947c67857da515e03422  node-v0.12.15-headers.tar.gz
b895244ddec40ad8a9c9c80ad307bc11386da0c90b1df4eab0e8748eca4f4a26  node-v0.12.15-headers.tar.xz
ab2dc52174552e3959f15a438918b32b59e49409e5640f2acb1a3b9c85cf2a95  node-v0.12.15-linux-x64.tar.gz
86117cd5bf3018fc7f981afedb2d36af8b826c5b6d0a5f8bebff7078de0d1e97  node-v0.12.15-linux-x64.tar.xz
0ea7a2860311596a13e202fef507ec2a55db9ddbb1d9cb27fa19b7e61d56ee20  node-v0.12.15-linux-x86.tar.gz
907ec2c93f7ee1428f0d7363e53269554225700891787c3df144d280399357c7  node-v0.12.15-linux-x86.tar.xz
99987c0cb118cf360c01d647228064bc383ff70fb09f895760b4f7d89f618cf0  node-v0.12.15.pkg
6114f3282e6650210cdfedf7ddf7d5dc62ad80b49475b4e2938afce790338d04  node-v0.12.15-sunos-x64.tar.gz
ebc62db636d77ea1b1b1f9072e65d83d905173a5e47e0bfeb9bef376a1626d69  node-v0.12.15-sunos-x64.tar.xz
29b2fc6d75847ae879bda550f1308bc34abb3ce094030ace93b44a3caba7b2e1  node-v0.12.15-sunos-x86.tar.gz
4a2dc68c698f232d40c728192348a387c77fb3a061c9c82f80ea67b55105b338  node-v0.12.15-sunos-x86.tar.xz
c446d40d9b0eb876dab9a87c3dbd1935dc85155d2ad991b36ddd6c5ca3825a5e  node-v0.12.15.tar.gz
f4ce0c4bb217a32d074916d291381b16e1b9a0bb2be0317ce28e471e0f42a0ac  node-v0.12.15.tar.xz
957d8888fe5e954e0036fc6bce9d38021c6b81a64ec5c8daec1bb561211a2abd  node-v0.12.15-x86.msi
101a9c6d29f83c09902ed946b8c05ca0941dbebadc11909df9190d240d438287  openssl-cli.exe
68ca7a598387e0b7ba65d5c32ac77b1a0d54a1d37850ffbe8181b739cd433939  openssl-cli.pdb
6f2cf6fc8de004be17f6b2be4a0b269c7cc5588d436fb62d4b4a38e44ce69733  x64/node.exe
d7c248428c3a36f641499d384f959b5d4d90c37099ad3078035992e4c46a1e95  x64/node.exp
b26f0fe2ebc9ffa111507136c5b1d83f09bec1609f4c1f27da540b2c57942e62  x64/node.lib
5b558f66fb670849f560d881b35b5b3072c95e2a12ba655c511f5b5c96ac2bf0  x64/node.pdb
96a410825adabb6e95d79c25ce5198dc72a9813f7a43c03add6e9a2e6c2d3acd  x64/node-v0.12.15-x64.msi
e641cc163b32c625ad9a11aa0c2b2046e1fef68452056f453eda787b30c2c491  x64/openssl-cli.exe
d1c9aaa0fa29e04eadf49134773fe5f2089ee35353fd8ddcafcfe6adc8880ca0  x64/openssl-cli.pdb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAEBAgAGBQJXbG8PAAoJEMJzeS99g1Rd8jEIAKNsH/0exEI7r5+wD0ZoDOhX
m8IltzyytMIUZ2v23TcxLqjnRjPGZEmceFrSQsv8MyyjjNh+RupgxZYE2FFJDFqS
+TZWBgFX38hWsu6Ha3U9IJA0bjCp+p/Q0I92i77JG7OqIeCsniWhBeOzzhf3RVRG
525ZdonP8mWIt/MmXT2+v4jjYbUqOQDAWd/IR9U/8GZrlZOB8LMSm/+4sQUIYZql
mOj9o1fETcKSWlJXOgkOFqYzumrz6ZSkI6YRVMuB1aBFVi9/4r95OlwmE3pZ2cIE
RsTPQfHvI3I6b8duuY0qEa/mDBSlTQtVAVo0ptYpBbuMouV7zdqd5JgAMUyjdqg=
=1zpB
-----END PGP SIGNATURE-----
</code></pre>]]></description><link>https://nodejs.org/en/blog/release/v0.12.15</link><guid isPermaLink="true">https://nodejs.org/en/blog/release/v0.12.15</guid><dc:creator><![CDATA[Rod Vagg]]></dc:creator><pubDate>Thu, 23 Jun 2016 23:26:28 GMT</pubDate></item><item><title><![CDATA[Node v0.10.46 (Maintenance)]]></title><description><![CDATA[<h3 id="header-notable-changes">Notable changes:<a name="notable-changes" class="anchor" href="#notable-changes" aria-labelledby="header-notable-changes"></a></h3><p>This is a security release. All Node.js users should consult the security release summary at <a href="https://nodejs.org/en/blog/vulnerability/june-2016-security-releases/">https://nodejs.org/en/blog/vulnerability/june-2016-security-releases/</a> for details on patched vulnerabilities.</p>
<ul>
<li><strong>libuv</strong>: (CVE-2014-9748) Fixes a bug in the read/write locks implementation for Windows XP and Windows 2003 that can lead to undefined and potentially unsafe behaviour. More information can be found at <a href="https://github.com/libuv/libuv/issues/515">https://github.com/libuv/libuv/issues/515</a> or at <a href="https://nodejs.org/en/blog/vulnerability/june-2016-security-releases/">https://nodejs.org/en/blog/vulnerability/june-2016-security-releases/</a>.</li>
<li><strong>V8</strong>: (CVE-2016-1669) Fixes a potential Buffer overflow vulnerability discovered in V8, more details can be found in the CVE at <a href="https://www.cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-1669">https://www.cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-1669</a> or at <a href="https://nodejs.org/en/blog/vulnerability/june-2016-security-releases/">https://nodejs.org/en/blog/vulnerability/june-2016-security-releases/</a>.</li>
</ul>
<h3 id="header-commits">Commits:<a name="commits" class="anchor" href="#commits" aria-labelledby="header-commits"></a></h3><ul>
<li>[3374f57973] - deps: update libuv to 0.10.37 (Saúl Ibarra Corretgé) <a href="https://github.com/nodejs/node/pull/7293">https://github.com/nodejs/node/pull/7293</a></li>
<li>[fcb9145e29] - deps: backport 3a9bfec from v8 upstream (Myles Borins) <a href="https://github.com/nodejs/node-private/pull/43">https://github.com/nodejs/node-private/pull/43</a></li>
</ul>
<p>Windows 32-bit Installer: <a href="https://nodejs.org/dist/v0.10.46/node-v0.10.46-x86.msi">https://nodejs.org/dist/v0.10.46/node-v0.10.46-x86.msi</a><br>
Windows 64-bit Installer: <a href="https://nodejs.org/dist/v0.10.46/x64/node-v0.10.46-x64.msi">https://nodejs.org/dist/v0.10.46/x64/node-v0.10.46-x64.msi</a><br>
Windows 32-bit Binary: <a href="https://nodejs.org/dist/v0.10.46/node.exe">https://nodejs.org/dist/v0.10.46/node.exe</a><br>
Windows 64-bit Binary: <a href="https://nodejs.org/dist/v0.10.46/x64/node.exe">https://nodejs.org/dist/v0.10.46/x64/node.exe</a><br>
Mac OS X Universal Installer: <a href="https://nodejs.org/dist/v0.10.46/node-v0.10.46.pkg">https://nodejs.org/dist/v0.10.46/node-v0.10.46.pkg</a><br>
Mac OS X 64-bit Binary: <a href="https://nodejs.org/dist/v0.10.46/node-v0.10.46-darwin-x64.tar.gz">https://nodejs.org/dist/v0.10.46/node-v0.10.46-darwin-x64.tar.gz</a><br>
Mac OS X 32-bit Binary: <a href="https://nodejs.org/dist/v0.10.46/node-v0.10.46-darwin-x86.tar.gz">https://nodejs.org/dist/v0.10.46/node-v0.10.46-darwin-x86.tar.gz</a><br>
Linux 32-bit Binary: <a href="https://nodejs.org/dist/v0.10.46/node-v0.10.46-linux-x86.tar.gz">https://nodejs.org/dist/v0.10.46/node-v0.10.46-linux-x86.tar.gz</a><br>
Linux 64-bit Binary: <a href="https://nodejs.org/dist/v0.10.46/node-v0.10.46-linux-x64.tar.gz">https://nodejs.org/dist/v0.10.46/node-v0.10.46-linux-x64.tar.gz</a><br>
SunOS 32-bit Binary: <a href="https://nodejs.org/dist/v0.10.46/node-v0.10.46-sunos-x86.tar.gz">https://nodejs.org/dist/v0.10.46/node-v0.10.46-sunos-x86.tar.gz</a><br>
SunOS 64-bit Binary: <a href="https://nodejs.org/dist/v0.10.46/node-v0.10.46-sunos-x64.tar.gz">https://nodejs.org/dist/v0.10.46/node-v0.10.46-sunos-x64.tar.gz</a><br>
Source Code: <a href="https://nodejs.org/dist/v0.10.46/node-v0.10.46.tar.gz">https://nodejs.org/dist/v0.10.46/node-v0.10.46.tar.gz</a><br>
Other release files: <a href="https://nodejs.org/dist/v0.10.46/">https://nodejs.org/dist/v0.10.46/</a><br>
Documentation: <a href="https://nodejs.org/docs/v0.10.46/api/">https://nodejs.org/docs/v0.10.46/api/</a></p>
<p>Shasums (GPG signing hash: SHA512, file hash: SHA256):</p>
<pre><code>-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

6223e65d3c97abd3c4584e37e6e91deb06402b4ed8298ca728656fbf8e9c2d29  node.exe
49017608135cf3fcaec7d3d0d0162144fb536f46fe4b4fcde753f6f6b685380e  node.exp
c9012f2ad8bcbe57dcf0cffc279983166cd5b4ff68e04e6dd275656ea5f4e423  node.lib
12dbd22685728dc0615a43f034980f09235af73f3990ff4eea341caa12a4e792  node.pdb
ab9eafa76c4c9a2e0d43e6727d82b331157dc7f43fde9a3f2a4881102df9ff3a  node-v0.10.46-darwin-x64.tar.gz
9789eabb0791595c5ef4e53029366c48dffd9c787e057ce04c6b2ff86ed635c5  node-v0.10.46-darwin-x64.tar.xz
32c03a60eac3f1650d4a9219fc8510119bff19262255b868ee23850ef56cd0c9  node-v0.10.46-darwin-x86.tar.gz
7180853680a4c98eedfd8621f46636575cc5079290762c1c65365d296e473eb7  node-v0.10.46-darwin-x86.tar.xz
3eb90851301b108912cb00ff3e4f6d38fa4cb4b4c47abe0e9df93d26d1c0ea17  node-v0.10.46-headers.tar.gz
1efaee6f824b1169ef95d3331a34de87aecf91dee0b7dd88e9928206015d75f3  node-v0.10.46-headers.tar.xz
58116256f3060703e2e71f2cb5dc265a1d9fab7854a4eee15e78a95a0a87c750  node-v0.10.46-linux-x64.tar.gz
4695d96a5a90cb7f0e647e717d2a80ef0645b0bca17221d83186a29653acc868  node-v0.10.46-linux-x64.tar.xz
a0d9ffa349bd8ce0b5ab783f5a3c14787c22037900761ff296fd30c7a8645d21  node-v0.10.46-linux-x86.tar.gz
fd2bf8af94cfe6373a034faed3ea9d9543a45395efb23de7042f7eaead10c064  node-v0.10.46-linux-x86.tar.xz
726a8c2c10048c661d0adf716143e971252345c9f9f4a4cb3812ac2360915890  node-v0.10.46.pkg
cb76c6e27ff0a078fa50f5dcacace83b1dd48201210554deaca2556dcf3b31bc  node-v0.10.46-sunos-x64.tar.gz
3177f38d34a9297aa5978e3c4156083ab6d00bc03736f2e64da4e875bad9818f  node-v0.10.46-sunos-x64.tar.xz
8bce341355320ac2ea9835db561489e35ae9a7d6b9f20c6504ba654a36232886  node-v0.10.46-sunos-x86.tar.gz
0ee4784f835c1b7f2f77246a4f96c21f07ac38682f07991fd180fc85f0ef6f60  node-v0.10.46-sunos-x86.tar.xz
1164f2a4b663c9c0244033bfa649304a4a4e5a5ed6fab509d63084609d53198f  node-v0.10.46.tar.gz
9b0e6079fc3282491028d29ae019fc7ba8de187dc3acda22a5cfd7d145cbffd9  node-v0.10.46.tar.xz
1792740f39fadbfecd589f2a0a3434a606a7e679c426a7f7c294be20bc2062b6  node-v0.10.46-x86.msi
a085504b31f1458dd30355089b878136161c6277993db6d019d63191323172ce  openssl-cli.exe
237bb683d9d9ae4f65f7e66c06259257b17ddb980288571e5f8125827defc3b7  openssl-cli.pdb
af7a469a545fbacfae860f90c869b584f00ccd588719db8d35595315c40b847b  x64/node.exe
0312e9641369145ba375d01becaa2cf9fab12cfe40bdd2141f90127d9625ff9f  x64/node.exp
c29442e5b948f1b40c249b05c83e91bfc82708f774a88240e2b80951a78a02b5  x64/node.lib
236e386d7510a86b246afa0072514fb5730c55a82f5bd73701270c1eb41a7ec1  x64/node.pdb
2b6a9260b2c75de118d2d2a6c927f93aae734a92f19bc0f05f1d6855546021c4  x64/node-v0.10.46-x64.msi
a5f5c8aa5e344f55058bbe6c201111bc9af12e4e1112adc32bf7f92d19452f23  x64/openssl-cli.exe
b6fd80416d334a68df975f1a0c565891c21504c3a620365f172384a11f0e8a54  x64/openssl-cli.pdb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAEBAgAGBQJXbG7mAAoJEMJzeS99g1RdIj8IAImQmP6gxicw0z42G4l7HGu2
TLFSR/xDgY7k8kYaS+sJifNQcN1BBcSOZW43kSPQ6zwY6V0on/dJ1fLPxtWAmeUC
WVFmIu5HG9GcKILPZi95hYmY1zlxhnlRzivSkU5WXI0MSSn8INwvd8AQAqR1DQG/
4/YNGklUap71APfPY8VORiBBJfrW/5JbHdNTdeN8tHrB1BbHwXOiroSKaRLcwew6
K3rjYQaJPtl1ota7+1ITtRsdwsL1eb390zfqpQzmabWyN1JSek+x0oVSUqjfRdhB
rVahHhv1D7Muz9KomglrjtSE5Cg+EWat/nfAFCzZhdhqRCvGWZD+UPsy/NkWD90=
=qS4n
-----END PGP SIGNATURE-----
</code></pre>]]></description><link>https://nodejs.org/en/blog/release/v0.10.46</link><guid isPermaLink="true">https://nodejs.org/en/blog/release/v0.10.46</guid><dc:creator><![CDATA[Rod Vagg]]></dc:creator><pubDate>Thu, 23 Jun 2016 23:24:09 GMT</pubDate></item><item><title><![CDATA[Node v6.2.2 (Current)]]></title><description><![CDATA[<h3 id="header-notable-changes">Notable changes<a name="notable-changes" class="anchor" href="#notable-changes" aria-labelledby="header-notable-changes"></a></h3><ul>
<li><strong>http</strong>:<ul>
<li><code>req.read(0)</code> could cause incoming connections to stall and time out under certain conditions. (Fedor Indutny) <a href="https://github.com/nodejs/node/pull/7211">#7211</a></li>
<li>When freeing the socket to be reused in keep-alive Agent wait for both prefinish and end events. Otherwise the next request may be written before the previous one has finished sending the body, leading to parser errors. (Fedor Indutny) <a href="https://github.com/nodejs/node/pull/7149">#7149</a></li>
</ul>
</li>
<li><strong>npm</strong>: upgrade npm to 3.9.5 (Kat Marchán) <a href="https://github.com/nodejs/node/pull/7139">#7139</a></li>
</ul>
<h3 id="header-commits">Commits<a name="commits" class="anchor" href="#commits" aria-labelledby="header-commits"></a></h3><ul>
<li>[<a href="https://github.com/nodejs/node/commit/d71ede8113"><code>d71ede8113</code></a>] - <strong>benchmark</strong>: don&#39;t convert arguments to numbers (Brian White) <a href="https://github.com/nodejs/node/pull/6570">#6570</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/32f76983e2"><code>32f76983e2</code></a>] - <strong>benchmark</strong>: increase http token check iterations (Brian White) <a href="https://github.com/nodejs/node/pull/6570">#6570</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/23a495a9a9"><code>23a495a9a9</code></a>] - <strong>benchmark</strong>: add benchmark for url.format() (Rich Trott) <a href="https://github.com/nodejs/node/pull/7250">#7250</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/27ed7fc56c"><code>27ed7fc56c</code></a>] - <strong>benchmark</strong>: fix child-process-exec-stdout on win (Bartosz Sosnowski) <a href="https://github.com/nodejs/node/pull/7178">#7178</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5e5af8b4bb"><code>5e5af8b4bb</code></a>] - <strong>benchmark</strong>: fix child-process-read on Windows (Bartosz Sosnowski) <a href="https://github.com/nodejs/node/pull/6971">#6971</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d24e4095bf"><code>d24e4095bf</code></a>] - <strong>benchmark</strong>: add benchmark for Buffer.concat (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7054">#7054</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/666b6f9302"><code>666b6f9302</code></a>] - <strong>build</strong>: add REPLACEME tag for version info in docs (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6864">#6864</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6d3d2d1ae4"><code>6d3d2d1ae4</code></a>] - <strong>cluster</strong>: don&#39;t send messages if no IPC channel (Santiago Gimeno) <a href="https://github.com/nodejs/node/pull/7132">#7132</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/068718c91c"><code>068718c91c</code></a>] - <strong>debugger</strong>: remove obsolete setTimeout (Rich Trott) <a href="https://github.com/nodejs/node/pull/7154">#7154</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2961f06f6f"><code>2961f06f6f</code></a>] - <strong>debugger</strong>: fix --debug-brk interaction with -e (Rich Trott) <a href="https://github.com/nodejs/node/pull/7089">#7089</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/701e699d4f"><code>701e699d4f</code></a>] - <strong>deps</strong>: upgrade npm to 3.9.5 (Kat Marchán) <a href="https://github.com/nodejs/node/pull/7139">#7139</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1095ae1ac5"><code>1095ae1ac5</code></a>] - <strong>doc</strong>: Add CII Best Practices badge to README.md (David A. Wheeler) <a href="https://github.com/nodejs/node/pull/6819">#6819</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0198987b0d"><code>0198987b0d</code></a>] - <strong>doc</strong>: add internal link in GOVERNANCE.md (Rich Trott) <a href="https://github.com/nodejs/node/pull/7279">#7279</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8e14f761bb"><code>8e14f761bb</code></a>] - <strong>doc</strong>: use <code>Buffer.byteLength</code> for Content-Length (kimown) <a href="https://github.com/nodejs/node/pull/7274">#7274</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5d03bdd94f"><code>5d03bdd94f</code></a>] - <strong>doc</strong>: add information for IncomingMessage.destroy() (Rich Trott) <a href="https://github.com/nodejs/node/pull/7237">#7237</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a113734099"><code>a113734099</code></a>] - <strong>doc</strong>: general improvements to path.md copy (James M Snell) <a href="https://github.com/nodejs/node/pull/7122">#7122</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b5e44df9a3"><code>b5e44df9a3</code></a>] - <strong>doc</strong>: make pull request template more concise (Rich Trott) <a href="https://github.com/nodejs/node/pull/7239">#7239</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/40a5974a0e"><code>40a5974a0e</code></a>] - <strong>doc</strong>: <code>url.format()</code> parameter may be a string (Rich Trott) <a href="https://github.com/nodejs/node/pull/7235">#7235</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a7d813915e"><code>a7d813915e</code></a>] - <strong>doc</strong>: clarify use of <code>0</code> port value (Rich Trott) <a href="https://github.com/nodejs/node/pull/7206">#7206</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0fc8012b65"><code>0fc8012b65</code></a>] - <strong>doc</strong>: remove cluster.setupMaster() myth (cjihrig) <a href="https://github.com/nodejs/node/pull/7179">#7179</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/70167fd1d4"><code>70167fd1d4</code></a>] - <strong>doc</strong>: fix IRC link (Ilkka Myller) <a href="https://github.com/nodejs/node/pull/7210">#7210</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4f2215fd98"><code>4f2215fd98</code></a>] - <strong>doc</strong>: fix minor nit introduced in readline.md (James M Snell) <a href="https://github.com/nodejs/node/pull/7198">#7198</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d31f728e09"><code>d31f728e09</code></a>] - <strong>doc</strong>: clarify rl.question callback args (James M Snell) <a href="https://github.com/nodejs/node/pull/7022">#7022</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/70f2f357be"><code>70f2f357be</code></a>] - <strong>doc</strong>: general improvements to readline.md copy (James M Snell) <a href="https://github.com/nodejs/node/pull/7022">#7022</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c2aba5ba27"><code>c2aba5ba27</code></a>] - <strong>doc</strong>: consolidate test/lint text in GH PR template (Rich Trott) <a href="https://github.com/nodejs/node/pull/7155">#7155</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/712120112f"><code>712120112f</code></a>] - <strong>doc</strong>: use consistent typography in streams.md (Rich Trott) <a href="https://github.com/nodejs/node/pull/6986">#6986</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e2f6f8061b"><code>e2f6f8061b</code></a>] - <strong>doc</strong>: general improvements to process.md copy (James M Snell) <a href="https://github.com/nodejs/node/pull/7029">#7029</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/84ea6fc57c"><code>84ea6fc57c</code></a>] - <strong>doc</strong>: general improvements to repl.md copy (James M Snell) <a href="https://github.com/nodejs/node/pull/7002">#7002</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/bfb7e3cc6e"><code>bfb7e3cc6e</code></a>] - <strong>doc</strong>: add <code>added:</code> information for readline (Julian Duque) <a href="https://github.com/nodejs/node/pull/6996">#6996</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/632b411cd0"><code>632b411cd0</code></a>] - <strong>doc</strong>: improved syntax consistency in console.md (Jonathan Montane) <a href="https://github.com/nodejs/node/pull/7062">#7062</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/826bd99486"><code>826bd99486</code></a>] - <strong>doc</strong>: specify how to link issues in commit log (Luigi Pinca) <a href="https://github.com/nodejs/node/pull/7161">#7161</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/865644a604"><code>865644a604</code></a>] - <strong>doc</strong>: general improvements to querystring.md copy (James M Snell) <a href="https://github.com/nodejs/node/pull/7023">#7023</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/dd4c607267"><code>dd4c607267</code></a>] - <strong>doc</strong>: fix header depth of util.isSymbol (James M Snell) <a href="https://github.com/nodejs/node/pull/7138">#7138</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5086e5f3ee"><code>5086e5f3ee</code></a>] - <strong>doc</strong>: general improvements to stream.md copy (James M Snell) <a href="https://github.com/nodejs/node/pull/6947">#6947</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/75d6875034"><code>75d6875034</code></a>] - <strong>doc</strong>: update licenses (Myles Borins) <a href="https://github.com/nodejs/node/pull/7121">#7121</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/dc8cb93c4f"><code>dc8cb93c4f</code></a>] - <strong>doc</strong>: add <code>added:</code> information for dns (Julian Duque) <a href="https://github.com/nodejs/node/pull/7021">#7021</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a7c85e6fd5"><code>a7c85e6fd5</code></a>] - <strong>doc</strong>: add <code>added:</code> information for path (Julian Duque) <a href="https://github.com/nodejs/node/pull/6985">#6985</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/026bf17378"><code>026bf17378</code></a>] - <strong>doc</strong>: add <code>added</code> information for net (Italo A. Casas) <a href="https://github.com/nodejs/node/pull/7038">#7038</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d4a2c82f5f"><code>d4a2c82f5f</code></a>] - <strong>doc</strong>: general improvements to punycode.md copy (James M Snell) <a href="https://github.com/nodejs/node/pull/7025">#7025</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/51d295efe6"><code>51d295efe6</code></a>] - <strong>doc</strong>: add links to platform specific mechanisms (Michael Dawson) <a href="https://github.com/nodejs/node/pull/7071">#7071</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1600966f59"><code>1600966f59</code></a>] - <strong>fs</strong>: execute mkdtemp&#39;s callback with no context (Sakthipriyan Vairamani) <a href="https://github.com/nodejs/node/pull/7068">#7068</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ad1045c829"><code>ad1045c829</code></a>] - <strong>http</strong>: fix no dumping after <code>maybeReadMore</code> (Fedor Indutny) <a href="https://github.com/nodejs/node/pull/7211">#7211</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2a462ba1e2"><code>2a462ba1e2</code></a>] - <strong>http</strong>: optimize checkInvalidHeaderChar() (Brian White) <a href="https://github.com/nodejs/node/pull/6570">#6570</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4a63be031f"><code>4a63be031f</code></a>] - <strong>http</strong>: optimize checkIsHttpToken() (Brian White) <a href="https://github.com/nodejs/node/pull/6570">#6570</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/40e49dee82"><code>40e49dee82</code></a>] - <strong>http</strong>: wait for both prefinish/end to keepalive (Fedor Indutny) <a href="https://github.com/nodejs/node/pull/7149">#7149</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e8c91e7557"><code>e8c91e7557</code></a>] - <strong>repl</strong>: refine handling of illegal tokens (Rich Trott) <a href="https://github.com/nodejs/node/pull/7104">#7104</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/cf0928ccb7"><code>cf0928ccb7</code></a>] - <strong>src</strong>: clean up string_search (Brian White) <a href="https://github.com/nodejs/node/pull/7174">#7174</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b0225e5926"><code>b0225e5926</code></a>] - <strong>stream</strong>: ensure awaitDrain is increased once (David Halls) <a href="https://github.com/nodejs/node/pull/7292">#7292</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/9c6b69ec1b"><code>9c6b69ec1b</code></a>] - <strong>stream</strong>: reset awaitDrain after manual .resume() (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7160">#7160</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/caa6718a01"><code>caa6718a01</code></a>] - <strong>test</strong>: fix test-net-* error code check for getaddrinfo(3) (Natanael Copa) <a href="https://github.com/nodejs/node/pull/5099">#5099</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/535c8dd554"><code>535c8dd554</code></a>] - <strong>test</strong>: add more http token/value checking tests (Brian White) <a href="https://github.com/nodejs/node/pull/6570">#6570</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/257f4e6202"><code>257f4e6202</code></a>] - <strong>test</strong>: add note about duration_ms in TAP reporter (Rod Vagg) <a href="https://github.com/nodejs/node/pull/7216">#7216</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/798a737f45"><code>798a737f45</code></a>] - <strong><em>Revert</em></strong> &quot;<strong>test</strong>: change duration_ms to duration&quot; (Rod Vagg) <a href="https://github.com/nodejs/node/pull/7216">#7216</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/72e4e43b91"><code>72e4e43b91</code></a>] - <strong>test</strong>: rebuild add-ons when their sources change (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7262">#7262</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/eded11705b"><code>eded11705b</code></a>] - <strong>test</strong>: use random ports where possible (Brian White) <a href="https://github.com/nodejs/node/pull/7045">#7045</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d54c7c19a6"><code>d54c7c19a6</code></a>] - <strong>test</strong>: fix spawn on windows (Brian White) <a href="https://github.com/nodejs/node/pull/7049">#7049</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e873063a3c"><code>e873063a3c</code></a>] - <strong>test</strong>: enable test-debug-brk-no-arg (Rich Trott) <a href="https://github.com/nodejs/node/pull/7143">#7143</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d6091c8194"><code>d6091c8194</code></a>] - <strong>test</strong>: use common.fixturesDir almost everywhere (Bryan English) <a href="https://github.com/nodejs/node/pull/6997">#6997</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e8b1456d8b"><code>e8b1456d8b</code></a>] - <strong>test</strong>: change duration_ms to duration (Gibson Fahnestock) <a href="https://github.com/nodejs/node/pull/7133">#7133</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6ce26c8c8b"><code>6ce26c8c8b</code></a>] - <strong>test</strong>: add test for uid/gid setting in spawn (Rich Trott) <a href="https://github.com/nodejs/node/pull/7084">#7084</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/40604b54d4"><code>40604b54d4</code></a>] - <strong>test</strong>: remove disabled eio race test (Rich Trott) <a href="https://github.com/nodejs/node/pull/7083">#7083</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/9545c41cba"><code>9545c41cba</code></a>] - <strong>tools</strong>: fix license builder to work with icu-small (Myles Borins) <a href="https://github.com/nodejs/node/pull/7119">#7119</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6562c9fc75"><code>6562c9fc75</code></a>] - <strong>tools,doc</strong>: add example usage for REPLACEME tag (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6864">#6864</a></li>
</ul>
<p>Windows 32-bit Installer: <a href="https://nodejs.org/dist/v6.2.2/node-v6.2.2-x86.msi">https://nodejs.org/dist/v6.2.2/node-v6.2.2-x86.msi</a><br>
Windows 64-bit Installer: <a href="https://nodejs.org/dist/v6.2.2/node-v6.2.2-x64.msi">https://nodejs.org/dist/v6.2.2/node-v6.2.2-x64.msi</a><br>
Windows 32-bit Binary: <a href="https://nodejs.org/dist/v6.2.2/win-x86/node.exe">https://nodejs.org/dist/v6.2.2/win-x86/node.exe</a><br>
Windows 64-bit Binary: <a href="https://nodejs.org/dist/v6.2.2/win-x64/node.exe">https://nodejs.org/dist/v6.2.2/win-x64/node.exe</a><br>
Mac OS X 64-bit Installer: <a href="https://nodejs.org/dist/v6.2.2/node-v6.2.2.pkg">https://nodejs.org/dist/v6.2.2/node-v6.2.2.pkg</a><br>
Mac OS X 64-bit Binary: <a href="https://nodejs.org/dist/v6.2.2/node-v6.2.2-darwin-x64.tar.gz">https://nodejs.org/dist/v6.2.2/node-v6.2.2-darwin-x64.tar.gz</a><br>
Linux 32-bit Binary: <a href="https://nodejs.org/dist/v6.2.2/node-v6.2.2-linux-x86.tar.xz">https://nodejs.org/dist/v6.2.2/node-v6.2.2-linux-x86.tar.xz</a><br>
Linux 64-bit Binary: <a href="https://nodejs.org/dist/v6.2.2/node-v6.2.2-linux-x64.tar.xz">https://nodejs.org/dist/v6.2.2/node-v6.2.2-linux-x64.tar.xz</a><br>
Linux PPC LE 64-bit Binary: <a href="https://nodejs.org/dist/v6.2.2/node-v6.2.2-linux-ppc64le.tar.xz">https://nodejs.org/dist/v6.2.2/node-v6.2.2-linux-ppc64le.tar.xz</a><br>
SunOS 32-bit Binary: <a href="https://nodejs.org/dist/v6.2.2/node-v6.2.2-sunos-x86.tar.xz">https://nodejs.org/dist/v6.2.2/node-v6.2.2-sunos-x86.tar.xz</a><br>
SunOS 64-bit Binary: <a href="https://nodejs.org/dist/v6.2.2/node-v6.2.2-sunos-x64.tar.xz">https://nodejs.org/dist/v6.2.2/node-v6.2.2-sunos-x64.tar.xz</a><br>
ARMv6 32-bit Binary: <a href="https://nodejs.org/dist/v6.2.2/node-v6.2.2-linux-armv6l.tar.xz">https://nodejs.org/dist/v6.2.2/node-v6.2.2-linux-armv6l.tar.xz</a><br>
ARMv7 32-bit Binary: <a href="https://nodejs.org/dist/v6.2.2/node-v6.2.2-linux-armv7l.tar.xz">https://nodejs.org/dist/v6.2.2/node-v6.2.2-linux-armv7l.tar.xz</a><br>
ARMv8 64-bit Binary: <a href="https://nodejs.org/dist/v6.2.2/node-v6.2.2-linux-arm64.tar.xz">https://nodejs.org/dist/v6.2.2/node-v6.2.2-linux-arm64.tar.xz</a><br>
Source Code: <a href="https://nodejs.org/dist/v6.2.2/node-v6.2.2.tar.gz">https://nodejs.org/dist/v6.2.2/node-v6.2.2.tar.gz</a><br>
Other release files: <a href="https://nodejs.org/dist/v6.2.2/">https://nodejs.org/dist/v6.2.2/</a><br>
Documentation: <a href="https://nodejs.org/docs/v6.2.2/api/">https://nodejs.org/docs/v6.2.2/api/</a></p>
<p>Shasums (GPG signing hash: SHA512, file hash: SHA256):</p>
<pre><code>-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

03b9eadd71d73daf2a25c8ea833454b326cb702f717a39f1b2a1324179cab5fa  node-v6.2.2-darwin-x64.tar.gz
1ef75ae9c3db01eafb0371e4c0e22889b1abd5f37f511569a72b64dcf39c93eb  node-v6.2.2-darwin-x64.tar.xz
c02d78470afb83d4473f196a5ff3725f028cd661c4d50d0337f817c7af02e0e7  node-v6.2.2-headers.tar.gz
2e84e6aa370c06544392a3724c4cbccad1846d854ec5dddba08ccb63d92854ab  node-v6.2.2-headers.tar.xz
1eaac04e632e633197c764a65817909667a700a657b1de463a45efcd40d236c7  node-v6.2.2-linux-arm64.tar.gz
02c5b6b54b036d0e7d7fea58c6a344be9cdb6d40e2c3bef76639827669d6e1e6  node-v6.2.2-linux-arm64.tar.xz
92b41e1c31a64024c5386df3cb6b9c0e00ecb097c2f7d0413364e20b7b836ae9  node-v6.2.2-linux-armv6l.tar.gz
3f6125c849aa7af16732e1e948e236a4ab31efaeb121cca1eb2e19e50396a07a  node-v6.2.2-linux-armv6l.tar.xz
ecaa5ccdad2d3e9efc8944e5c57971753bacbd7c171b6a4445e76e5fb9ebc69b  node-v6.2.2-linux-armv7l.tar.gz
03cc16e0839c65e36c34d8802d7c8e3110d60a53eef49584928314d2b8f18fb4  node-v6.2.2-linux-armv7l.tar.xz
b3e2e27ad4e52610fc971ef7c32cfb7c3f9db03a0b49e8bd422383ff30197263  node-v6.2.2-linux-ppc64le.tar.gz
282b60f64ee8793c0d8a2f8849bdd13130a1a296d54ab947ae527d7bc2eb8b10  node-v6.2.2-linux-ppc64le.tar.xz
ff307b8602808e799cef488c55f1fe646cd169c44464c4c53b56e61d181d06a6  node-v6.2.2-linux-ppc64.tar.gz
cbb956214dd864725aaa5cd6d507faf520886b61fa66fb6f25fb7a4b9a579883  node-v6.2.2-linux-ppc64.tar.xz
7a6df881183e70839857b51653811aaabc49a2ffb93416a1c9bd333dcef84ea3  node-v6.2.2-linux-x64.tar.gz
dd8231b89c57c51b298563fd5e9c594d3ced9cb5f3153dcc05d55444b5d0dc4b  node-v6.2.2-linux-x64.tar.xz
71a3ec010acaa3c5d26429b6670f4895cd494199ffa07b1773e63619559c32c1  node-v6.2.2-linux-x86.tar.gz
c00150ed1e4971394136d4ff086fb726f592b0615fa8f7aa64d14d2e338be2b8  node-v6.2.2-linux-x86.tar.xz
122c74d5864f99530638f35652129c8b2ba3163317a7c404e1a058f97ceba7d4  node-v6.2.2.pkg
d4a4c601ee6ce311193c1445ca2efbad75a6adbe407ce787381c4b620ac62eeb  node-v6.2.2-sunos-x64.tar.gz
4ada036c9b5f5c1b73e305e1bb05f8d31f44f2535495f26f24666b3d8eb9cd52  node-v6.2.2-sunos-x64.tar.xz
94fecfccdc903d0df685850fa8a34c28528e79634bea7569ca7b570a39d2a7ce  node-v6.2.2-sunos-x86.tar.gz
dab2c5cabd9ac7a6bf79fdb902cdb862ea0757799d4dc189d483568418697af3  node-v6.2.2-sunos-x86.tar.xz
b6baee57a0ede496c7c7765001f7495ad74c8dfe8c34f1a6fb2cd5d8d526ffce  node-v6.2.2.tar.gz
2dfeeddba750b52a528b38a1c31e35c1fb40b19cf28fbf430c3c8c7a6517005a  node-v6.2.2.tar.xz
33fffbe79ed5ec422f8be12f7f87f616e98b630ed40f10cfe84e373122c04589  node-v6.2.2-win-x64.7z
df66df9c3c1e069cb5a59d5077dca54af4ccf48fb13d1e85eb1aa72297f9952b  node-v6.2.2-win-x64.zip
db2e898eea4204a247827e288311b05f93f57c6c08f29e6b415b1301b4fce9ca  node-v6.2.2-win-x86.7z
77ad948abdb861bbe23259a18adf77dac094847f66ded0cd9e70871336eb3935  node-v6.2.2-win-x86.zip
d7e9f474de0605addb6bbb1c5d01b45de88b704f1d72e8f026171baa7cbf75d1  node-v6.2.2-x64.msi
2c186a625473796c2fd70948fa85c8a1e087033fbf25ae16866e2f2f347f0e38  node-v6.2.2-x86.msi
b900e6c16576bf389c034580678c10fed1970b640456706182d028697b7a0c1f  win-x64/node.exe
4d4417c20bad483c9a8a7a3ee49278c4ad4b608efdfa4c6d9db671d608ac5ee5  win-x64/node.lib
973c7a6c114ee6d43ffc973764c35ad7af7a5f811172b2b6f36820de727bb6b7  win-x64/node_pdb.7z
06e0a8e5625186a430fb55a09655f47d574a27f886fd5ac83f4ee2a0abd5eb7c  win-x64/node_pdb.zip
9cb8c4f4c427ab6cf73ce38523bfaa2d094bbe45d614805b2d34dc5078f0b821  win-x86/node.exe
f0cc06d127ee17de4213315ba96276dffdcb16708a5b432770f49eaf63007e9e  win-x86/node.lib
0257c8d092b65410f2f75d065284894f0667b68effe873072afb679873d0d323  win-x86/node_pdb.7z
d950aee2eeb69c666e0391b2c692728e69ec2dd2e58a6d38b11e8303c74476dd  win-x86/node_pdb.zip
-----BEGIN PGP SIGNATURE-----
Comment: GPGTools - https://gpgtools.org

iQIcBAEBCgAGBQJXZBwgAAoJELY7U1pMIGyp/UUQANLiIQthoyGS7tAlN4ehlyPF
kaKNchNhEMBI8uD0Sd//wtasXOmcxXnpwBcmZ96horx7VnJeyqYRx9/+GQUJ7XhE
X4AtJcCxWqpuzc7FIL01AfK1L8LydHHUb7NxFbqy2VtvRG/rHk4EXsKtYnnwHlQV
k04902E9XC236ED2gIBtrmyWJoYuxTuhuNnv/VXErm7y2gQmWak5FkdVL1sQD2Wg
dkdvZ2EpV8Gato1tAMLwoOoGdDMBloltEbp7EFlxCb1h0Fr5Pi+PQXv9bQebevAy
7cLleiodYHVSWcDfvWYHlss99MZZMbdNh7DGUv0DtC2AkdlebyUMYXe4npQfNzA1
6QeAXjg43RoaINx9uLEmA9wI5Po1Uj/j0wIom7mtfl8KAAUhHdcdSspnqbM2Jlp2
OdX4rnv9yKI+s655mbO7JkHyc8REiFl0qwOc6kIuikr17SpPj4jm7hyCEI1FiBKh
302xwERedltNkPk2YgifvNfiSbbN95q0a+hpQi3g2+r369RSFnjAkiltRLrylkyy
vQWdWyVf+H6BR0nQ9Sst28Xr68ys+1O+IFnXnorbZU98wSTBJQ9x10h8u1OChPzZ
+gZQfwUK6QEmOkALmFliqAUm7B7zRgm9jLrUrAfbjJmYv6qC+gPnf/MlnBQ099ho
vqiNTA+C9QDmER2PoS4r
=U+qh
-----END PGP SIGNATURE-----
</code></pre>]]></description><link>https://nodejs.org/en/blog/release/v6.2.2</link><guid isPermaLink="true">https://nodejs.org/en/blog/release/v6.2.2</guid><dc:creator><![CDATA[Evan Lucas]]></dc:creator><pubDate>Fri, 17 Jun 2016 15:53:06 GMT</pubDate></item><item><title><![CDATA[Weekly Update - June 16th, 2016]]></title><description><![CDATA[<h3 id="header-node-v6-2-1-current-release">Node v6.2.1 (Current) Release<a name="node-v6-2-1-current-release" class="anchor" href="#node-v6-2-1-current-release" aria-labelledby="header-node-v6-2-1-current-release"></a></h3><p><a href="https://nodejs.org/en/blog/release/v6.2.1/">Node v6.2.1 (Current)</a>. Complete changelog from previous releases can be found <a href="https://github.com/nodejs/node/blob/master/CHANGELOG.md">on GitHub</a>.</p>
<h3 id="header-binaries-for-linux-on-power-systems">Binaries for Linux on Power Systems<a name="binaries-for-linux-on-power-systems" class="anchor" href="#binaries-for-linux-on-power-systems" aria-labelledby="header-binaries-for-linux-on-power-systems"></a></h3><p>Community downloads now include binaries for Linux on Power Systems with big endian in addition to the existing little endian binaries.</p>
<p>See <a href="https://nodejs.org/en/download/">https://nodejs.org/en/download/</a>.</p>
<h3 id="header-security-updates-for-all-active-release-lines-june-2016">Security updates for all active release lines, June 2016<a name="security-updates-for-all-active-release-lines-june-2016" class="anchor" href="#security-updates-for-all-active-release-lines-june-2016" aria-labelledby="header-security-updates-for-all-active-release-lines-june-2016"></a></h3><p>We now intend to make releases available on or soon after <strong>Thursday, the 23rd of June, 2016, UTC</strong>.</p>
<p>See <a href="https://nodejs.org/en/blog/vulnerability/june-2016-security-releases/">https://nodejs.org/en/blog/vulnerability/june-2016-security-releases/</a> for more information.</p>
<h3 id="header-community-updates">Community Updates<a name="community-updates" class="anchor" href="#community-updates" aria-labelledby="header-community-updates"></a></h3><ul>
<li><a href="https://blog.risingstack.com/node-js-logging-tutorial/">How to Get Node.js Logging Right</a>: The aim of this article is to provide help with logging in Node.js modules, applications and distributed systems</li>
<li><a href="https://blog.risingstack.com/node-hero-node-js-unit-testing-tutorial/">Node Hero - Node.js Unit Testing Tutorial</a>: you can learn how to get started with Node.js and deliver software products using it.
If you have spotted or written something about Node.js, do come over to our <a href="https://github.com/nodejs/evangelism">Evangelism team repo</a> and suggest it on the <a href="https://github.com/nodejs/evangelism/issues">Issues page</a>, specifically the Weekly Updates issue.</li>
</ul>
<h3 id="header-upcoming-events">Upcoming Events<a name="upcoming-events" class="anchor" href="#upcoming-events" aria-labelledby="header-upcoming-events"></a></h3><ul>
<li><a href="http://nodepdx.org">Node PDX</a> - June 19-21st, 2016</li>
<li><a href="https://2016.nodeconf.com.ar">NodeConf Argentina</a> - 18 - 19th November, 2016</li>
</ul>
<p>Have an event about Node.js coming up? You can put your events here through the <a href="https://github.com/nodejs/evangelism">Evangelism team repo</a> and announce it in the <a href="https://github.com/nodejs/evangelism/issues">Issues page</a>, specifically the Weekly Updates issue.</p>
]]></description><link>https://nodejs.org/en/blog/weekly-updates/weekly-update.2016-06-16</link><guid isPermaLink="true">https://nodejs.org/en/blog/weekly-updates/weekly-update.2016-06-16</guid><dc:creator><![CDATA[Minwoo Jung (github.com/JungMinu)]]></dc:creator><pubDate>Thu, 16 Jun 2016 12:00:00 GMT</pubDate></item><item><title><![CDATA[Security updates for all active release lines, June 2016]]></title><description><![CDATA[<h2 id="header-_-update-23-june-2016-_-releases-available"><em>(Update 23-June-2016)</em> Releases available<a name="_-update-23-june-2016-_-releases-available" class="anchor" href="#_-update-23-june-2016-_-releases-available" aria-labelledby="header-_-update-23-june-2016-_-releases-available"></a></h2><p>After a thorough assessment of the fixes we were planning on including, we have decided to scale back this security update to only include a subset. We are deferring some fixes while we improve the required API changes in order to decrease the disruption that it may cause to users. The vulnerabilities that the deferred fixes address are low severity.</p>
<p>Note that there is <strong>no Node.js v6 release</strong> in this set of updates as it is not impacted by the vulnerabilities being patched.</p>
<p>The fixes we are including in this update are:</p>
<h3 id="header-cve-2016-1669-buffer-overflow-in-v8"><a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-1669">CVE-2016-1669</a> Buffer overflow in V8<a name="cve-2016-1669-buffer-overflow-in-v8" class="anchor" href="#cve-2016-1669-buffer-overflow-in-v8" aria-labelledby="header-cve-2016-1669-buffer-overflow-in-v8"></a></h3><p>Under certain conditions, V8 may improperly expand memory allocations in the <code>Zone::New</code> function. This could potentially be used to cause a Denial of Service via buffer overflow or as a trigger for a remote code execution.</p>
<p>Although this bug is marked as <a href="http://googlechromereleases.blogspot.com.au/2016/05/stable-channel-update.html">high severity</a> in the corresponding Chromium release (50.0.2661.102), our assessment is that this is low severity for Node.js users due to the level of difficulty in making use of this vulnerability. However, users are encouraged to upgrade their Node.js installation to ensure they are properly protected.</p>
<ul>
<li>Node.js v6 (Current) <strong><em>is not affected</em></strong> as of v6.2.0 due to an update to V8 5.0.71.47, versions prior to v6.2.0 <strong>are affected</strong></li>
<li>Node.js v5 <strong><em>is affected</em></strong></li>
<li>Node.js v4 (LTS &quot;Argon&quot;) <strong><em>is affected</em></strong></li>
<li>Node.js v0.12 (Maintenance) <strong><em>is affected</em></strong></li>
<li>Node.js v0.10 (Maintenance) <strong><em>is affected</em></strong></li>
</ul>
<h3 id="header-cve-2014-9748-unsafe-use-of-read-write-locks-on-windows-2003-and-xp-in-libuv"><a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-9748">CVE-2014-9748</a> Unsafe use of read/write locks on Windows 2003 and XP in libuv<a name="cve-2014-9748-unsafe-use-of-read-write-locks-on-windows-2003-and-xp-in-libuv" class="anchor" href="#cve-2014-9748-unsafe-use-of-read-write-locks-on-windows-2003-and-xp-in-libuv" aria-labelledby="header-cve-2014-9748-unsafe-use-of-read-write-locks-on-windows-2003-and-xp-in-libuv"></a></h3><p>Prior to libuv version 1.7.4, a flaw in the read/write locks implementation for Windows XP and Windows 2003 could lead to unlocking a CRITICAL_SECTION on the wrong thread, resulting in undefined and potentially unsafe behavior. This problem was identified by Zhou Ran. Node.js v4 and later are not affected as the usage of read/write was replaced with simple mutexes. Further details can be found on the <a href="https://github.com/libuv/libuv/issues/515">libuv repository</a>.</p>
<ul>
<li>Node.js v6 (Current) <strong><em>is not affected</em></strong></li>
<li>Node.js v5 <strong><em>is not affected</em></strong></li>
<li>Node.js v4 (LTS &quot;Argon&quot;) <strong><em>is not affected</em></strong></li>
<li>Node.js v0.12 (Maintenance) <strong><em>is affected</em></strong></li>
<li>Node.js v0.10 (Maintenance) <strong><em>is affected</em></strong></li>
</ul>
<h3 id="header-downloads">Downloads<a name="downloads" class="anchor" href="#downloads" aria-labelledby="header-downloads"></a></h3><ul>
<li><a href="https://nodejs.org/en/blog/release/v5.12.0/">Node.js v5.12.0</a></li>
<li><a href="https://nodejs.org/en/blog/release/v4.4.6/">Node.js v4.4.6 (LTS &quot;Argon&quot;)</a></li>
<li><a href="https://nodejs.org/en/blog/release/v0.12.15/">Node.js v0.12.15 (Maintenance)</a></li>
<li><a href="https://nodejs.org/en/blog/release/v0.10.46/">Node.js v0.10.46 (Maintenance)</a></li>
</ul>
<p>Please note that this may be the final release of the v5.x line as support ends on the 30th of June.</p>
<hr>
<h2 id="header-_-update-16-june-2016-_-adjusted-release-schedule"><em>(Update 16-June-2016)</em> Adjusted release schedule<a name="_-update-16-june-2016-_-adjusted-release-schedule" class="anchor" href="#_-update-16-june-2016-_-adjusted-release-schedule" aria-labelledby="header-_-update-16-june-2016-_-adjusted-release-schedule"></a></h2><p>Unfortunately we have to announce that we are delaying our security releases by a week. We have concluded that pushing forward with the releases this week would unnecessarily compromise the quality of the fixes we intended to include. Instead, we will be taking the extra time to be sure that we are delivering the stability and quality that Node.js users expect.</p>
<p>We now intend to make releases available on or soon after <strong>Thursday, the 23rd of June, 2016, UTC</strong>.</p>
<p><strong><em>Original post is included below</em></strong></p>
<hr>
<p>The Node.js project has scheduled updates for all of its active release lines to patch two security flaws and one security-related usability flaw. We do not consider any of our updates to be critical, however, it is recommended that all production instances of Node.js be upgraded when the releases are made available.</p>
<p>We intend to make releases available on or soon after <strong>Thursday, the 16th of June, 2016, UTC</strong>.</p>
<p>We consider some of the patches in these releases to be API <em>breaking</em> changes which would normally warrant an increase in the major-version number of Node.js. However, in accordance with our security procedures we will be delivering these changes in minor-version increases <em>(the y in x.y.z)</em> where appropriate, and patch-version increases in v0.10 an v0.12 releases.</p>
<p>Therefore, we expect to be releasing:</p>
<ul>
<li>Node.js v6.3.0 (Current)</li>
<li>Node.js v5.12.0</li>
<li>Node.js v4.5.0 (LTS &quot;Argon&quot;)</li>
<li>Node.js v0.12.15 (Maintenance)</li>
<li>Node.js v0.10.46 (Maintenance)</li>
</ul>
<p>While we anticipate minimal impact from the breaking changes, please be sure to review the details once they are released and make an assessment regarding the impact on your applications.</p>
<p>Additional notes:</p>
<ul>
<li>It is our intention to stop releasing critical updates for the v5 release line at the end of this month, you should migrate to to v6 or v4 LTS if you have not already done so.</li>
<li>In accordance with our security release procedures, we will be limiting changes included in the LTS and Maintenance lines (v4, v0.12 and v0.10) <em>for these updates</em> to only security-related and critical fixes to provide maximum stability for users.</li>
</ul>
<h2 id="header-v8-security-defect">V8 security defect<a name="v8-security-defect" class="anchor" href="#v8-security-defect" aria-labelledby="header-v8-security-defect"></a></h2><p>The V8 team has identified and patched a potential security vulnerability. We will be backporting the fix to all active release lines of Node.js. Our current assessment is that this vulnerability should be considered low-severity for Node.js users with an exploit being very difficult to develop and execute.</p>
<p><strong>All versions of Node.js are affected.</strong></p>
<h2 id="header-http-processing-security-defect-cve-2016-5325">HTTP processing security defect (CVE-2016-5325)<a name="http-processing-security-defect-cve-2016-5325" class="anchor" href="#http-processing-security-defect-cve-2016-5325" aria-labelledby="header-http-processing-security-defect-cve-2016-5325"></a></h2><p>We will be including fixes relating to Node.js HTTP processing. We categorise these as low-severity and are not aware of any existing exploits leveraging the defects. Full details are embargoed until new releases are available.</p>
<p>Common Vulnerability Scoring System (CVSS) v3 Base Score:</p>
<table>
<thead>
<tr>
<th>Metric</th>
<th>Score</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Base Score:</strong></td>
<td>4.8 (Medium)</td>
</tr>
<tr>
<td><strong>Base Vector:</strong></td>
<td><a href="https://www.first.org/cvss/calculator/3.0#CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N">CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N</a></td>
</tr>
<tr>
<td><strong>Attack Vector:</strong></td>
<td>Network (AV:N)</td>
</tr>
<tr>
<td><strong>Attack Complexity:</strong></td>
<td>High (AC:H)</td>
</tr>
<tr>
<td><strong>Privileges Required:</strong></td>
<td>None (PR:N)</td>
</tr>
<tr>
<td><strong>User Interaction:</strong></td>
<td>None (UI:N)</td>
</tr>
<tr>
<td><strong>Scope of Impact:</strong></td>
<td>Unchanged (S:U)</td>
</tr>
<tr>
<td><strong>Confidentiality Impact:</strong></td>
<td>Low (C:L)</td>
</tr>
<tr>
<td><strong>Integrity Impact:</strong></td>
<td>Low (I:L)</td>
</tr>
<tr>
<td><strong>Availability Impact:</strong></td>
<td>None (A:N)</td>
</tr>
</tbody>
</table>
<p>Refer to the <a href="https://www.first.org/cvss/specification-document">CVSS v3 Specification</a> for details on the meanings and application of the vector components.</p>
<p><strong>All versions of Node.js are affected.</strong></p>
<p>This defect will identified as <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-5325">CVE-2016-5325</a></p>
<h2 id="header-security-related-http-client-usability-flaw">Security-related HTTP client usability flaw<a name="security-related-http-client-usability-flaw" class="anchor" href="#security-related-http-client-usability-flaw" aria-labelledby="header-security-related-http-client-usability-flaw"></a></h2><p>We intend to also include a patch for HTTP client in Node.js. While we do not consider this to be strictly a security concern for Node.js core, it poses a usability concern that may easily enable users to write code that exposes vulnerabilities in their applications.</p>
<p><strong>All versions of Node.js are affected.</strong></p>
<h2 id="header-contact-and-future-updates">Contact and future updates<a name="contact-and-future-updates" class="anchor" href="#contact-and-future-updates" aria-labelledby="header-contact-and-future-updates"></a></h2><p>Please monitor the nodejs-sec Google Group for updates: <a href="https://groups.google.com/forum/#!forum/nodejs-sec">https://groups.google.com/forum/#!forum/nodejs-sec</a> or the Node.js website for release announcements: <a href="https://nodejs.org/en/blog/">https://nodejs.org/en/blog/</a></p>
<p>The current Node.js security policy can be found at <a href="https://nodejs.org/en/security/">https://nodejs.org/en/security/</a>.</p>
<p>Please contact security@nodejs.org if you wish to report a vulnerability in Node.js.</p>
<p>Subscribe to the low-volume announcement-only nodejs-sec mailing list at <a href="https://groups.google.com/forum/#!forum/nodejs-sec">https://groups.google.com/forum/#!forum/nodejs-sec</a> to stay up to date on security vulnerabilities and security-related releases of Node.js and the projects maintained in the <a href="http://github.com/nodejs/">nodejs GitHub organisation</a>.</p>
]]></description><link>https://nodejs.org/en/blog/vulnerability/june-2016-security-releases</link><guid isPermaLink="true">https://nodejs.org/en/blog/vulnerability/june-2016-security-releases</guid><dc:creator><![CDATA[Rod Vagg]]></dc:creator><pubDate>Mon, 13 Jun 2016 12:57:51 GMT</pubDate></item><item><title><![CDATA[Node v6.2.1 (Current)]]></title><description><![CDATA[<h3 id="header-notable-changes">Notable changes<a name="notable-changes" class="anchor" href="#notable-changes" aria-labelledby="header-notable-changes"></a></h3><ul>
<li><strong>buffer</strong>: Ignore negative lengths in calls to <code>Buffer()</code> and <code>Buffer.allocUnsafe()</code>. This fixes a possible security concern (reported by Feross Aboukhadijeh) where user input is passed unchecked to the Buffer constructor or <code>allocUnsafe()</code> as it can expose parts of the memory slab used by other Buffers in the application. Note that negative lengths are not supported by the Buffer API and user input to the constructor should always be sanitised and type-checked. (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7051">#7051</a></li>
<li><strong>npm</strong>: Upgrade npm to 3.9.3 (Kat Marchán) <a href="https://github.com/nodejs/node/pull/7030">#7030</a><ul>
<li><a href="https://github.com/npm/npm/commit/42d71be2cec674dd9e860ad414f53184f667620d"><code>npm/npm@42d71be</code></a> <a href="https://github.com/npm/npm/pull/12685">npm/npm#12685</a> When using <code>npm ls &lt;pkg&gt;</code> without a semver specifier, <code>npm ls</code> would skip any packages in your tree that matched by name, but had a prerelease version in their <code>package.json</code>. (<a href="https://github.com/zkat">@zkat</a>)</li>
<li><a href="https://github.com/npm/npm/commit/df04e05af1f257a1903372e1baf334c0969fbdbd"><code>npm/npm@f04e05</code></a> <a href="https://github.com/npm/npm/issues/10013">npm/npm#10013</a> <code>read-package-tree@5.1.4</code>: Fixes an issue where <code>npm install</code> would fail if your <code>node_modules</code> was symlinked. (<a href="https://github.com/iarna">@iarna</a>)</li>
<li><a href="https://github.com/npm/npm/commit/b8944139a935680c4a267468bb2d3c3082b5609f"><code>b894413</code></a> <a href="https://github.com/npm/npm/issues/12372">#12372</a> Changing a nested dependency in an <code>npm-shrinkwrap.json</code> and then running <code>npm install</code> would not get up the updated package. This corrects that. (<a href="https://github.com/misterbyrne">@misterbyrne</a>)</li>
<li>This release includes <code>npm@3.9.0</code>, which is the result of our Windows testing push -- the test suite (should) pass on Windows now. We&#39;re working on getting AppVeyor to a place where we can just rely on it like Travis.</li>
</ul>
</li>
<li><strong>tty</strong>: Default to blocking mode for stdio on OS X. A bug fix in libuv 1.9.0, introduced in Node.js v6.0.0, exposed problems with Node&#39;s use of non-blocking stdio, particularly on OS X which has a small output buffer. This change should fix CLI applications that have been having problems with output since Node.js v6.0.0 on OS X. The core team is continuing to address stdio concerns that exist across supported platforms and progress can be tracked at <a href="https://github.com/nodejs/node/issues/6980">https://github.com/nodejs/node/issues/6980</a>. (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6895">#6895</a></li>
<li><strong>V8</strong>: Upgrade to V8 5.0.71.52. This includes a fix that addresses problems experienced by users of node-inspector since Node.js v6.0.0, see <a href="https://github.com/node-inspector/node-inspector/issues/864">https://github.com/node-inspector/node-inspector/issues/864</a> for details. (Michaël Zasso) <a href="https://github.com/nodejs/node/pull/6928">#6928</a></li>
</ul>
<h3 id="header-commits">Commits<a name="commits" class="anchor" href="#commits" aria-labelledby="header-commits"></a></h3><ul>
<li>[<a href="https://github.com/nodejs/node/commit/99c05a1af0"><code>99c05a1af0</code></a>] - <strong>async_wrap</strong>: pass uid to JS as double (Trevor Norris) <a href="https://github.com/nodejs/node/pull/7096">#7096</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/371be9cd80"><code>371be9cd80</code></a>] - <strong>buffer</strong>: ignore negative allocation lengths (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7051">#7051</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1bcc226edf"><code>1bcc226edf</code></a>] - <strong>buffer</strong>: fix dataview-set benchmark (Ingvar Stepanyan) <a href="https://github.com/nodejs/node/pull/6922">#6922</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/98270c6d15"><code>98270c6d15</code></a>] - <strong>buffer</strong>: fix single digit hex string handling (Justin Sprigg) <a href="https://github.com/nodejs/node/pull/6775">#6775</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1fece2f8c0"><code>1fece2f8c0</code></a>] - <strong>build</strong>: re-add --ninja option to configure (Ehsan Akhgari) <a href="https://github.com/nodejs/node/pull/6780">#6780</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e7b03be191"><code>e7b03be191</code></a>] - <strong>build</strong>: update build-addons when node-gyp changes (Lance Ball) <a href="https://github.com/nodejs/node/pull/6787">#6787</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/55c0b3e0e5"><code>55c0b3e0e5</code></a>] - <strong>build</strong>: unbreak configure with python 2.6 (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6874">#6874</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0503681348"><code>0503681348</code></a>] - <strong>child_process</strong>: measure buffer length in bytes (Rich Trott) <a href="https://github.com/nodejs/node/pull/6764">#6764</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/27d0eb054c"><code>27d0eb054c</code></a>] - <strong>child_process</strong>: emit IPC messages on next tick (cjihrig) <a href="https://github.com/nodejs/node/pull/6909">#6909</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b28468e0a7"><code>b28468e0a7</code></a>] - <strong>child_process</strong>: allow buffer encoding in spawnSync (cjihrig) <a href="https://github.com/nodejs/node/pull/6939">#6939</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6a62bb0070"><code>6a62bb0070</code></a>] - <strong>cluster</strong>: expose result of send() (cjihrig) <a href="https://github.com/nodejs/node/pull/6998">#6998</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2132d349b5"><code>2132d349b5</code></a>] - <strong>cluster</strong>: rewrite debug ports consistently (cjihrig) <a href="https://github.com/nodejs/node/pull/7050">#7050</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0bd8f4c4d8"><code>0bd8f4c4d8</code></a>] - <strong>cluster</strong>: reset handle index on close (Santiago Gimeno) <a href="https://github.com/nodejs/node/pull/6981">#6981</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/93e150f1d6"><code>93e150f1d6</code></a>] - <strong>cluster</strong>: guard against undefined message handlers (cjihrig) <a href="https://github.com/nodejs/node/pull/6902">#6902</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/28b73428e1"><code>28b73428e1</code></a>] - <strong>cluster</strong>: close ownerless handles on disconnect() (cjihrig) <a href="https://github.com/nodejs/node/pull/6909">#6909</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2184e772d2"><code>2184e772d2</code></a>] - <strong>debugger</strong>: propagate --debug-port= to debuggee (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/3470">#3470</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ded02b909f"><code>ded02b909f</code></a>] - <strong>deps</strong>: upgrade npm to 3.9.3 (Kat Marchán) <a href="https://github.com/nodejs/node/pull/7030">#7030</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/bfd7b24c63"><code>bfd7b24c63</code></a>] - <strong>deps</strong>: upgrade to V8 5.0.71.52 (Michaël Zasso) <a href="https://github.com/nodejs/node/pull/6928">#6928</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8e6f8b2fb5"><code>8e6f8b2fb5</code></a>] - <strong>dgram</strong>: copy the list in send (Matteo Collina) <a href="https://github.com/nodejs/node/pull/6804">#6804</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/588c76cd5c"><code>588c76cd5c</code></a>] - <strong>dgram,test</strong>: add addMembership/dropMembership tests (Rich Trott) <a href="https://github.com/nodejs/node/pull/6753">#6753</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e93198e86d"><code>e93198e86d</code></a>] - <strong>doc</strong>: edit pull request template (Rich Trott) <a href="https://github.com/nodejs/node/pull/7058">#7058</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1c1256718e"><code>1c1256718e</code></a>] - <strong>doc</strong>: addresses nits in string_decoder, url, util (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/7026">#7026</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/14b3ba35fc"><code>14b3ba35fc</code></a>] - <strong>doc</strong>: improve debugger doc prose (Rich Trott) <a href="https://github.com/nodejs/node/pull/7007">#7007</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3c2c4c8d5c"><code>3c2c4c8d5c</code></a>] - <strong>doc</strong>: update labels and CI info in onboarding doc (Rich Trott) <a href="https://github.com/nodejs/node/pull/7006">#7006</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b5e93c97f8"><code>b5e93c97f8</code></a>] - <strong>doc</strong>: fix typos in WORKING_GROUPS.md (Joao Andrade) <a href="https://github.com/nodejs/node/pull/7032">#7032</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/f15448681a"><code>f15448681a</code></a>] - <strong>doc</strong>: buffers are not sent over IPC with a socket (Tim Kuijsten) <a href="https://github.com/nodejs/node/pull/6951">#6951</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3518ab93b1"><code>3518ab93b1</code></a>] - <strong>doc</strong>: minor improvements to util.md (Sakthipriyan Vairamani) <a href="https://github.com/nodejs/node/pull/6932">#6932</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/216a3cdcce"><code>216a3cdcce</code></a>] - <strong>doc</strong>: add <code>added:</code> information for vm (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/7011">#7011</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b30d07845d"><code>b30d07845d</code></a>] - <strong>doc</strong>: add <code>added:</code> information for console (Adrian Estrada) <a href="https://github.com/nodejs/node/pull/6995">#6995</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/72d4692e94"><code>72d4692e94</code></a>] - <strong>doc</strong>: add info on what&#39;s used for fswatch on AIX (Michael Dawson) <a href="https://github.com/nodejs/node/pull/6837">#6837</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7c38327dee"><code>7c38327dee</code></a>] - <strong>doc</strong>: update process.hrtime docs to include optional parameter (doug.wade) <a href="https://github.com/nodejs/node/pull/6585">#6585</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0f17a28a00"><code>0f17a28a00</code></a>] - <strong>doc</strong>: improve server.listen() documentation prose (Rich Trott) <a href="https://github.com/nodejs/node/pull/7000">#7000</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3ae9f1469d"><code>3ae9f1469d</code></a>] - <strong>doc</strong>: improve <code>server.address()</code> doc text (Rich Trott) <a href="https://github.com/nodejs/node/pull/7001">#7001</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ae1bf83b6c"><code>ae1bf83b6c</code></a>] - <strong>doc</strong>: clarified use of sexual language in the CoC (Bryan Hughes) <a href="https://github.com/nodejs/node/pull/6973">#6973</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3909209e7a"><code>3909209e7a</code></a>] - <strong>doc</strong>: general improvements to tty.md (James M Snell) <a href="https://github.com/nodejs/node/pull/6931">#6931</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/bc2efe22f6"><code>bc2efe22f6</code></a>] - <strong>doc</strong>: add <code>added:</code> data for cli.md (Rich Trott) <a href="https://github.com/nodejs/node/pull/6960">#6960</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/856638d0b7"><code>856638d0b7</code></a>] - <strong>doc</strong>: add <code>added:</code> information for child_process (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6927">#6927</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a5e3eddfbf"><code>a5e3eddfbf</code></a>] - <strong>doc</strong>: general improvements to url.md copy (James M Snell) <a href="https://github.com/nodejs/node/pull/6904">#6904</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b7ca0a2653"><code>b7ca0a2653</code></a>] - <strong>doc</strong>: add yorkie to collaborators (Yazhong Liu) <a href="https://github.com/nodejs/node/pull/7004">#7004</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a9b90a6952"><code>a9b90a6952</code></a>] - <strong>doc</strong>: general improvements to tls.md copy (James M Snell) <a href="https://github.com/nodejs/node/pull/6933">#6933</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5990a7fe91"><code>5990a7fe91</code></a>] - <strong>doc</strong>: fix broken references (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6941">#6941</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/98e497bdad"><code>98e497bdad</code></a>] - <strong>doc</strong>: fix broken references in changelogs (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6942">#6942</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/f3ae42168a"><code>f3ae42168a</code></a>] - <strong>doc</strong>: general improvements to string_decoder.md copy (James M Snell) <a href="https://github.com/nodejs/node/pull/6940">#6940</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8f623a3c75"><code>8f623a3c75</code></a>] - <strong>doc</strong>: add firedfox to collaborators (Daniel Wang) <a href="https://github.com/nodejs/node/pull/6961">#6961</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/145a6b946a"><code>145a6b946a</code></a>] - <strong>doc</strong>: add bmeck to collaborators (Bradley Meck) <a href="https://github.com/nodejs/node/pull/6962">#6962</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/95f8d59e0d"><code>95f8d59e0d</code></a>] - <strong>doc</strong>: remove &quot;\&quot; within backticks (Rod Machen) <a href="https://github.com/nodejs/node/pull/6952">#6952</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ee1865dd2f"><code>ee1865dd2f</code></a>] - <strong>doc</strong>: clarify buffer class (Steve Mao) <a href="https://github.com/nodejs/node/pull/6914">#6914</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/db3d2a7b96"><code>db3d2a7b96</code></a>] - <strong>doc</strong>: fix typos in timers topic to aid readability (Kevin Donahue) <a href="https://github.com/nodejs/node/pull/6916">#6916</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0f0003fc54"><code>0f0003fc54</code></a>] - <strong>doc</strong>: add jhamhader to collaborators (Yuval Brik) <a href="https://github.com/nodejs/node/pull/6946">#6946</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/f6558ec537"><code>f6558ec537</code></a>] - <strong>doc</strong>: add @othiym23 to list of collaborators (Forrest L Norvell) <a href="https://github.com/nodejs/node/pull/6945">#6945</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/9fa1b19eda"><code>9fa1b19eda</code></a>] - <strong>doc</strong>: reference list of language-specific globals (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6900">#6900</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/15f6224418"><code>15f6224418</code></a>] - <strong>doc</strong>: make doc-only -&gt; fallback to user binary (Robert Jefe Lindstaedt) <a href="https://github.com/nodejs/node/pull/6906">#6906</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a320a019f1"><code>a320a019f1</code></a>] - <strong>doc</strong>: general improvements to util.md (James M Snell) <a href="https://github.com/nodejs/node/pull/6897">#6897</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/527a8a4844"><code>527a8a4844</code></a>] - <strong>doc</strong>: add <code>added:</code> information for zlib (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6840">#6840</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/cb8de85100"><code>cb8de85100</code></a>] - <strong>doc</strong>: make the api doc print-friendly (Marian) <a href="https://github.com/nodejs/node/pull/6748">#6748</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/f1a8c3164a"><code>f1a8c3164a</code></a>] - <strong>doc</strong>: add bengl to collaborators (Bryan English) <a href="https://github.com/nodejs/node/pull/6921">#6921</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/565d4ca12e"><code>565d4ca12e</code></a>] - <strong>doc</strong>: Update DCO to v1.1 (William Kapke) <a href="https://github.com/nodejs/node/pull/6353">#6353</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/eff73c78c5"><code>eff73c78c5</code></a>] - <strong>doc</strong>: general improvements to v8.md copy (James M Snell) <a href="https://github.com/nodejs/node/pull/6829">#6829</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e5a7cec828"><code>e5a7cec828</code></a>] - <strong>doc</strong>: fix typo in Error.captureStackTrace (Mohsen) <a href="https://github.com/nodejs/node/pull/6811">#6811</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5afb91bef7"><code>5afb91bef7</code></a>] - <strong>doc</strong>: make param names consistent &amp; fix doc link (Sakthipriyan Vairamani) <a href="https://github.com/nodejs/node/pull/6832">#6832</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e1fb4805cf"><code>e1fb4805cf</code></a>] - <strong>doc</strong>: add <code>added:</code> info for <code>process.cpuUsage</code> (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6863">#6863</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8a0329f110"><code>8a0329f110</code></a>] - <strong>doc</strong>: fix mkdtemp example by removing hyphen (Sakthipriyan Vairamani) <a href="https://github.com/nodejs/node/pull/6834">#6834</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/45ca7cfcdd"><code>45ca7cfcdd</code></a>] - <strong>doc</strong>: reduce GitHub template verbosity (Rich Trott) <a href="https://github.com/nodejs/node/pull/6801">#6801</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/12a3d0120b"><code>12a3d0120b</code></a>] - <strong>doc</strong>: improve vm.md copy (James M Snell) <a href="https://github.com/nodejs/node/pull/6827">#6827</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0ae512a3cf"><code>0ae512a3cf</code></a>] - <strong>doc</strong>: Add resolveNaptr and naptr rrtype docs (Doug Wade) <a href="https://github.com/nodejs/node/pull/6586">#6586</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8309dbaf9c"><code>8309dbaf9c</code></a>] - <strong>doc</strong>: fix name to match git log (Robert Jefe Lindstaedt) <a href="https://github.com/nodejs/node/pull/6880">#6880</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b52d838f0d"><code>b52d838f0d</code></a>] - <strong>doc</strong>: add note for fs.watch virtualized env (Robert Jefe Lindstaedt) <a href="https://github.com/nodejs/node/pull/6809">#6809</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/08f1361cb6"><code>08f1361cb6</code></a>] - <strong>doc</strong>: add <code>added:</code> information for punycode (Daniel Wang) <a href="https://github.com/nodejs/node/pull/6805">#6805</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/253db33527"><code>253db33527</code></a>] - <strong>doc</strong>: add <code>added:</code> info for dgram.*Membership() (Rich Trott) <a href="https://github.com/nodejs/node/pull/6753">#6753</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5cad04b063"><code>5cad04b063</code></a>] - <strong>doc</strong>: clarify fs.mkdtemp prefix argument (James M Snell) <a href="https://github.com/nodejs/node/pull/6800">#6800</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5a1e823fa5"><code>5a1e823fa5</code></a>] - <strong>doc</strong>: add <code>added:</code> information for fs (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6717">#6717</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/bf4724a7bb"><code>bf4724a7bb</code></a>] - <strong>doc</strong>: remove link to Sign in crypto.md (Kirill Fomichev) <a href="https://github.com/nodejs/node/pull/6812">#6812</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ba3089970d"><code>ba3089970d</code></a>] - <strong>doc</strong>: add <code>added:</code> in for <code>tty</code> (Rich Trott) <a href="https://github.com/nodejs/node/pull/6783">#6783</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/758fadfa0d"><code>758fadfa0d</code></a>] - <strong>doc</strong>: update openssl.org hash links (silverwind) <a href="https://github.com/nodejs/node/pull/6817">#6817</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b2c7d466d4"><code>b2c7d466d4</code></a>] - <strong>doc,test</strong>: add <code>How to write a Node.js test</code> guide (Santiago Gimeno) <a href="https://github.com/nodejs/node/pull/6984">#6984</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c4329aa226"><code>c4329aa226</code></a>] - <strong>fs</strong>: move mkdtemp* functions near static functions (Sakthipriyan Vairamani) <a href="https://github.com/nodejs/node/pull/6828">#6828</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c068880757"><code>c068880757</code></a>] - <strong>fs</strong>: mkdtemp shouldn&#39;t crash if no callback passed (Sakthipriyan Vairamani) <a href="https://github.com/nodejs/node/pull/6828">#6828</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2ab36093e6"><code>2ab36093e6</code></a>] - <strong>http</strong>: use <code>localAddress</code> instead of <code>path</code> (Dirceu Pereira Tiegs) <a href="https://github.com/nodejs/node/pull/5190">#5190</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6f0d8b3a1b"><code>6f0d8b3a1b</code></a>] - <strong>installer</strong>: don&#39;t install node_internals.h (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6913">#6913</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/178f3080f8"><code>178f3080f8</code></a>] - <strong>module</strong>: don&#39;t cache uninitialized builtins (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6907">#6907</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1908b7f00a"><code>1908b7f00a</code></a>] - <strong>path</strong>: fix basename() regressions (Brian White) <a href="https://github.com/nodejs/node/pull/6590">#6590</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/10671406ac"><code>10671406ac</code></a>] - <strong>process</strong>: internal/process/stdio.js cleanup / modernization (James M Snell) <a href="https://github.com/nodejs/node/pull/6766">#6766</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/64445674f0"><code>64445674f0</code></a>] - <strong>src</strong>: add include guards to internal headers (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6948">#6948</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4333fda46d"><code>4333fda46d</code></a>] - <strong>src</strong>: no abort from getter if object isn&#39;t wrapped (Trevor Norris) <a href="https://github.com/nodejs/node/pull/6184">#6184</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4da3e1e461"><code>4da3e1e461</code></a>] - <strong>src</strong>: always clear wrap before persistent Reset() (Trevor Norris) <a href="https://github.com/nodejs/node/pull/6184">#6184</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7e5775704e"><code>7e5775704e</code></a>] - <strong>src</strong>: inherit first from AsyncWrap (Trevor Norris) <a href="https://github.com/nodejs/node/pull/6184">#6184</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0841496992"><code>0841496992</code></a>] - <strong>src</strong>: fix without-intl build (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6820">#6820</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0d08fc415f"><code>0d08fc415f</code></a>] - <strong>stream_base</strong>: always use Base template class (Trevor Norris) <a href="https://github.com/nodejs/node/pull/6184">#6184</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/756ec80d50"><code>756ec80d50</code></a>] - <strong>string_bytes</strong>: Make base64 encode/decode reusable (Eugene Ostroukhov) <a href="https://github.com/nodejs/node/pull/6910">#6910</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/79ad172589"><code>79ad172589</code></a>] - <strong>string_decoder</strong>: rewrite implementation (Brian White) <a href="https://github.com/nodejs/node/pull/6777">#6777</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8b720c4582"><code>8b720c4582</code></a>] - <strong>test</strong>: remove non-incremental common.PORT changes (Rich Trott) <a href="https://github.com/nodejs/node/pull/7055">#7055</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6439fbfac0"><code>6439fbfac0</code></a>] - <strong>test</strong>: test TTY problems by fakeing a TTY using openpty (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6895">#6895</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/81a9f96a29"><code>81a9f96a29</code></a>] - <strong>test</strong>: make test-child-process-fork-net more robust (Rich Trott) <a href="https://github.com/nodejs/node/pull/7033">#7033</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6cf0f622ef"><code>6cf0f622ef</code></a>] - <strong>test</strong>: fix spurious EADDRINUSE in test-https-strict (Rich Trott) <a href="https://github.com/nodejs/node/pull/7024">#7024</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/dea120f247"><code>dea120f247</code></a>] - <strong>test</strong>: update weak module for gc tests (Rich Trott) <a href="https://github.com/nodejs/node/pull/7014">#7014</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3bfbe8a62a"><code>3bfbe8a62a</code></a>] - <strong>test</strong>: remove <code>common.PORT</code> from gc tests (Rich Trott) <a href="https://github.com/nodejs/node/pull/7013">#7013</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b23cd48ca0"><code>b23cd48ca0</code></a>] - <strong>test</strong>: fix test-debug-port-numbers on OS X (Santiago Gimeno) <a href="https://github.com/nodejs/node/pull/7046">#7046</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0a258e5369"><code>0a258e5369</code></a>] - <strong>test</strong>: remove modifcation to common.PORT (Rich Trott) <a href="https://github.com/nodejs/node/pull/6990">#6990</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8c289df175"><code>8c289df175</code></a>] - <strong>test</strong>: use strictEqual consistently in agent test (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6654">#6654</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e4ac808c4d"><code>e4ac808c4d</code></a>] - <strong>test</strong>: work around debugger not killing inferior (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/7037">#7037</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b5949f8bbc"><code>b5949f8bbc</code></a>] - <strong>test</strong>: verify cluster worker exit (cjihrig) <a href="https://github.com/nodejs/node/pull/6993">#6993</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6f3f5af396"><code>6f3f5af396</code></a>] - <strong>test</strong>: add regression test for Proxy as vm context (Michaël Zasso) <a href="https://github.com/nodejs/node/pull/6967">#6967</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/38a3323cc9"><code>38a3323cc9</code></a>] - <strong>test</strong>: improve debug-break-on-uncaught reliability (Rich Trott) <a href="https://github.com/nodejs/node/pull/6793">#6793</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/83e6d53817"><code>83e6d53817</code></a>] - <strong>test</strong>: test cluster worker disconnection on error (Santiago Gimeno) <a href="https://github.com/nodejs/node/pull/6909">#6909</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4cc6a18448"><code>4cc6a18448</code></a>] - <strong>test</strong>: verify IPC messages are emitted on next tick (Santiago Gimeno) <a href="https://github.com/nodejs/node/pull/6909">#6909</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/69e119dbfb"><code>69e119dbfb</code></a>] - <strong>test</strong>: refactor spawnSync() cwd test (cjihrig) <a href="https://github.com/nodejs/node/pull/6939">#6939</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/32cc43a1bd"><code>32cc43a1bd</code></a>] - <strong>test</strong>: fix component printing on windows (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6915">#6915</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c81b6f8d0d"><code>c81b6f8d0d</code></a>] - <strong>test</strong>: refactor to eliminate <strong>defineGetter</strong> (Rich Trott) <a href="https://github.com/nodejs/node/pull/6774">#6774</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1965e445ec"><code>1965e445ec</code></a>] - <strong>test</strong>: refactor test-tls-reuse-host-from-socket (Rich Trott) <a href="https://github.com/nodejs/node/pull/6756">#6756</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2cf3a53ce1"><code>2cf3a53ce1</code></a>] - <strong>test</strong>: fix test-debug-port-cluster flakiness (Rich Trott) <a href="https://github.com/nodejs/node/pull/6769">#6769</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5374afdef8"><code>5374afdef8</code></a>] - <strong>test</strong>: add logging for test-debug-port-cluster (Rich Trott) <a href="https://github.com/nodejs/node/pull/6769">#6769</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/bae7adb6fa"><code>bae7adb6fa</code></a>] - <strong>test</strong>: fix flaky test-stdout-close-catch (Santiago Gimeno) <a href="https://github.com/nodejs/node/pull/6808">#6808</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/528ca04e8d"><code>528ca04e8d</code></a>] - <strong>test</strong>: add more path.basename() tests (Brian White) <a href="https://github.com/nodejs/node/pull/6590">#6590</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1469b98fa1"><code>1469b98fa1</code></a>] - <strong>test</strong>: remove duplicate path tests (Brian White) <a href="https://github.com/nodejs/node/pull/6590">#6590</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/81e765f521"><code>81e765f521</code></a>] - <strong>test</strong>: robust handling of env for npm-test-install (Myles Borins) <a href="https://github.com/nodejs/node/pull/6797">#6797</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2895860138"><code>2895860138</code></a>] - <strong>test</strong>: cluster-setup-master online workers check (Devon Rifkin) <a href="https://github.com/nodejs/node/pull/6535">#6535</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7c932c2d49"><code>7c932c2d49</code></a>] - <strong>test</strong>: added tests for https-agent-getname (suryagh) <a href="https://github.com/nodejs/node/pull/6762">#6762</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/827b3eb503"><code>827b3eb503</code></a>] - <strong>test</strong>: add --repeat option to tools/test.py (Michael Dawson) <a href="https://github.com/nodejs/node/pull/6700">#6700</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ea287fc1a6"><code>ea287fc1a6</code></a>] - <strong>test,win</strong>: skip addons/load-long-path on WOW64 (Alexis Campailla) <a href="https://github.com/nodejs/node/pull/6675">#6675</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/21e31352d7"><code>21e31352d7</code></a>] - <strong>tls</strong>: catch <code>certCbDone</code> exceptions (Fedor Indutny) <a href="https://github.com/nodejs/node/pull/6887">#6887</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/257e54b9c0"><code>257e54b9c0</code></a>] - <strong>tls,https</strong>: respect address family when connecting (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6654">#6654</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5779ed2a4a"><code>5779ed2a4a</code></a>] - <strong>tls_wrap</strong>: do not abort on new TLSWrap() (Trevor Norris) <a href="https://github.com/nodejs/node/pull/6184">#6184</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/108523e06e"><code>108523e06e</code></a>] - <strong>tools</strong>: make sure doctool anchors respect includes (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6943">#6943</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/bf3afce668"><code>bf3afce668</code></a>] - <strong>tools</strong>: restore change of signatures to opts hashes (Jesse McCarthy) <a href="https://github.com/nodejs/node/pull/6690">#6690</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ceee56b28b"><code>ceee56b28b</code></a>] - <strong>tools</strong>: disallow deprecated define getter/setter (Rich Trott) <a href="https://github.com/nodejs/node/pull/6774">#6774</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/614907e516"><code>614907e516</code></a>] - <strong>tools</strong>: print stderr on bad test.py <code>vmArch</code> check (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6786">#6786</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4d3a7594a5"><code>4d3a7594a5</code></a>] - <strong>tty</strong>: use blocking mode on OS X (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6895">#6895</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/36ed4a2d7a"><code>36ed4a2d7a</code></a>] - <strong>udp</strong>: use libuv API to get file descriptor (Saúl Ibarra Corretgé) <a href="https://github.com/nodejs/node/pull/6908">#6908</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/f3e3eebec8"><code>f3e3eebec8</code></a>] - <strong>unix,stream</strong>: fix getting the correct fd for a handle (Saúl Ibarra Corretgé) <a href="https://github.com/nodejs/node/pull/6753">#6753</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d270706881"><code>d270706881</code></a>] - <strong>util</strong>: pretty-print SIMD types (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6917">#6917</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/55b736a63b"><code>55b736a63b</code></a>] - <strong>vm</strong>: don&#39;t abort process when stack space runs out (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6907">#6907</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/cb2ef35b76"><code>cb2ef35b76</code></a>] - <strong>win,build</strong>: add creation of zip and 7z package (Bartosz Sosnowski) <a href="https://github.com/nodejs/node/pull/5995">#5995</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1e26b82ce4"><code>1e26b82ce4</code></a>] - <strong>zlib</strong>: release callback and buffer after processing (Matt Lavin) <a href="https://github.com/nodejs/node/pull/6955">#6955</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/64415564de"><code>64415564de</code></a>] - <strong>zlib</strong>: remove <code>_closed</code> in source (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6574">#6574</a></li>
</ul>
<p>Windows 32-bit Installer: <a href="https://nodejs.org/dist/v6.2.1/node-v6.2.1-x86.msi">https://nodejs.org/dist/v6.2.1/node-v6.2.1-x86.msi</a><br>
Windows 64-bit Installer: <a href="https://nodejs.org/dist/v6.2.1/node-v6.2.1-x64.msi">https://nodejs.org/dist/v6.2.1/node-v6.2.1-x64.msi</a><br>
Windows 32-bit Binary: <a href="https://nodejs.org/dist/v6.2.1/win-x86/node.exe">https://nodejs.org/dist/v6.2.1/win-x86/node.exe</a><br>
Windows 64-bit Binary: <a href="https://nodejs.org/dist/v6.2.1/win-x64/node.exe">https://nodejs.org/dist/v6.2.1/win-x64/node.exe</a><br>
Mac OS X 64-bit Installer: <a href="https://nodejs.org/dist/v6.2.1/node-v6.2.1.pkg">https://nodejs.org/dist/v6.2.1/node-v6.2.1.pkg</a><br>
Mac OS X 64-bit Binary: <a href="https://nodejs.org/dist/v6.2.1/node-v6.2.1-darwin-x64.tar.gz">https://nodejs.org/dist/v6.2.1/node-v6.2.1-darwin-x64.tar.gz</a><br>
Linux 32-bit Binary: <a href="https://nodejs.org/dist/v6.2.1/node-v6.2.1-linux-x86.tar.xz">https://nodejs.org/dist/v6.2.1/node-v6.2.1-linux-x86.tar.xz</a><br>
Linux 64-bit Binary: <a href="https://nodejs.org/dist/v6.2.1/node-v6.2.1-linux-x64.tar.xz">https://nodejs.org/dist/v6.2.1/node-v6.2.1-linux-x64.tar.xz</a><br>
Linux PPC LE 64-bit Binary: <a href="https://nodejs.org/dist/v6.2.1/node-v6.2.1-linux-ppc64le.tar.xz">https://nodejs.org/dist/v6.2.1/node-v6.2.1-linux-ppc64le.tar.xz</a><br>
SunOS 32-bit Binary: <a href="https://nodejs.org/dist/v6.2.1/node-v6.2.1-sunos-x86.tar.xz">https://nodejs.org/dist/v6.2.1/node-v6.2.1-sunos-x86.tar.xz</a><br>
SunOS 64-bit Binary: <a href="https://nodejs.org/dist/v6.2.1/node-v6.2.1-sunos-x64.tar.xz">https://nodejs.org/dist/v6.2.1/node-v6.2.1-sunos-x64.tar.xz</a><br>
ARMv6 32-bit Binary: <a href="https://nodejs.org/dist/v6.2.1/node-v6.2.1-linux-armv6l.tar.xz">https://nodejs.org/dist/v6.2.1/node-v6.2.1-linux-armv6l.tar.xz</a><br>
ARMv7 32-bit Binary: <a href="https://nodejs.org/dist/v6.2.1/node-v6.2.1-linux-armv7l.tar.xz">https://nodejs.org/dist/v6.2.1/node-v6.2.1-linux-armv7l.tar.xz</a><br>
ARMv8 64-bit Binary: <a href="https://nodejs.org/dist/v6.2.1/node-v6.2.1-linux-arm64.tar.xz">https://nodejs.org/dist/v6.2.1/node-v6.2.1-linux-arm64.tar.xz</a><br>
Source Code: <a href="https://nodejs.org/dist/v6.2.1/node-v6.2.1.tar.gz">https://nodejs.org/dist/v6.2.1/node-v6.2.1.tar.gz</a><br>
Other release files: <a href="https://nodejs.org/dist/v6.2.1/">https://nodejs.org/dist/v6.2.1/</a><br>
Documentation: <a href="https://nodejs.org/docs/v6.2.1/api/">https://nodejs.org/docs/v6.2.1/api/</a></p>
<p>Shasums (GPG signing hash: SHA512, file hash: SHA256):</p>
<pre><code>-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

a6e99c2e482133b0f2db6bb8284ef79ea60c554e8dbfc24a1a691671cc5d0517  node-v6.2.1-darwin-x64.tar.gz
5ccbac97e3e38d9e8531552f670ae62a95c8561e74b7bd218ad92215fa783f06  node-v6.2.1-darwin-x64.tar.xz
f55aa8ea6de59e074c4f9d5ab65b77e68bcf607971be05ff31b88acb91714f4f  node-v6.2.1-headers.tar.gz
6c06cc1cbfbcc417acfd83a1a7406f4894e76bba5a0f1dd221fba765fdadee3a  node-v6.2.1-headers.tar.xz
86f7498f0c355e8f8c17cecaf7e0bd6f68e189e00e0adb6700560e291edce08d  node-v6.2.1-linux-arm64.tar.gz
040f7f1f31a0ffede00733cffabb5a2e66931345bc3d9cedb1af683304890b31  node-v6.2.1-linux-arm64.tar.xz
f791c57f336fc67c7231c9c54799b4e39427a2de99decf47898d57353b0fb64b  node-v6.2.1-linux-armv6l.tar.gz
1cb17dbfb405e750ae323346de5263bd2be4bf30b1211de7ffb07512332558a9  node-v6.2.1-linux-armv6l.tar.xz
01ac0cbae90a88f73b016db7e8052d05f7ab7083d5a14b6b10067a41eea538ff  node-v6.2.1-linux-armv7l.tar.gz
aac349e02d41eb9e1205af96e42d9a593ba4827553aa1db988cabaf0041fb08a  node-v6.2.1-linux-armv7l.tar.xz
2ca673b76add031e6244b36e2cd3c1da1982e21aec84eeda24bcbc1b77772ab2  node-v6.2.1-linux-ppc64le.tar.gz
f8dfe167d4a43adb05a9a14eb96a7081189dd2036e259972fd1fc643b148a1e8  node-v6.2.1-linux-ppc64le.tar.xz
4fa09f89af1b835caf4be73ca4c7a02a1bc640c36c4ec512dbdb0827315003e9  node-v6.2.1-linux-ppc64.tar.gz
6bb127999105e9eb2f4958b0be170aea38951f49a3fa7efacdea344e7b3111b6  node-v6.2.1-linux-ppc64.tar.xz
c6ae9c90858fb47a2915ad6494e5eb8e6f34f4512de1d5a461e5fb0c003590b1  node-v6.2.1-linux-x64.tar.gz
1027de8bd78ef2cba2baf5a676d54f185f9632324465cfd8572c3568ca6e1f64  node-v6.2.1-linux-x64.tar.xz
f5656c288c1dfc760a23000d8dc1eb3d0ff484a7798e5f28718a728ae96e9125  node-v6.2.1-linux-x86.tar.gz
9d46df7c687f212107a39a667fb6b0da9734c71c3513ff8db21f521a033270f1  node-v6.2.1-linux-x86.tar.xz
dec8054fdf3266b912842cb3307a3b5e6cc34bf00f2d3bd19a5b71fb4d9a3290  node-v6.2.1.pkg
c7e931670bca8055ed6d090bab276bee5c2db570e74c0828f64a2b5c6dc9e973  node-v6.2.1-sunos-x64.tar.gz
550c162ba7dd4d7b1e8dd69f98887e54ebfc79a5fe5ba79308b2166408a4a8a6  node-v6.2.1-sunos-x64.tar.xz
39ac16d0b200a29261767d6aa99d1a9da343e7c4b629ce332f7d6b9fcfb1767a  node-v6.2.1-sunos-x86.tar.gz
7fc08597de9b69ba8b38007b0df896e8776d138dc7e4716ce09c325cf8df4aff  node-v6.2.1-sunos-x86.tar.xz
fa26d4380150fbb69a48bddaec6143e176effe043cfe44e512c5ef9d22618b63  node-v6.2.1.tar.gz
dbaeb8fb68a599e5164b17c74f66d24f424ee4ab3a25d8de8a3c6808e5b42bfb  node-v6.2.1.tar.xz
217631ccc76fb869ea9a82e8c12eebbe67c66f877bf98d913bf8f19d1dae56f1  node-v6.2.1-win-x64.7z
90e93905b52131a84e4c3488177a0bf060a4c3e5633c1f567d580fd9141d2848  node-v6.2.1-win-x64.zip
4103f49aea62d6b2e7e022493c61af93c401404c5497ddd77f0e3787e0e8bce7  node-v6.2.1-win-x86.7z
967dd36e2eec59c4e32e7cc3bf565f589080ac1be0cc877ee8aa1240fbb9b7d7  node-v6.2.1-win-x86.zip
528b7c2cb707e81df4d5e53ea3b8d8c32e71ab3ba7e2ee4993a4f44da6e353ba  node-v6.2.1-x64.msi
8095a7c506ed1ada1599942ae2a8cb60909def15bc4d97c7dca51c3d02f046ec  node-v6.2.1-x86.msi
1fea4396837da41f363312d3ee7cbc34ba23edfb24e39c6aa6ced732cdea7878  win-x64/node.exe
0dca5ad3d2ec6e4eed2f370c812c94fc1f5d5434e44a2b6e970a133d9be5bf37  win-x64/node.lib
4403d0dd9702907eb2ad8d49b0c7f2af5f5b7d263758bf1e79fe89008f523012  win-x64/node_pdb.7z
03201f05e0f3f455116f29b03bc7a930d0c4b0c593327944eceb44454f746335  win-x64/node_pdb.zip
e5d6e2800e05c376f0b13fccf4ea5f45dbc890b13221401fe7ae3bbcf77a9635  win-x86/node.exe
c7312d02d0b98cbc7700cc22d47f40d4c2284e96410216484d606057936dbad4  win-x86/node.lib
3e777fe925cb48917cb9748bdff62fb0e8570385572cdcfd9cf5cb68dfcdb784  win-x86/node_pdb.7z
0b6edd7afb0ea3024a12c55923df448726e99459a9be44d418e7d1d7ad5ab2cd  win-x86/node_pdb.zip
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAEBAgAGBQJXULUeAAoJEMJzeS99g1Rd36wH/3pDBdJVZVgARpEOfJHAWUx7
Rhma9WpukZ1K7d/5c98jdvgErIUM/aQYx2qKUvDLBHUHdRjQM7uuCHu7bm4AMiYb
9ugqsAxLqAHKtOzBWaY6SEAtnG7nHUsKsmeVos35Y9VjlGsOymL5VD13Wjv4o/uX
kL9fFroCv2QJ6Y/ho9PW6t1t4SmvtOpHr4vvtu3SFEnz/Ov9+SAkRHEXPLZZKfkI
Ul2U2Pq9gG9heLTJMUKmaUFnULA1vejtIfy1fDZpBIxbgSaBLjoVQbQjnnpuF+2r
BeMzhURkxye584k7noOZbEKIFSM1h6DqJ4fjWjSkJZKnaJ6/WuymInsM3uT3x2I=
=kvV9
-----END PGP SIGNATURE-----
</code></pre>]]></description><link>https://nodejs.org/en/blog/release/v6.2.1</link><guid isPermaLink="true">https://nodejs.org/en/blog/release/v6.2.1</guid><dc:creator><![CDATA[Rod Vagg]]></dc:creator><pubDate>Thu, 02 Jun 2016 22:47:05 GMT</pubDate></item><item><title><![CDATA[Weekly Update - May 30th, 2016]]></title><description><![CDATA[<h3 id="header-node-v4-4-5-lts-release">Node v4.4.5 (LTS) Release<a name="node-v4-4-5-lts-release" class="anchor" href="#node-v4-4-5-lts-release" aria-labelledby="header-node-v4-4-5-lts-release"></a></h3><p><a href="https://nodejs.org/en/blog/release/v4.4.5/">Node v4.4.5 (LTS)</a>. Complete changelog from previous releases can be found <a href="https://github.com/nodejs/node/blob/master/CHANGELOG.md">on GitHub</a>.</p>
<h3 id="header-community-updates">Community Updates<a name="community-updates" class="anchor" href="#community-updates" aria-labelledby="header-community-updates"></a></h3><ul>
<li><a href="http://nodeup.com/onehundredtwo">NodeUp podcast episode 102</a>: A Node v6.0 Show with Anna Henningsen, James Snell, Rich Trott, and Rod Vagg.</li>
<li><a href="https://blog.risingstack.com/node-hero-tutorial-getting-started-with-node-js/">Node Hero - Getting Started With Node.js</a>: you can learn how to get started with Node.js and deliver software products using it.</li>
<li><a href="https://medium.com/@Trott/a-quick-guide-to-reading-node-js-core-source-c968d83e4194#.mmontrmvg">A Quick Guide To Reading Node.js Core Source</a>: One person&#39;s approach to understanding the source code that makes up Node.js core. &quot;Your mileage may vary. Warranty void if seal is broken.&quot;</li>
</ul>
<p>If you have spotted or written something about Node.js, do come over to our <a href="https://github.com/nodejs/evangelism">Evangelism team repo</a> and suggest it on the <a href="https://github.com/nodejs/evangelism/issues">Issues page</a>, specifically the Weekly Updates issue.</p>
<h3 id="header-upcoming-events">Upcoming Events<a name="upcoming-events" class="anchor" href="#upcoming-events" aria-labelledby="header-upcoming-events"></a></h3><ul>
<li><a href="http://brazil.nodeconf.com">NodeConf Brazil</a> - June 4th - 5th, 2016</li>
<li><a href="https://ti.to/nodeconf/adventure-2016">NodeConf Adventure 2016</a>, &quot;First batch of NodeConf Adventure tickets are up!&quot;, June 9th–12th, 2016 - Walker Creek Ranch, Marin, CA, USA</li>
<li><a href="http://nodepdx.org">Node PDX</a> - June 19-21st, 2016</li>
<li><a href="https://2016.nodeconf.com.ar">NodeConf Argentina</a> - 18 - 19th November, 2016</li>
</ul>
<p>Have an event about Node.js coming up? You can put your events here through the <a href="https://github.com/nodejs/evangelism">Evangelism team repo</a> and announce it in the <a href="https://github.com/nodejs/evangelism/issues">Issues page</a>, specifically the Weekly Updates issue.</p>
]]></description><link>https://nodejs.org/en/blog/weekly-updates/weekly-update.2016-05-30</link><guid isPermaLink="true">https://nodejs.org/en/blog/weekly-updates/weekly-update.2016-05-30</guid><dc:creator><![CDATA[Minwoo Jung (github.com/JungMinu)]]></dc:creator><pubDate>Mon, 30 May 2016 12:00:00 GMT</pubDate></item><item><title><![CDATA[Node v4.4.5 (LTS)]]></title><description><![CDATA[<h3 id="header-notable-changes">Notable Changes<a name="notable-changes" class="anchor" href="#notable-changes" aria-labelledby="header-notable-changes"></a></h3><ul>
<li><strong>buffer</strong>:<ul>
<li>Buffer no longer errors if you call lastIndexOf with a search term longer than the buffer (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6511">#6511</a></li>
</ul>
</li>
<li><strong>contextify</strong>:<ul>
<li>Context objects are now properly garbage collected, this solves a problem some individuals were experiencing with extreme memory growth (Ali Ijaz Sheikh) <a href="https://github.com/nodejs/node/pull/6871">#6871</a></li>
</ul>
</li>
<li><strong>deps</strong>:<ul>
<li>update npm to 2.15.5 (Rebecca Turner) <a href="https://github.com/nodejs/node/pull/6663">#6663</a></li>
</ul>
</li>
<li><strong>http</strong>:<ul>
<li>Invalid status codes can no longer be sent. Limited to 3 digit numbers between 100 - 999 (Brian White) <a href="https://github.com/nodejs/node/pull/6291">#6291</a></li>
</ul>
</li>
</ul>
<h3 id="header-commits">Commits<a name="commits" class="anchor" href="#commits" aria-labelledby="header-commits"></a></h3><ul>
<li>[<a href="https://github.com/nodejs/node/commit/59a977dd22"><code>59a977dd22</code></a>] - <strong>assert</strong>: respect assert.doesNotThrow message. (Ilya Shaisultanov) <a href="https://github.com/nodejs/node/pull/2407">#2407</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8b077faa82"><code>8b077faa82</code></a>] - <strong>buffer</strong>: fix UCS2 indexOf for odd buffer length (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6511">#6511</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/12a9699fcf"><code>12a9699fcf</code></a>] - <strong>buffer</strong>: fix needle length misestimation for UCS2 (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6511">#6511</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/292b1b733e"><code>292b1b733e</code></a>] - <strong>build</strong>: fix make tar-headers for Linux (Gibson Fahnestock) <a href="https://github.com/nodejs/node/pull/5978">#5978</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/918d33ad4b"><code>918d33ad4b</code></a>] - <strong>build</strong>: add script to create Android .mk files (Robert Chiras) <a href="https://github.com/nodejs/node/pull/5544">#5544</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4ad71847bc"><code>4ad71847bc</code></a>] - <strong>build</strong>: add suport for x86 architecture (Robert Chiras) <a href="https://github.com/nodejs/node/pull/5544">#5544</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6ad85914b1"><code>6ad85914b1</code></a>] - <strong>child_process</strong>: add nullptr checks after allocs (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6256">#6256</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/823f726f66"><code>823f726f66</code></a>] - <strong>contextify</strong>: tie lifetimes of context &amp; sandbox (Ali Ijaz Sheikh) <a href="https://github.com/nodejs/node/pull/5800">#5800</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/9ddb44ba61"><code>9ddb44ba61</code></a>] - <strong>contextify</strong>: cache sandbox and context in locals (Ali Ijaz Sheikh) <a href="https://github.com/nodejs/node/pull/5392">#5392</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8ebdcd65b0"><code>8ebdcd65b0</code></a>] - <strong>contextify</strong>: replace deprecated SetWeak usage (Ali Ijaz Sheikh) <a href="https://github.com/nodejs/node/pull/5392">#5392</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/9e6d8170f7"><code>9e6d8170f7</code></a>] - <strong>contextify</strong>: cleanup weak ref for sandbox (Ali Ijaz Sheikh) <a href="https://github.com/nodejs/node/pull/5392">#5392</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b6fc15347d"><code>b6fc15347d</code></a>] - <strong>contextify</strong>: cleanup weak ref for global proxy (Ali Ijaz Sheikh) <a href="https://github.com/nodejs/node/pull/5392">#5392</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0dc875e2c7"><code>0dc875e2c7</code></a>] - <strong>deps</strong>: upgrade npm in LTS to 2.15.5 (Rebecca Turner)</li>
<li>[<a href="https://github.com/nodejs/node/commit/3c50350f41"><code>3c50350f41</code></a>] - <strong>deps</strong>: fix null pointer checks in v8 (Michaël Zasso) <a href="https://github.com/nodejs/node/pull/6669">#6669</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a40730b4b4"><code>a40730b4b4</code></a>] - <strong>deps</strong>: backport IsValid changes from 4e8736d in V8 (Michaël Zasso) <a href="https://github.com/nodejs/node/pull/6669">#6669</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/855604c53a"><code>855604c53a</code></a>] - <strong>deps</strong>: upgrade npm in LTS to 2.15.4 (Rebecca Turner) <a href="https://github.com/nodejs/node/pull/6663">#6663</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/433fb9a968"><code>433fb9a968</code></a>] - <strong>deps</strong>: cherry-pick 1383d00 from v8 upstream (Fedor Indutny) <a href="https://github.com/nodejs/node/pull/6179">#6179</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d1fca27ef8"><code>d1fca27ef8</code></a>] - <strong>deps</strong>: backport 125ac66 from v8 upstream (Myles Borins) <a href="https://github.com/nodejs/node/pull/6086">#6086</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/df299019a0"><code>df299019a0</code></a>] - <strong>deps</strong>: upgrade npm in LTS to 2.15.2 (Kat Marchán)</li>
<li>[<a href="https://github.com/nodejs/node/commit/50f02bd8d6"><code>50f02bd8d6</code></a>] - <strong>doc</strong>: update vm.runInDebugContext() example (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6757">#6757</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b872feade3"><code>b872feade3</code></a>] - <strong>doc</strong>: replace functions with arrow functions (abouthiroppy) <a href="https://github.com/nodejs/node/pull/6203">#6203</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7160229be4"><code>7160229be4</code></a>] - <strong>doc</strong>: note that zlib.flush acts after pending writes (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6172">#6172</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d069f2de8c"><code>d069f2de8c</code></a>] - <strong>doc</strong>: add full example for zlib.flush() (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6172">#6172</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/59814acfef"><code>59814acfef</code></a>] - <strong>doc</strong>: describe child.kill() pitfalls on linux (Robert Jefe Lindstaedt) <a href="https://github.com/nodejs/node/issues/2098">#2098</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/840c09492d"><code>840c09492d</code></a>] - <strong>doc</strong>: update openssl.org hash links (silverwind) <a href="https://github.com/nodejs/node/pull/6817">#6817</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/126fdc3171"><code>126fdc3171</code></a>] - <strong>doc</strong>: fix issues related to page scrolling (Roman Reiss)</li>
<li>[<a href="https://github.com/nodejs/node/commit/29e25d8489"><code>29e25d8489</code></a>] - <strong>doc</strong>: add steps for running addons + npm tests (Myles Borins) <a href="https://github.com/nodejs/node/pull/6231">#6231</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/fcc6a347f7"><code>fcc6a347f7</code></a>] - <strong>doc</strong>: get rid of sneaky hard tabs in CHANGELOG (Myles Borins) <a href="https://github.com/nodejs/node/pull/6608">#6608</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/369569018e"><code>369569018e</code></a>] - <strong>doc</strong>: revert backported commits (Myles Borins) <a href="https://github.com/nodejs/node/pull/6530">#6530</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4ec9ae8a1c"><code>4ec9ae8a1c</code></a>] - <strong>doc</strong>: explain differences in console.assert between node and browsers (James M Snell) <a href="https://github.com/nodejs/node/pull/6169">#6169</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/df5ce6fad4"><code>df5ce6fad4</code></a>] - <strong>doc</strong>: native module reloading is not supported (Bryan English) <a href="https://github.com/nodejs/node/pull/6168">#6168</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/30f354f72b"><code>30f354f72b</code></a>] - <strong>doc</strong>: clarify fs.watch() and inodes on linux, os x (Joran Dirk Greef) <a href="https://github.com/nodejs/node/pull/6099">#6099</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/29f821b73d"><code>29f821b73d</code></a>] - <strong>doc</strong>: clarifies http.serverResponse implementation (Allen Hernandez) <a href="https://github.com/nodejs/node/pull/6072">#6072</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6d560094f4"><code>6d560094f4</code></a>] - <strong>doc</strong>: minor argument formatting in stream.markdown (James M Snell) <a href="https://github.com/nodejs/node/pull/6016">#6016</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6a197ec617"><code>6a197ec617</code></a>] - <strong>doc</strong>: fix http response event, Agent#getName (Matthew Douglass) <a href="https://github.com/nodejs/node/pull/5993">#5993</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/620a261240"><code>620a261240</code></a>] - <strong>http</strong>: disallow sending obviously invalid status codes (Brian White) <a href="https://github.com/nodejs/node/pull/6291">#6291</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/9a8b53124d"><code>9a8b53124d</code></a>] - <strong>http</strong>: unref socket timer on parser execute (Fedor Indutny) <a href="https://github.com/nodejs/node/pull/6286">#6286</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b28e44deb2"><code>b28e44deb2</code></a>] - <strong>http</strong>: Corrects IPv6 address in Host header (Mihai Potra) <a href="https://github.com/nodejs/node/pull/5314">#5314</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2fac15ba94"><code>2fac15ba94</code></a>] - <strong>src</strong>: fix FindFirstCharacter argument alignment (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6511">#6511</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2942cff069"><code>2942cff069</code></a>] - <strong>src</strong>: add missing &#39;inline&#39; keywords (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6056">#6056</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e0eebf412e"><code>e0eebf412e</code></a>] - <strong>src,tools</strong>: remove null sentinel from source array (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/5418">#5418</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8f18414cd5"><code>8f18414cd5</code></a>] - <strong>src,tools</strong>: drop nul byte from built-in source code (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/5418">#5418</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d7a3ea457b"><code>d7a3ea457b</code></a>] - <strong>src,tools</strong>: allow utf-8 in built-in js source code (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/5418">#5418</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/51c0808b55"><code>51c0808b55</code></a>] - <strong>stream</strong>: Fix readableState.awaitDrain mechanism (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6023">#6023</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/49a5941d30"><code>49a5941d30</code></a>] - <strong>test</strong>: fix test-debug-port-cluster flakiness (Rich Trott) <a href="https://github.com/nodejs/node/pull/6769">#6769</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/f8144e4c4a"><code>f8144e4c4a</code></a>] - <strong>test</strong>: add logging for test-debug-port-cluster (Rich Trott) <a href="https://github.com/nodejs/node/pull/6769">#6769</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/773ea20d0e"><code>773ea20d0e</code></a>] - <strong>test</strong>: include component in tap output (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6653">#6653</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/333369e1ff"><code>333369e1ff</code></a>] - <strong>test</strong>: increase the platform timeout for AIX (Michael Dawson) <a href="https://github.com/nodejs/node/pull/6342">#6342</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/06e5fafe84"><code>06e5fafe84</code></a>] - <strong>test</strong>: add tests for console.assert (Evan Lucas) <a href="https://github.com/nodejs/node/pull/6302">#6302</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/f60ba54811"><code>f60ba54811</code></a>] - <strong>test</strong>: add zlib close-after-error regression test (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6270">#6270</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/24ac16f4be"><code>24ac16f4be</code></a>] - <strong>test</strong>: fix flaky test-http-set-timeout-server (Santiago Gimeno) <a href="https://github.com/nodejs/node/pull/6248">#6248</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5002a71357"><code>5002a71357</code></a>] - <strong>test</strong>: assert - fixed error messages to match the tests (surya panikkal) <a href="https://github.com/nodejs/node/pull/6241">#6241</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0f9405dd33"><code>0f9405dd33</code></a>] - <strong>test</strong>: move more tests from sequential to parallel (Santiago Gimeno) <a href="https://github.com/nodejs/node/pull/6187">#6187</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/37cc249218"><code>37cc249218</code></a>] - <strong>test</strong>: fix test-net-settimeout flakiness (Santiago Gimeno) <a href="https://github.com/nodejs/node/pull/6166">#6166</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/69dcbb642f"><code>69dcbb642f</code></a>] - <strong>test</strong>: fix flaky test-child-process-fork-net (Rich Trott) <a href="https://github.com/nodejs/node/pull/6138">#6138</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a97a6a9d69"><code>a97a6a9d69</code></a>] - <strong>test</strong>: fix issues for ESLint 2.7.0 (silverwind) <a href="https://github.com/nodejs/node/pull/6132">#6132</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a865975909"><code>a865975909</code></a>] - <strong>test</strong>: fix flaky test-http-client-abort (Rich Trott) <a href="https://github.com/nodejs/node/pull/6124">#6124</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/25d4b5b1e9"><code>25d4b5b1e9</code></a>] - <strong>test</strong>: move some test from sequential to parallel (Santiago Gimeno) <a href="https://github.com/nodejs/node/pull/6087">#6087</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/28040ccf49"><code>28040ccf49</code></a>] - <strong>test</strong>: refactor test-file-write-stream3 (Rich Trott) <a href="https://github.com/nodejs/node/pull/6050">#6050</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3a67a05ed4"><code>3a67a05ed4</code></a>] - <strong>test</strong>: enforce strict mode for test-domain-crypto (Rich Trott) <a href="https://github.com/nodejs/node/pull/6047">#6047</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0b376cb3f9"><code>0b376cb3f9</code></a>] - <strong>test</strong>: fix pummel test failures (Rich Trott) <a href="https://github.com/nodejs/node/pull/6012">#6012</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7b60b8f8e9"><code>7b60b8f8e9</code></a>] - <strong>test</strong>: fix flakiness of stringbytes-external (Ali Ijaz Sheikh) <a href="https://github.com/nodejs/node/pull/6705">#6705</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/cc4c5187ed"><code>cc4c5187ed</code></a>] - <strong>test</strong>: ensure test-npm-install uses correct node (Myles Borins) <a href="https://github.com/nodejs/node/pull/6658">#6658</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3d4d5777bc"><code>3d4d5777bc</code></a>] - <strong>test</strong>: refactor http-end-throw-socket-handling (Santiago Gimeno) <a href="https://github.com/nodejs/node/pull/5676">#5676</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c76f214b90"><code>c76f214b90</code></a>] - <strong>test,tools</strong>: enable linting for undefined vars (Rich Trott) <a href="https://github.com/nodejs/node/pull/6255">#6255</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/9222689215"><code>9222689215</code></a>] - <strong>test,vm</strong>: enable strict mode for vm tests (Rich Trott) <a href="https://github.com/nodejs/node/pull/6209">#6209</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b8c9d6b64e"><code>b8c9d6b64e</code></a>] - <strong>tools</strong>: enable linting for v8_prof_processor.js (Rich Trott) <a href="https://github.com/nodejs/node/pull/6262">#6262</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8fa202947d"><code>8fa202947d</code></a>] - <strong>tools</strong>: lint rule for assert.fail() (Rich Trott) <a href="https://github.com/nodejs/node/pull/6261">#6261</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1aa6c5b7a9"><code>1aa6c5b7a9</code></a>] - <strong>tools</strong>: update ESLint to 2.7.0 (silverwind) <a href="https://github.com/nodejs/node/pull/6132">#6132</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/68c7de4372"><code>68c7de4372</code></a>] - <strong>tools</strong>: remove simplejson dependency (Sakthipriyan Vairamani) <a href="https://github.com/nodejs/node/pull/6101">#6101</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4fb4ba98a8"><code>4fb4ba98a8</code></a>] - <strong>tools</strong>: remove disabling of already-disabled rule (Rich Trott) <a href="https://github.com/nodejs/node/pull/6013">#6013</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4e6ea7f01a"><code>4e6ea7f01a</code></a>] - <strong>tools</strong>: remove obsolete npm test-legacy command (Kat Marchán)</li>
<li>[<a href="https://github.com/nodejs/node/commit/4c73ab4302"><code>4c73ab4302</code></a>] - <strong>tools,doc</strong>: fix json for grouped optional params (firedfox) <a href="https://github.com/nodejs/node/pull/5977">#5977</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c893cd33d1"><code>c893cd33d1</code></a>] - <strong>tools,doc</strong>: parse types in braces everywhere (Alexander Makarenko) <a href="https://github.com/nodejs/node/pull/5329">#5329</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/48684af55f"><code>48684af55f</code></a>] - <strong>zlib</strong>: fix use after null when calling .close (James Lal) <a href="https://github.com/nodejs/node/pull/5982">#5982</a></li>
</ul>
<p>Windows 32-bit Installer: <a href="https://nodejs.org/dist/v4.4.5/node-v4.4.5-x86.msi">https://nodejs.org/dist/v4.4.5/node-v4.4.5-x86.msi</a><br>
Windows 64-bit Installer: <a href="https://nodejs.org/dist/v4.4.5/node-v4.4.5-x64.msi">https://nodejs.org/dist/v4.4.5/node-v4.4.5-x64.msi</a><br>
Windows 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.5/win-x86/node.exe">https://nodejs.org/dist/v4.4.5/win-x86/node.exe</a><br>
Windows 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.5/win-x64/node.exe">https://nodejs.org/dist/v4.4.5/win-x64/node.exe</a><br>
Mac OS X 64-bit Installer: <a href="https://nodejs.org/dist/v4.4.5/node-v4.4.5.pkg">https://nodejs.org/dist/v4.4.5/node-v4.4.5.pkg</a><br>
Mac OS X 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.5/node-v4.4.5-darwin-x64.tar.gz">https://nodejs.org/dist/v4.4.5/node-v4.4.5-darwin-x64.tar.gz</a><br>
Linux 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.5/node-v4.4.5-linux-x86.tar.xz">https://nodejs.org/dist/v4.4.5/node-v4.4.5-linux-x86.tar.xz</a><br>
Linux 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.5/node-v4.4.5-linux-x64.tar.xz">https://nodejs.org/dist/v4.4.5/node-v4.4.5-linux-x64.tar.xz</a><br>
Linux PPC LE 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.5/node-v4.4.5-linux-ppc64le.tar.xz">https://nodejs.org/dist/v4.4.5/node-v4.4.5-linux-ppc64le.tar.xz</a><br>
SunOS 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.5/node-v4.4.5-sunos-x86.tar.xz">https://nodejs.org/dist/v4.4.5/node-v4.4.5-sunos-x86.tar.xz</a><br>
SunOS 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.5/node-v4.4.5-sunos-x64.tar.xz">https://nodejs.org/dist/v4.4.5/node-v4.4.5-sunos-x64.tar.xz</a><br>
ARMv6 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.5/node-v4.4.5-linux-armv6l.tar.xz">https://nodejs.org/dist/v4.4.5/node-v4.4.5-linux-armv6l.tar.xz</a><br>
ARMv7 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.5/node-v4.4.5-linux-armv7l.tar.xz">https://nodejs.org/dist/v4.4.5/node-v4.4.5-linux-armv7l.tar.xz</a><br>
ARMv8 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.5/node-v4.4.5-linux-arm64.tar.xz">https://nodejs.org/dist/v4.4.5/node-v4.4.5-linux-arm64.tar.xz</a><br>
Source Code: <a href="https://nodejs.org/dist/v4.4.5/node-v4.4.5.tar.gz">https://nodejs.org/dist/v4.4.5/node-v4.4.5.tar.gz</a><br>
Other release files: <a href="https://nodejs.org/dist/v4.4.5/">https://nodejs.org/dist/v4.4.5/</a><br>
Documentation: <a href="https://nodejs.org/docs/v4.4.5/api/">https://nodejs.org/docs/v4.4.5/api/</a></p>
<p>Shasums (GPG signing hash: SHA512, file hash: SHA256):</p>
<pre><code>-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

1e729f9836e7b543724ee0b2ac902b4dff4a6f7d91031d20314825b61e86127f  node-v4.4.5-darwin-x64.tar.gz
ab00f874cf75d7504cc88bd99cf5f661aa0aa0d33eeecbfd5f8ef69ebc3a3e7f  node-v4.4.5-darwin-x64.tar.xz
afd90e4b0ae408301facce1d4837c5f718a686d144bf624a53c55988a473601c  node-v4.4.5-headers.tar.gz
d108e08fd83e5cf4d3a44cc799677ff6276450b5f601181733160358f230a060  node-v4.4.5-headers.tar.xz
46c89b2cdb3d7f3e87ef1ed8e4d9ee07dcc603e42f3f86f831a6fd7c34be9404  node-v4.4.5-linux-arm64.tar.gz
83c6a16989489908ea6be93f21a37316b4513d581875c3653ebeadd1c67d2e70  node-v4.4.5-linux-arm64.tar.xz
8f6a09d7326c4a2570275519ae51bc2a9ba6b2809b5cc02658922368f0dc49b0  node-v4.4.5-linux-armv6l.tar.gz
ae6a05b4dae19d31d2dd7de07c60ab4672d7aafacd0796974269432e451dd59b  node-v4.4.5-linux-armv6l.tar.xz
2ce99cbfaef7a8a0e8119a3e1303015f5bed6e745c90a95b3dcd6658ad44035b  node-v4.4.5-linux-armv7l.tar.gz
07f6610d91e4f03a28a97f1fd54a0b0547545fd5501657e30272a1a97604b709  node-v4.4.5-linux-armv7l.tar.xz
a2f17bee90c650b30c90c3cd96118e7825eb1b1011c4c7584e60d1b36d9b6983  node-v4.4.5-linux-ppc64le.tar.gz
d6d6331c1255307dd6cc9cfdba018afa6b35528cd8a293de2d89887b4d378119  node-v4.4.5-linux-ppc64le.tar.xz
577688263d15b2d7f8004f99151c5d47e27b319510d501792cfd74f7c834caa4  node-v4.4.5-linux-ppc64.tar.gz
0983e072d8101e7f274dc1403570636a5e12c0f56cfe3d891e379952dde0e619  node-v4.4.5-linux-ppc64.tar.xz
15d57c4a3696df8d5ef1bba452d38e5d27fc3c963760eeb218533c48381e89d5  node-v4.4.5-linux-x64.tar.gz
bd6505d8a350cd83907374ea98730b0ba99b97ec45cee418d453a0154384805a  node-v4.4.5-linux-x64.tar.xz
447b17542981c20f6792a20c31eb946c786e2cbd3bd1459f85c2cd0eb400e009  node-v4.4.5-linux-x86.tar.gz
354afb7fac8cb8dc3b926a4adb0901dd6ac42cb605f988f05f60f0bb8553a2c4  node-v4.4.5-linux-x86.tar.xz
fc5688c7f649ea06ce21246c7aa795aa9100c9e90e4c3fe182bb8cc67435375a  node-v4.4.5.pkg
75ebf346d29d441fbb32b177568f5727c357300406ea90b29c49a9e3bd89c506  node-v4.4.5-sunos-x64.tar.gz
ebb5bc1fa1d165e5881dac470e260f1efb4303e122854c60633c9e097f2a977f  node-v4.4.5-sunos-x64.tar.xz
181c092d49e2efc3ecd82806c9aa088ed1eda908671a5913cfa4704855ae288b  node-v4.4.5-sunos-x86.tar.gz
f2ea7593bd245628a17477c61b30b6c145b2686d97f38052ac2d3cc18a87c0e5  node-v4.4.5-sunos-x86.tar.xz
ea9c96ae4768feee4f18a26b819b9b4f6e49105ea0ee8c5c9d188dc8d49d4b77  node-v4.4.5.tar.gz
eaec2cd3c26a1cc101b829d32fef392268285187d1d9eda3718db288e7be28c6  node-v4.4.5.tar.xz
7b2409605c871a40d60c187bd24f6f6ddf10590df060b7d905ef46b3b3aa7f81  node-v4.4.5-x64.msi
fa11aadbf769d2a307ba49fa8a7f6a52233e63cb44541207f31ceb30ecdd3bfa  node-v4.4.5-x86.msi
0f9a6c4e340c45e0b32524b16f925099a79337281dd7fd982706e715634293da  win-x64/node.exe
ec30b394f071612fa06781a0ffa757b6296287bfb4234054438c671af8fa99bf  win-x64/node.lib
d423a134f376180939d55374aece4af1a66eb420e19f9fba2d882b000eeb01d8  win-x86/node.exe
851793e06c47e87393fad249253d720f67111e8c34d9bf73e36fdbedecda9dc1  win-x86/node.lib
-----BEGIN PGP SIGNATURE-----

iQEcBAEBAgAGBQJXRKDLAAoJEJM7AfQLXKlGBK8H/2Ohq5o2B6TBV4Z/tAn8N8Hs
fbN/nGqLnKnnRPt5iXTeLQmcWx0bKNqwWq8PLo3EfaNiIC45GsS7/Jukdl6BhCvI
BJ1DxYNnVrxyRm+IkddDwJAHMp25B8d8kSOgbO6iuYFc240ek+dWFhw60Kk68bs+
elmOGCEFqempCCIg6rzliUSOBUOTu1c7axSy3Z6xzx0Ic9BRmsIwJzmL2RYZBEzn
H1jbf4MoHpZvF+gdNStlsu9KE+6u4Bhy9DzJVkgcxoXU+Wikhe8x5n3I2blULSsl
efqyCqM1GbKBZ2/wSj7KWEK1JhAJvPQnLuyERvUVYzc6nE6QGBpImen39tLjJxE=
=DuAN
-----END PGP SIGNATURE-----
</code></pre>]]></description><link>https://nodejs.org/en/blog/release/v4.4.5</link><guid isPermaLink="true">https://nodejs.org/en/blog/release/v4.4.5</guid><dc:creator><![CDATA[Myles Borins]]></dc:creator><pubDate>Tue, 24 May 2016 18:44:10 GMT</pubDate></item><item><title><![CDATA[Node v6.2.0 (Current)]]></title><description><![CDATA[<h3 id="header-notable-changes">Notable Changes<a name="notable-changes" class="anchor" href="#notable-changes" aria-labelledby="header-notable-changes"></a></h3><ul>
<li><strong>buffer</strong>: fix lastIndexOf and indexOf in various edge cases (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6511">#6511</a></li>
<li><strong>child_process</strong>: use /system/bin/sh on android (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6745">#6745</a></li>
<li><strong>deps</strong>:<ul>
<li>upgrade npm to 3.8.9 (Rebecca Turner) <a href="https://github.com/nodejs/node/pull/6664">#6664</a></li>
<li>upgrade to V8 5.0.71.47 (Ali Ijaz Sheikh) <a href="https://github.com/nodejs/node/pull/6572">#6572</a></li>
<li>upgrade libuv to 1.9.1 (Saúl Ibarra Corretgé) <a href="https://github.com/nodejs/node/pull/6796">#6796</a></li>
<li>Intl: ICU 57 bump (Steven R. Loomis) <a href="https://github.com/nodejs/node/pull/6088">#6088</a></li>
</ul>
</li>
<li><strong>repl</strong>:<ul>
<li>copying tabs shouldn&#39;t trigger completion (Eugene Obrezkov) <a href="https://github.com/nodejs/node/pull/5958">#5958</a></li>
<li>exports <code>Recoverable</code> (Blake Embrey) <a href="https://github.com/nodejs/node/pull/3488">#3488</a></li>
</ul>
</li>
<li><strong>src</strong>: add O_NOATIME constant (Rich Trott) <a href="https://github.com/nodejs/node/pull/6492">#6492</a></li>
<li><strong>src,module</strong>: add --preserve-symlinks command line flag (James M Snell) <a href="https://github.com/nodejs/node/pull/6537">#6537</a></li>
<li><strong>util</strong>: adhere to <code>noDeprecation</code> set at runtime (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6683">#6683</a></li>
</ul>
<p>As of this release the 6.X line now includes 64-bit binaries for Linux on Power Systems
running in big endian mode in addition to the existing 64-bit binaries for running in little endian mode.</p>
<h3 id="header-commits">Commits<a name="commits" class="anchor" href="#commits" aria-labelledby="header-commits"></a></h3><ul>
<li>[<a href="https://github.com/nodejs/node/commit/955c90d725"><code>955c90d725</code></a>] - <strong>benchmark,test,lib</strong>: remove extra spaces (Rich Trott) <a href="https://github.com/nodejs/node/pull/6645">#6645</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/9cd14ced09"><code>9cd14ced09</code></a>] - <strong>buffer</strong>: fix UCS2 indexOf for odd buffer length (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6511">#6511</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a550ddbf3c"><code>a550ddbf3c</code></a>] - <strong>buffer</strong>: fix needle length misestimation for UCS2 (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6511">#6511</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6fc20c5a97"><code>6fc20c5a97</code></a>] - <strong>buffer</strong>: fix lastIndexOf crash for overlong needle (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6511">#6511</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/44015754a3"><code>44015754a3</code></a>] - <strong>buffer</strong>: fix lastIndexOf index underflow issue (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6511">#6511</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6032dc25cc"><code>6032dc25cc</code></a>] - <strong>build</strong>: add Make <code>doc-only</code> target (Jesse McCarthy) <a href="https://github.com/nodejs/node/pull/3888">#3888</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3af9382a5d"><code>3af9382a5d</code></a>] - <strong>build</strong>: don&#39;t compile with -B, redux (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6650">#6650</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5149d66702"><code>5149d66702</code></a>] - <strong>build</strong>: fix DESTCPU detection for binary target (Richard Lau) <a href="https://github.com/nodejs/node/pull/6310">#6310</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6eed6a3ac0"><code>6eed6a3ac0</code></a>] - <strong>build,test</strong>: fix build-addons dependency chain (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6652">#6652</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e0240ab592"><code>e0240ab592</code></a>] - <strong>child_process</strong>: use /system/bin/sh on android (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6745">#6745</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e8c9f01cdd"><code>e8c9f01cdd</code></a>] - <strong>crypto</strong>: disable ssl compression at build time (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6582">#6582</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/62690aa0be"><code>62690aa0be</code></a>] - <strong>deps</strong>: update comment about PURIFY define (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6582">#6582</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/bddf413412"><code>bddf413412</code></a>] - <strong>deps</strong>: upgrade npm to 3.8.9 (Rebecca Turner) <a href="https://github.com/nodejs/node/pull/6664">#6664</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a6ca5e559a"><code>a6ca5e559a</code></a>] - <strong>deps</strong>: upgrade to V8 5.0.71.47 (Ali Ijaz Sheikh) <a href="https://github.com/nodejs/node/pull/6572">#6572</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/16159c23ed"><code>16159c23ed</code></a>] - <strong>deps</strong>: limit regress/regress-crbug-514081 v8 test (Michael Dawson) <a href="https://github.com/nodejs/node/pull/6678">#6678</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2d84ac735a"><code>2d84ac735a</code></a>] - <strong>deps</strong>: upgrade libuv to 1.9.1 (Saúl Ibarra Corretgé) <a href="https://github.com/nodejs/node/pull/6796">#6796</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7a6d2ad181"><code>7a6d2ad181</code></a>] - <strong>deps</strong>: Intl: Check in &quot;small-icu&quot; 57.1 (Steven R. Loomis) <a href="https://github.com/nodejs/node/pull/6088">#6088</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ee1e5a267d"><code>ee1e5a267d</code></a>] - <strong>deps</strong>: Intl: ICU 57 bump (Steven R. Loomis) <a href="https://github.com/nodejs/node/pull/6088">#6088</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a4ed7dfb3d"><code>a4ed7dfb3d</code></a>] - <strong>doc</strong>: Add CTC meeting minutes for 2016-05-04 (Michael Dawson) <a href="https://github.com/nodejs/node/pull/6579">#6579</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5c7da210df"><code>5c7da210df</code></a>] - <strong>doc</strong>: refactor the changelog by version (James M Snell) <a href="https://github.com/nodejs/node/pull/6503">#6503</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4f2a55f92f"><code>4f2a55f92f</code></a>] - <strong>doc</strong>: fix issues related to page scrolling (Roman Reiss)</li>
<li>[<a href="https://github.com/nodejs/node/commit/b4fb95eade"><code>b4fb95eade</code></a>] - <strong>doc</strong>: add <code>added:</code> information for assert (Rich Trott) <a href="https://github.com/nodejs/node/pull/6688">#6688</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/64fcba2a2e"><code>64fcba2a2e</code></a>] - <strong>doc</strong>: appendFileSync accepts fd as well (Faiz Halde) <a href="https://github.com/nodejs/node/pull/6707">#6707</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/520369d8e0"><code>520369d8e0</code></a>] - <strong>doc</strong>: fix exec example in child_process (Evan Lucas) <a href="https://github.com/nodejs/node/pull/6660">#6660</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/51d1960955"><code>51d1960955</code></a>] - <strong>doc</strong>: undocument fs.open&#39;s &#39;rs&#39; mode (Saúl Ibarra Corretgé) <a href="https://github.com/nodejs/node/pull/6732">#6732</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/f1c773d18b"><code>f1c773d18b</code></a>] - <strong>doc</strong>: add <code>added:</code> information for v8 (Rich Trott) <a href="https://github.com/nodejs/node/pull/6684">#6684</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/29b28a233c"><code>29b28a233c</code></a>] - <strong>doc</strong>: server.listen truncates socket path on unix (Jean Regisser) <a href="https://github.com/nodejs/node/pull/6659">#6659</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c1d5f2e96e"><code>c1d5f2e96e</code></a>] - <strong>doc</strong>: update releases.md with new changelog structure (James M Snell) <a href="https://github.com/nodejs/node/pull/6503">#6503</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d962fbafb2"><code>d962fbafb2</code></a>] - <strong>doc</strong>: &quot;a&quot; -&gt; &quot;an&quot; in api/documentation.md (Anchika Agarwal) <a href="https://github.com/nodejs/node/pull/6689">#6689</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/26e22e200a"><code>26e22e200a</code></a>] - <strong>doc</strong>: move the readme newcomers section (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6681">#6681</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8f526494b5"><code>8f526494b5</code></a>] - <strong>doc</strong>: fix deprecation warnings in addon examples (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6652">#6652</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d34343f0de"><code>d34343f0de</code></a>] - <strong>doc</strong>: mention existence/purpose of module wrapper (Matt Harrison) <a href="https://github.com/nodejs/node/pull/6433">#6433</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5c154a87e0"><code>5c154a87e0</code></a>] - <strong>doc</strong>: add steps for running addons + npm tests (Myles Borins) <a href="https://github.com/nodejs/node/pull/6231">#6231</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6ea43d12f4"><code>6ea43d12f4</code></a>] - <strong>doc</strong>: improve onboarding-extras.md formatting (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6548">#6548</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/38f5603e97"><code>38f5603e97</code></a>] - <strong>doc</strong>: fix linewrap in node.1 (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6532">#6532</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5b47accfa6"><code>5b47accfa6</code></a>] - <strong>doc</strong>: v8 options can use either <code>_</code> or <code>-</code> (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6532">#6532</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/fa94a91bbd"><code>fa94a91bbd</code></a>] - <strong>doc</strong>: v8 functions as methods on v8 (Bryan English) <a href="https://github.com/nodejs/node/pull/6615">#6615</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d49b49e8b1"><code>d49b49e8b1</code></a>] - <strong>doc</strong>: discourage use of util.inherits (Robert Jefe Lindstaedt) <a href="https://github.com/nodejs/node/pull/6514">#6514</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/925fc36dd9"><code>925fc36dd9</code></a>] - <strong>doc</strong>: add <code>added:</code> information for os (Bryan English) <a href="https://github.com/nodejs/node/pull/6609">#6609</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/58cd11c844"><code>58cd11c844</code></a>] - <strong>doc</strong>: add <code>added:</code> information for process (Bryan English) <a href="https://github.com/nodejs/node/pull/6589">#6589</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d5f7f24aec"><code>d5f7f24aec</code></a>] - <strong>doc</strong>: add <code>added:</code> information for url (Bryan English) <a href="https://github.com/nodejs/node/pull/6593">#6593</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/715b48c1d3"><code>715b48c1d3</code></a>] - <strong>doc</strong>: add <code>added:</code> information for querystring (Bryan English) <a href="https://github.com/nodejs/node/pull/6593">#6593</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/04697a5023"><code>04697a5023</code></a>] - <strong>doc</strong>: correct anchors for buffer.md (Jackson Tian) <a href="https://github.com/nodejs/node/pull/6542">#6542</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2d677411a4"><code>2d677411a4</code></a>] - <strong>doc</strong>: add <code>added:</code> information for buffer (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6495">#6495</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/49af20c2e6"><code>49af20c2e6</code></a>] - <strong>doc</strong>: update fs callback example error stack (DavidCai) <a href="https://github.com/nodejs/node/pull/6617">#6617</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/9196d87704"><code>9196d87704</code></a>] - <strong>doc</strong>: add <code>added:</code> info for <code>string_decoder</code> (Rich Trott) <a href="https://github.com/nodejs/node/pull/6741">#6741</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/688f563ca8"><code>688f563ca8</code></a>] - <strong>doc</strong>: update vm.runInDebugContext() example (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6757">#6757</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2273971a69"><code>2273971a69</code></a>] - <strong>doc</strong>: readline.emitKeypressEvents and raw mode (Arve Seljebu) <a href="https://github.com/nodejs/node/pull/6628">#6628</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1c7b6e276f"><code>1c7b6e276f</code></a>] - <strong>doc</strong>: improve zlib docs (James M Snell) <a href="https://github.com/nodejs/node/pull/6746">#6746</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/897934a719"><code>897934a719</code></a>] - <strong>doc</strong>: copyedit maxBuffer note for child_process (Rich Trott) <a href="https://github.com/nodejs/node/pull/6760">#6760</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c1bf3fc0b1"><code>c1bf3fc0b1</code></a>] - <strong>doc</strong>: fix links in socket.connecting (Kirill Fomichev) <a href="https://github.com/nodejs/node/pull/6657">#6657</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ad895f490b"><code>ad895f490b</code></a>] - <strong>doc</strong>: trim GitHub template comments (Rich Trott) <a href="https://github.com/nodejs/node/pull/6755">#6755</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/af096f1172"><code>af096f1172</code></a>] - <strong>doc</strong>: add <code>added</code> info for <code>dgram.setBroadcast()</code> (Rich Trott) <a href="https://github.com/nodejs/node/pull/6750">#6750</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e8c0dba4bd"><code>e8c0dba4bd</code></a>] - <strong>doc,events</strong>: fix a link typo (yorkie) <a href="https://github.com/nodejs/node/pull/6640">#6640</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/f31a5ec34a"><code>f31a5ec34a</code></a>] - <strong>handle_wrap</strong>: IsRefed() -&gt; HasRef() (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6546">#6546</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/cc2af793d2"><code>cc2af793d2</code></a>] - <strong><em>Revert</em></strong> &quot;<strong>handle_wrap</strong>: IsRefed -&gt; Unrefed, no isAlive check&quot; (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6546">#6546</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2000072903"><code>2000072903</code></a>] - <strong>handle_wrap</strong>: IsRefed -&gt; Unrefed, no isAlive check (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6204">#6204</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d3132048cb"><code>d3132048cb</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>handle_wrap</strong>: expose an <code>isRefed()</code> check to JS (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/5834">#5834</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/59666502c5"><code>59666502c5</code></a>] - <strong>intl</strong>: Don&#39;t crash if v8BreakIterator not available (Steven R. Loomis) <a href="https://github.com/nodejs/node/pull/4253">#4253</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/74582aa590"><code>74582aa590</code></a>] - <strong>lib</strong>: replace legacy uses of <strong>defineGetter</strong> (James M Snell) <a href="https://github.com/nodejs/node/pull/6768">#6768</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/559c2583e0"><code>559c2583e0</code></a>] - <strong>lib,test</strong>: update in preparation for linter update (Rich Trott) <a href="https://github.com/nodejs/node/pull/6498">#6498</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/226b9668db"><code>226b9668db</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>repl</strong>: copying tabs shouldn&#39;t trigger completion (Eugene Obrezkov) <a href="https://github.com/nodejs/node/pull/5958">#5958</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ce2d5be4a1"><code>ce2d5be4a1</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>repl</strong>: exports <code>Recoverable</code> (Blake Embrey) <a href="https://github.com/nodejs/node/pull/3488">#3488</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/635357958d"><code>635357958d</code></a>] - <strong>repl</strong>: create history file with mode 0600 (Carl Lei) <a href="https://github.com/nodejs/node/pull/3394">#3394</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e3920d12ef"><code>e3920d12ef</code></a>] - <strong>src</strong>: fix check-imports.py linter errors (Sakthipriyan Vairamani) <a href="https://github.com/nodejs/node/pull/6105">#6105</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/bbf3b3ebbb"><code>bbf3b3ebbb</code></a>] - <strong>src</strong>: simplify handlewrap state tracking logic (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6395">#6395</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/965274d384"><code>965274d384</code></a>] - <strong>src</strong>: use libuv&#39;s refcounting directly (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6395">#6395</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/316871f268"><code>316871f268</code></a>] - <strong>src</strong>: fix -Wunused-variable compiler warning (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6129">#6129</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1def098b9f"><code>1def098b9f</code></a>] - <strong>src</strong>: fix sporadic deadlock in SIGUSR1 handler (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/5904">#5904</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/477e61db9f"><code>477e61db9f</code></a>] - <strong>src</strong>: don&#39;t use locale-sensitive strcasecmp() (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6582">#6582</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1e99643fc9"><code>1e99643fc9</code></a>] - <strong>src</strong>: remove unused #include statement (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6582">#6582</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/62593bd44c"><code>62593bd44c</code></a>] - <strong>src</strong>: remove pre-openssl 1.0 legacy code (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6582">#6582</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/27c17ce9d1"><code>27c17ce9d1</code></a>] - <strong>src</strong>: fix FindFirstCharacter argument alignment (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6511">#6511</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/37736f4dad"><code>37736f4dad</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>src</strong>: add O_NOATIME constant (Rich Trott) <a href="https://github.com/nodejs/node/pull/6492">#6492</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/bd4454fa0f"><code>bd4454fa0f</code></a>] - <strong>src,lib</strong>: minor --debug-brk cleanup (Ali Ijaz Sheikh) <a href="https://github.com/nodejs/node/pull/6599">#6599</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/95b7560d8e"><code>95b7560d8e</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>src,module</strong>: add --preserve-symlinks command line flag (James M Snell) <a href="https://github.com/nodejs/node/pull/6537">#6537</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8a7e68ff83"><code>8a7e68ff83</code></a>] - <strong>test</strong>: check that 2nd handle.close() call is a nop (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6395">#6395</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ccbc78cfc6"><code>ccbc78cfc6</code></a>] - <strong>test</strong>: remove common.getServiceName() (Rich Trott) <a href="https://github.com/nodejs/node/pull/6709">#6709</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8c634d78f8"><code>8c634d78f8</code></a>] - <strong>test</strong>: favor strictEqual() in addon test (Rich Trott) <a href="https://github.com/nodejs/node/pull/6704">#6704</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1389a4fc5e"><code>1389a4fc5e</code></a>] - <strong>test</strong>: fix flaky test-preload (Rich Trott) <a href="https://github.com/nodejs/node/pull/6728">#6728</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/adb2d610e6"><code>adb2d610e6</code></a>] - <strong>test</strong>: include component in tap output (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6653">#6653</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/abb063a6a3"><code>abb063a6a3</code></a>] - <strong>test</strong>: fix test-debugger-repl-break-in-module (Rich Trott) <a href="https://github.com/nodejs/node/pull/6686">#6686</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5701599767"><code>5701599767</code></a>] - <strong>test</strong>: fix test-debugger-repl-term (Rich Trott) <a href="https://github.com/nodejs/node/pull/6682">#6682</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/71c91747ef"><code>71c91747ef</code></a>] - <strong>test</strong>: add tests for stream3 buffering using cork (Alex J Burke) <a href="https://github.com/nodejs/node/pull/6493">#6493</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b1f58edd54"><code>b1f58edd54</code></a>] - <strong>test</strong>: abstract skip functionality to common (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6697">#6697</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7d3f5751b3"><code>7d3f5751b3</code></a>] - <strong>test</strong>: make sure O_NOATIME is present only in Linux (Sakthipriyan Vairamani) <a href="https://github.com/nodejs/node/pull/6614">#6614</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/75adc6a026"><code>75adc6a026</code></a>] - <strong>test</strong>: move test-debugger-debug-brk to sequential (Rich Trott) <a href="https://github.com/nodejs/node/pull/6731">#6731</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0bc1784529"><code>0bc1784529</code></a>] - <strong>test</strong>: refactor doctool tests (Rich Trott) <a href="https://github.com/nodejs/node/pull/6719">#6719</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/89b25fac4c"><code>89b25fac4c</code></a>] - <strong>test</strong>: fix test-process-exec-argv flakiness (Santiago Gimeno) <a href="https://github.com/nodejs/node/pull/6575">#6575</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3f9d72408f"><code>3f9d72408f</code></a>] - <strong>test</strong>: pass python path to node-gyp (hefangshi) <a href="https://github.com/nodejs/node/pull/6646">#6646</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0c62bd13fb"><code>0c62bd13fb</code></a>] - <strong>test</strong>: ensure test-npm-install uses correct node (Myles Borins) <a href="https://github.com/nodejs/node/pull/6658">#6658</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1b71231dd2"><code>1b71231dd2</code></a>] - <strong>test</strong>: fix test-vm-cached-data to work with old v8 (Myles Borins) <a href="https://github.com/nodejs/node/pull/6317">#6317</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0eb25cb4b5"><code>0eb25cb4b5</code></a>] - <strong>test</strong>: test preloaded modules using stdin or repl (Bradley Meck) <a href="https://github.com/nodejs/node/pull/2253">#2253</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/577e132f00"><code>577e132f00</code></a>] - <strong>test</strong>: fix test-debugger-pid (Santiago Gimeno) <a href="https://github.com/nodejs/node/pull/6584">#6584</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d74062454b"><code>d74062454b</code></a>] - <strong>test</strong>: make stdout buffer test more robust (Rich Trott) <a href="https://github.com/nodejs/node/pull/6633">#6633</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/f264749c5c"><code>f264749c5c</code></a>] - <strong>test</strong>: build addons with V8_DEPRECATION_WARNINGS=1 (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6652">#6652</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/01f010f669"><code>01f010f669</code></a>] - <strong>test</strong>: allow out-of-order replies in dgram tests (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6607">#6607</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/be241c3262"><code>be241c3262</code></a>] - <strong>test</strong>: run known_issues tests in CI (Rich Trott) <a href="https://github.com/nodejs/node/pull/6559">#6559</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8141c2fce2"><code>8141c2fce2</code></a>] - <strong>test</strong>: add tests for console.[info|error|warn] (Bryan English) <a href="https://github.com/nodejs/node/pull/6538">#6538</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/83dab801e2"><code>83dab801e2</code></a>] - <strong>test</strong>: fix unreliable known_issues test (Rich Trott) <a href="https://github.com/nodejs/node/pull/6555">#6555</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8c434e6d84"><code>8c434e6d84</code></a>] - <strong>test</strong>: unmark test-http-regr-gh-2928 as flaky (Rich Trott) <a href="https://github.com/nodejs/node/pull/6540">#6540</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/916e694b2b"><code>916e694b2b</code></a>] - <strong>test</strong>: avoid test-cluster-master-* flakiness (Stefan Budeanu) <a href="https://github.com/nodejs/node/pull/6531">#6531</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/be5386e0cf"><code>be5386e0cf</code></a>] - <strong>test,dgram</strong>: add tests for setBroadcast() (Rich Trott) <a href="https://github.com/nodejs/node/pull/6750">#6750</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1370fdcad5"><code>1370fdcad5</code></a>] - <strong>test,tools</strong>: test yaml parsing of doctool (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6495">#6495</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/347abf341d"><code>347abf341d</code></a>] - <strong>tools</strong>: enforce linting for unix-style line endings (Rich Trott) <a href="https://github.com/nodejs/node/pull/6685">#6685</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a63c556c11"><code>a63c556c11</code></a>] - <strong>tools</strong>: remove the minifying logic (Sakthipriyan Vairamani) <a href="https://github.com/nodejs/node/pull/6636">#6636</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/efcbafa3f7"><code>efcbafa3f7</code></a>] - <strong>tools</strong>: fix regression in doctool (Myles Borins) <a href="https://github.com/nodejs/node/pull/6680">#6680</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/edb29b8096"><code>edb29b8096</code></a>] - <strong>tools</strong>: lint for object literal spacing (Rich Trott) <a href="https://github.com/nodejs/node/pull/6592">#6592</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6806ebb608"><code>6806ebb608</code></a>] - <strong>tools</strong>: lint for use of space in template strings (Rich Trott) <a href="https://github.com/nodejs/node/pull/6591">#6591</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/341eaf202e"><code>341eaf202e</code></a>] - <strong>tools</strong>: update marked dependency (Daniel Wang) <a href="https://github.com/nodejs/node/pull/6396">#6396</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/94f82553aa"><code>94f82553aa</code></a>] - <strong>tools</strong>: allow multiple added: version entries (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6495">#6495</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1de25f208c"><code>1de25f208c</code></a>] - <strong>tools</strong>: do not build addons during compilation (Myles Borins) <a href="https://github.com/nodejs/node/pull/6723">#6723</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/26805c97d0"><code>26805c97d0</code></a>] - <strong>tools</strong>: fix tools/doc/addon-verify.js regression (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6652">#6652</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/cea17775e0"><code>cea17775e0</code></a>] - <strong>tools</strong>: parse documentation metadata (Tristian Flanagan) <a href="https://github.com/nodejs/node/pull/6495">#6495</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a568ad4205"><code>a568ad4205</code></a>] - <strong>tools</strong>: add mock-y js-yaml dependency to doctool (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6495">#6495</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/dce6413576"><code>dce6413576</code></a>] - <strong>tools</strong>: Check in tools for shrinking ICU size, change default to small-icu (Steven R. Loomis) <a href="https://github.com/nodejs/node/pull/6088">#6088</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d629f265fe"><code>d629f265fe</code></a>] - <strong>tools</strong>: update ESLint to 2.9.0 (Rich Trott) <a href="https://github.com/nodejs/node/pull/6498">#6498</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6aa92d5a98"><code>6aa92d5a98</code></a>] - <strong>tools</strong>: disallow multiple spaces except indentation (Rich Trott) <a href="https://github.com/nodejs/node/pull/6645">#6645</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ceeae4b180"><code>ceeae4b180</code></a>] - <strong>tools,test</strong>: make argument linting more stringent (Rich Trott) <a href="https://github.com/nodejs/node/pull/6720">#6720</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6d1527bb37"><code>6d1527bb37</code></a>] - <strong>util</strong>: fix invalid date output with util.inspect (Rumkin) <a href="https://github.com/nodejs/node/pull/6504">#6504</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1d6c17efd7"><code>1d6c17efd7</code></a>] - <strong>util</strong>: adhere to <code>noDeprecation</code> set at runtime (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6683">#6683</a></li>
</ul>
<p>Windows 32-bit Installer: <a href="https://nodejs.org/dist/v6.2.0/node-v6.2.0-x86.msi">https://nodejs.org/dist/v6.2.0/node-v6.2.0-x86.msi</a><br>
Windows 64-bit Installer: <a href="https://nodejs.org/dist/v6.2.0/node-v6.2.0-x64.msi">https://nodejs.org/dist/v6.2.0/node-v6.2.0-x64.msi</a><br>
Windows 32-bit Binary: <a href="https://nodejs.org/dist/v6.2.0/win-x86/node.exe">https://nodejs.org/dist/v6.2.0/win-x86/node.exe</a><br>
Windows 64-bit Binary: <a href="https://nodejs.org/dist/v6.2.0/win-x64/node.exe">https://nodejs.org/dist/v6.2.0/win-x64/node.exe</a><br>
Mac OS X 64-bit Installer: <a href="https://nodejs.org/dist/v6.2.0/node-v6.2.0.pkg">https://nodejs.org/dist/v6.2.0/node-v6.2.0.pkg</a><br>
Mac OS X 64-bit Binary: <a href="https://nodejs.org/dist/v6.2.0/node-v6.2.0-darwin-x64.tar.gz">https://nodejs.org/dist/v6.2.0/node-v6.2.0-darwin-x64.tar.gz</a><br>
Linux 32-bit Binary: <a href="https://nodejs.org/dist/v6.2.0/node-v6.2.0-linux-x86.tar.xz">https://nodejs.org/dist/v6.2.0/node-v6.2.0-linux-x86.tar.xz</a><br>
Linux 64-bit Binary: <a href="https://nodejs.org/dist/v6.2.0/node-v6.2.0-linux-x64.tar.xz">https://nodejs.org/dist/v6.2.0/node-v6.2.0-linux-x64.tar.xz</a><br>
Linux PPC LE 64-bit Binary: <a href="https://nodejs.org/dist/v6.2.0/node-v6.2.0-linux-ppc64le.tar.xz">https://nodejs.org/dist/v6.2.0/node-v6.2.0-linux-ppc64le.tar.xz</a><br>
SunOS 32-bit Binary: <a href="https://nodejs.org/dist/v6.2.0/node-v6.2.0-sunos-x86.tar.xz">https://nodejs.org/dist/v6.2.0/node-v6.2.0-sunos-x86.tar.xz</a><br>
SunOS 64-bit Binary: <a href="https://nodejs.org/dist/v6.2.0/node-v6.2.0-sunos-x64.tar.xz">https://nodejs.org/dist/v6.2.0/node-v6.2.0-sunos-x64.tar.xz</a><br>
ARMv6 32-bit Binary: <a href="https://nodejs.org/dist/v6.2.0/node-v6.2.0-linux-armv6l.tar.xz">https://nodejs.org/dist/v6.2.0/node-v6.2.0-linux-armv6l.tar.xz</a><br>
ARMv7 32-bit Binary: <a href="https://nodejs.org/dist/v6.2.0/node-v6.2.0-linux-armv7l.tar.xz">https://nodejs.org/dist/v6.2.0/node-v6.2.0-linux-armv7l.tar.xz</a><br>
ARMv8 64-bit Binary: <a href="https://nodejs.org/dist/v6.2.0/node-v6.2.0-linux-arm64.tar.xz">https://nodejs.org/dist/v6.2.0/node-v6.2.0-linux-arm64.tar.xz</a><br>
Source Code: <a href="https://nodejs.org/dist/v6.2.0/node-v6.2.0.tar.gz">https://nodejs.org/dist/v6.2.0/node-v6.2.0.tar.gz</a><br>
Other release files: <a href="https://nodejs.org/dist/v6.2.0/">https://nodejs.org/dist/v6.2.0/</a><br>
Documentation: <a href="https://nodejs.org/docs/v6.2.0/api/">https://nodejs.org/docs/v6.2.0/api/</a></p>
<p>Shasums (GPG signing hash: SHA512, file hash: SHA256):</p>
<pre><code>-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

1c8c16bb3df22c7c98cf0c118bd183838b848e36ef1448992cf511c044339823  node-v6.2.0-darwin-x64.tar.gz
e1c890b47f078a840896b05a3111080e6f410103cc6d338de2a32ebc5a58d545  node-v6.2.0-darwin-x64.tar.xz
1127a30aa0e728786e4c1b2a568dd74eab8957a271764cec06d3562febee6baa  node-v6.2.0-headers.tar.gz
7ac466b74c01f1d0e0cf46d62dba32392b6fa4157a8b957fbdec490701d06d35  node-v6.2.0-headers.tar.xz
bac296f56d071e147e33e7f027efc8b0422a786e3943b18c64c8c8fbf2abae96  node-v6.2.0-linux-arm64.tar.gz
d81cd7d9a04a68d5a6bd9b36c410e0ac3394d1cec03c647737a41d5772d4f542  node-v6.2.0-linux-arm64.tar.xz
c297855fd11dc9d58c523f3665b18e5ff932145aabb27c389da3b6b27553fe37  node-v6.2.0-linux-armv6l.tar.gz
3c0fda6205425a641cac8b71f522bdef28de0d17fa53d3b0987f66a58c416ee1  node-v6.2.0-linux-armv6l.tar.xz
4804a486b0b0db0f52fc273ccf688f83c06e3fc17641824877e2921518d0e50d  node-v6.2.0-linux-armv7l.tar.gz
7316c8026c5da22cbda06c6b8f556a326c7c2c81408b9a1f04a01859c6d95787  node-v6.2.0-linux-armv7l.tar.xz
fbbeaaa5431c6cc5007567c35f13b87c2917d704ae6fd8f6db7792f1ba5349b0  node-v6.2.0-linux-ppc64le.tar.gz
75d3ed1dda3e29e12a708a4c5084f7a4aaa5485f10a68b4e21c8fe7333720cc1  node-v6.2.0-linux-ppc64le.tar.xz
69f8f3ffec15f1cddca3f8fca53471123e22db40ae58bea9bd65503d900267d8  node-v6.2.0-linux-ppc64.tar.gz
7697c259171529ba7ea902437ef8186bde64fb9613ee77ade882549b3cc43ffd  node-v6.2.0-linux-ppc64.tar.xz
661dba369c277603fa6d0182c4ea7ff074ba6bacd19171826271f872afd6aaa7  node-v6.2.0-linux-x64.tar.gz
ab28c6af235045def1f65fca7f4848de3c2de4fb62ebce37052f1a10f0b40263  node-v6.2.0-linux-x64.tar.xz
47c3d613362afd9c64e6468fba0d3f6407ead7d3ea6447deb297c6551dd9d0d4  node-v6.2.0-linux-x86.tar.gz
6aaf649e9798fdc40c03aa27f63715cfe4c33916f8081607067bdfc16a2a2d9a  node-v6.2.0-linux-x86.tar.xz
4ce1462c3cf3c327891154ab076f2f5ef16e61b150001d90d8dcaf2ae4e49772  node-v6.2.0.pkg
f1e8447ff644598c2c24eb6effa12a9d32c6fdad7fa832065dd5f381339b723f  node-v6.2.0-sunos-x64.tar.gz
8dacb9a2fbc71c78a157c1c6cf1ccb126b7f919775834e7570821b19514603ae  node-v6.2.0-sunos-x64.tar.xz
bbfce19c47265676fb44a6a1fa10e2e9ec710c8a332a801aa7e3e58648e851a3  node-v6.2.0-sunos-x86.tar.gz
effdeef23786210846c4d19249bac2ddbabc9f8647deb6803345725acbadec73  node-v6.2.0-sunos-x86.tar.xz
fcfd81847d78abb690aafaf46223d3b59aedc54fb200a2ab2bfd9a39ad6e94b9  node-v6.2.0.tar.gz
8633fe606fd1f2235d26901c6bc4c11b5b88fd3c772af18a902e3efd1254e492  node-v6.2.0.tar.xz
bd1d766e15f75f67befa76738bc0212ee3016444eb0396b29c6fc319658e21a2  node-v6.2.0-x64.msi
e0e20da53fd7e8ccdd61acf93b4f268189b32c43c15516a272df57808d94b941  node-v6.2.0-x86.msi
6e8aff84a875d60785d23a3c8fbf6cff82835dde0886e5ed476150b82f1f61fd  win-x64/node.exe
df99926fcfb98fdf764ab3a4e46fd31ee23863b26bb9b24fcd3b6398aff21d13  win-x64/node.lib
8003b76b7e45cfd6d44308e17e7d055ed3dd9322a5c0a3bb8f66670a5e8ecb5f  win-x86/node.exe
9fd0bd7229d637d5e9d2c02bb0325a99fd38bbed6c2f7a37942d6a5951fac344  win-x86/node.lib
-----BEGIN PGP SIGNATURE-----
Comment: GPGTools - https://gpgtools.org

iQIcBAEBCgAGBQJXO4jZAAoJELY7U1pMIGypvGgP/RWxnq3GhqgMKXEMnkljpSen
KDNHGGaZJrA6LU6L3my1v0GsP+Pfj+okbzHcZ5jwg9p2tTjXRFBnC+UFz+00G86d
MFzX1Y9MZk4+9OkJWjO0c5carxtYD68nryohJsIMMh2ipos47SDqYwO7oLVDEZAd
orc5K1Vtpvkx66VEAVAgTo4eEmyDM3NLHve5oaOHnJ5kdasqqDj+LFXYUT5rKDoQ
yUMbIZbvj8zrqCd76XTJpw/e9RmQ3v9G2aBXQ+jhzxtADu0vevoyTldld/CiMTkX
4mDhGMP3AToiF/o5F91GmuzVQJnnOowS02/4k5UpUIyRAvD25podlIJHHs+M1lDs
NQC7W691mD6WRf6OZROkrWOvrYpoIYYn79GBxyTzLZz2bYCmGxjttB/ETnLpG7mf
CjMDjOq6B8LTC24JtvqYDt6HIlkOkzZ5vOxAqCqCQC3l6hQUEqVAp7Dack/FOHNv
pbUqSQwfSu9j+gcoMkUmNDdjSeWEyCHN09XH3dFOQ1Cd6olRh900nkhITmTKEsD7
U7QZDMp7s6QmtbzF62TskH8jj/QIhQx6qFuyyquHpWAwggrcWbauhMKQFAHc9vI5
iz2XUKB/yKlcFVomojq+sm4NoBvgy4IZAIHUjv+g4yYzPHmyZrP0I4bMUT9s/1b6
LunWBUGBWXCXRm4Q6Qar
=Q/h1
-----END PGP SIGNATURE-----
</code></pre>]]></description><link>https://nodejs.org/en/blog/release/v6.2.0</link><guid isPermaLink="true">https://nodejs.org/en/blog/release/v6.2.0</guid><dc:creator><![CDATA[Evan Lucas]]></dc:creator><pubDate>Tue, 17 May 2016 21:12:15 GMT</pubDate></item><item><title><![CDATA[Node v4.4.4 (LTS)]]></title><description><![CDATA[<h3 id="header-notable-changes">Notable changes<a name="notable-changes" class="anchor" href="#notable-changes" aria-labelledby="header-notable-changes"></a></h3><ul>
<li><strong>deps</strong>:<ul>
<li>update openssl to 1.0.2h. (Shigeki Ohtsu) <a href="https://github.com/nodejs/node/pull/6551">#6551</a><ul>
<li>Please see our <a href="https://nodejs.org/en/blog/vulnerability/openssl-may-2016/">blog post</a> for more info on the security contents of this release.</li>
</ul>
</li>
</ul>
</li>
</ul>
<h3 id="header-commits">Commits<a name="commits" class="anchor" href="#commits" aria-labelledby="header-commits"></a></h3><ul>
<li>[<a href="https://github.com/nodejs/node/commit/f46952e727"><code>f46952e727</code></a>] - <strong>buffer</strong>: safeguard against accidental kNoZeroFill (Сковорода Никита Андреевич) <a href="https://github.com/nodejs/node-private/pull/30">nodejs/node-private#30</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4f1c82f995"><code>4f1c82f995</code></a>] - <strong>streams</strong>: support unlimited synchronous cork/uncork cycles (Matteo Collina) <a href="https://github.com/nodejs/node/pull/6164">#6164</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1efd96c767"><code>1efd96c767</code></a>] - <strong>deps</strong>: update openssl asm and asm_obsolete files (Shigeki Ohtsu) <a href="https://github.com/nodejs/node/pull/6551">#6551</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/c450f4a293"><code>c450f4a293</code></a>] - <strong>deps</strong>: add -no_rand_screen to openssl s_client (Shigeki Ohtsu) <a href="https://github.com/nodejs/io.js/pull/1836">nodejs/io.js#1836</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/baedfbae6a"><code>baedfbae6a</code></a>] - <strong>openssl</strong>: fix keypress requirement in apps on win32 (Shigeki Ohtsu) <a href="https://github.com/iojs/io.js/pull/1389">iojs/io.js#1389</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ff3045e40b"><code>ff3045e40b</code></a>] - <strong>deps</strong>: fix asm build error of openssl in x86_win32 (Shigeki Ohtsu) <a href="https://github.com/iojs/io.js/pull/1389">iojs/io.js#1389</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/dc8dc97db3"><code>dc8dc97db3</code></a>] - <strong>deps</strong>: fix openssl assembly error on ia32 win32 (Fedor Indutny) <a href="https://github.com/iojs/io.js/pull/1389">iojs/io.js#1389</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2dfeb01213"><code>2dfeb01213</code></a>] - <strong>deps</strong>: copy all openssl header files to include dir (Shigeki Ohtsu) <a href="https://github.com/nodejs/node/pull/6551">#6551</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/72f9952516"><code>72f9952516</code></a>] - <strong>deps</strong>: upgrade openssl sources to 1.0.2h (Shigeki Ohtsu) <a href="https://github.com/nodejs/node/pull/6551">#6551</a></li>
</ul>
<p>Windows 32-bit Installer: <a href="https://nodejs.org/dist/v4.4.4/node-v4.4.4-x86.msi">https://nodejs.org/dist/v4.4.4/node-v4.4.4-x86.msi</a><br>
Windows 64-bit Installer: <a href="https://nodejs.org/dist/v4.4.4/node-v4.4.4-x64.msi">https://nodejs.org/dist/v4.4.4/node-v4.4.4-x64.msi</a><br>
Windows 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.4/win-x86/node.exe">https://nodejs.org/dist/v4.4.4/win-x86/node.exe</a><br>
Windows 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.4/win-x64/node.exe">https://nodejs.org/dist/v4.4.4/win-x64/node.exe</a><br>
Mac OS X 64-bit Installer: <a href="https://nodejs.org/dist/v4.4.4/node-v4.4.4.pkg">https://nodejs.org/dist/v4.4.4/node-v4.4.4.pkg</a><br>
Mac OS X 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.4/node-v4.4.4-darwin-x64.tar.gz">https://nodejs.org/dist/v4.4.4/node-v4.4.4-darwin-x64.tar.gz</a><br>
Linux 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.4/node-v4.4.4-linux-x86.tar.xz">https://nodejs.org/dist/v4.4.4/node-v4.4.4-linux-x86.tar.xz</a><br>
Linux 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.4/node-v4.4.4-linux-x64.tar.xz">https://nodejs.org/dist/v4.4.4/node-v4.4.4-linux-x64.tar.xz</a><br>
Linux PPC LE 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.4/node-v4.4.4-linux-ppc64le.tar.xz">https://nodejs.org/dist/v4.4.4/node-v4.4.4-linux-ppc64le.tar.xz</a><br>
SunOS 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.4/node-v4.4.4-sunos-x86.tar.xz">https://nodejs.org/dist/v4.4.4/node-v4.4.4-sunos-x86.tar.xz</a><br>
SunOS 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.4/node-v4.4.4-sunos-x64.tar.xz">https://nodejs.org/dist/v4.4.4/node-v4.4.4-sunos-x64.tar.xz</a><br>
ARMv6 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.4/node-v4.4.4-linux-armv6l.tar.xz">https://nodejs.org/dist/v4.4.4/node-v4.4.4-linux-armv6l.tar.xz</a><br>
ARMv7 32-bit Binary: <a href="https://nodejs.org/dist/v4.4.4/node-v4.4.4-linux-armv7l.tar.xz">https://nodejs.org/dist/v4.4.4/node-v4.4.4-linux-armv7l.tar.xz</a><br>
ARMv8 64-bit Binary: <a href="https://nodejs.org/dist/v4.4.4/node-v4.4.4-linux-arm64.tar.xz">https://nodejs.org/dist/v4.4.4/node-v4.4.4-linux-arm64.tar.xz</a><br>
Source Code: <a href="https://nodejs.org/dist/v4.4.4/node-v4.4.4.tar.gz">https://nodejs.org/dist/v4.4.4/node-v4.4.4.tar.gz</a><br>
Other release files: <a href="https://nodejs.org/dist/v4.4.4/">https://nodejs.org/dist/v4.4.4/</a><br>
Documentation: <a href="https://nodejs.org/docs/v4.4.4/api/">https://nodejs.org/docs/v4.4.4/api/</a></p>
<p>Shasums (GPG signing hash: SHA512, file hash: SHA256):</p>
<pre><code>-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

3d240db764391faca06df67db1eefd0b20989153edb0a99cbaf16e441e734a4d  node-v4.4.4-darwin-x64.tar.gz
e6a521781d212a760ef63ca139a12a86b8a312f730abc8deb0d8fa8f18d9f357  node-v4.4.4-darwin-x64.tar.xz
a5abc953d1ee4295cd3dcfdc116797e4b807e0b2d5c888aa31631fa1de9a9200  node-v4.4.4-headers.tar.gz
7a3521608274a32b5e609bf76581d6cec838ec369f1b346f73aca58588515fb0  node-v4.4.4-headers.tar.xz
4d7336411a61e92eb4815dc5b9042cae92ed49d3bc472da153aa13fd4e812b99  node-v4.4.4-linux-arm64.tar.gz
e50d47bdd5fe26a249449059244222e06f98513209027bf557bf809e24e17400  node-v4.4.4-linux-arm64.tar.xz
618efa1636db2d8acd7f28902200cbb42fd0f1d71ef482b6e99a027372584581  node-v4.4.4-linux-armv6l.tar.gz
c1a67dc4c7080b4082d165861d44a1f3279adec18279edc927329d153ab5b657  node-v4.4.4-linux-armv6l.tar.xz
64af655f048fc1ba70591076bbdeb61195347942ceef1ea18157467e5a01f253  node-v4.4.4-linux-armv7l.tar.gz
9df9d2bb7335a3118ed20a8332df40659294bfe04896c49d7e4890d7f667c495  node-v4.4.4-linux-armv7l.tar.xz
939cead87316367dd88430807ad335b9bdab4812fe0cd18adf62887c699dd4e7  node-v4.4.4-linux-ppc64le.tar.gz
23cedc2304c1709450689e5a3afe01b749dcb7a5b4f817bf59e97a64b22b60b3  node-v4.4.4-linux-ppc64le.tar.xz
0881eb010c8a4a0e746a1852fe48416d9c21b5f19a20d418cb02c7197fa55576  node-v4.4.4-linux-x64.tar.gz
c8b4e3c6e07e51593dddbf1d2ec3cf0ec09d5c6b8c5258b37b3816cc6b7e9fe3  node-v4.4.4-linux-x64.tar.xz
401fcef7908b3620bd28300bac06ad4fe774c95e10167c8617dde18befd78fcd  node-v4.4.4-linux-x86.tar.gz
7c0771b0153dd1c6609197b7b56840085df5d0752862fe4e98569d8d7bcb8682  node-v4.4.4-linux-x86.tar.xz
0e26458c8490af8f7d1aa4db8ca2792e2089fc0065517225cb30d4f22778b288  node-v4.4.4.pkg
5748ececfb65a5dfa5c7eb87c31e890aff7a32aeea6ae440e382eca34ec16eba  node-v4.4.4-sunos-x64.tar.gz
a2aea1b73dc559db924b4a00884f1ae26c5bea84956e506c7a1b7fbe04b36f5a  node-v4.4.4-sunos-x64.tar.xz
1da8b38983ba9fd8878c2127225396991c8189934e578760f0860ed15302cdd6  node-v4.4.4-sunos-x86.tar.gz
b542392497c7bd03d83cba378f0056b9d1e2c2feb71ba64196ab64a2a8ae67ba  node-v4.4.4-sunos-x86.tar.xz
53c694c203ee18e7cd393612be08c61ed6ab8b2a165260984a99c014d1741414  node-v4.4.4.tar.gz
2c9cedc401145a6648877ebd3fa9090c874dfced8bf7a6e7d9d8e9c21827b114  node-v4.4.4.tar.xz
3bfa87c9feb0107800740fd0a7f950b9259ba73a353274ba60a91d7b4a5279c5  node-v4.4.4-x64.msi
2198827fcc8ee3df77ec7551107409cf2eea02cdd98fed3388242e9f493d8467  node-v4.4.4-x86.msi
7b9884e09881ab6e3ef942f641e766c74ec33dac20c08914aa8778508d4c116b  win-x64/node.exe
a1736c89bf3510dab521fac288228ab3464eca1ee2d5449ff60de2ca6d17a38f  win-x64/node.lib
02565551c3645760e6c466190a94badf8755f4ad789e61e8e40f40c3483590fc  win-x86/node.exe
77bf8aa73cdf0d45b99a7844842e58ca6c4756531e759ea6581d92be8371c139  win-x86/node.lib
-----BEGIN PGP SIGNATURE-----

iQEcBAEBAgAGBQJXLK8GAAoJEJM7AfQLXKlGVKUH/jYIvgLWqaQmpYJbgAupUmuo
Av7DB+iKGWFK0Tn2vmeQsWAK7XzIaXHFimldQ8x6lwt5hjH5L4MjA8wQ6zblgT7S
FK/VHWBHd+7T8eTE6D+42g7Umo4lL2D8PbB/ePKuDYYNtzFqllE0ThX+IkNnMRJs
X8xqmzXa7EvEQMiOGzQF0B2gWqovW6m7d0Skm72szT0ldayUUBwQ9z1zE1RVGmlc
lNMAMinZhOdbtCQChOTYRu6dhjdf/MOwHMMrG2AHiasjgKvrMjHBx9kbP/DOrtM4
zIarizzJGPoTU0JEb63JE5OmeR5q1vhblnT/tTo0VB1oeaC7T72vZqxvvyYvekU=
=RKEg
-----END PGP SIGNATURE-----
</code></pre>]]></description><link>https://nodejs.org/en/blog/release/v4.4.4</link><guid isPermaLink="true">https://nodejs.org/en/blog/release/v4.4.4</guid><dc:creator><![CDATA[Myles Borins]]></dc:creator><pubDate>Fri, 06 May 2016 14:50:41 GMT</pubDate></item><item><title><![CDATA[Node v0.12.14 (Maintenance)]]></title><description><![CDATA[<h3 id="header-notable-changes">Notable changes:<a name="notable-changes" class="anchor" href="#notable-changes" aria-labelledby="header-notable-changes"></a></h3><ul>
<li><strong>npm</strong>: Correct erroneous version number in v2.15.1 code (Forrest L Norvell) <a href="https://github.com/nodejs/node/pull/5988">https://github.com/nodejs/node/pull/5988</a></li>
<li><strong>openssl</strong>: Upgrade to v1.0.1t, addressing security vulnerabilities (Shigeki Ohtsu) <a href="https://github.com/nodejs/node/pull/6553">https://github.com/nodejs/node/pull/6553</a><ul>
<li>Fixes CVE-2016-2107 &quot;Padding oracle in AES-NI CBC MAC check&quot;</li>
<li>Fixes CVE-2016-2105 &quot;EVP_EncodeUpdate overflow&quot;</li>
<li>See <a href="https://nodejs.org/en/blog/vulnerability/openssl-may-2016/">https://nodejs.org/en/blog/vulnerability/openssl-may-2016/</a> for full details</li>
</ul>
</li>
</ul>
<h3 id="header-commits">Commits:<a name="commits" class="anchor" href="#commits" aria-labelledby="header-commits"></a></h3><ul>
<li>[<a href="https://github.com/nodejs/node/commit/3e99ee1b47"><code>3e99ee1b47</code></a>] - <strong>deps</strong>: completely upgrade npm in LTS to 2.15.1 (Forrest L Norvell) <a href="https://github.com/nodejs/node/pull/5988">#5988</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2b63396e1f"><code>2b63396e1f</code></a>] - <strong>deps</strong>: add -no_rand_screen to openssl s_client (Shigeki Ohtsu) <a href="https://github.com/joyent/node/pull/25368">joyent/node#25368</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/f21705df58"><code>f21705df58</code></a>] - <strong>deps</strong>: update openssl asm files (Shigeki Ohtsu) <a href="https://github.com/nodejs/node/pull/6553">#6553</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/02b6a6bc27"><code>02b6a6bc27</code></a>] - <strong>deps</strong>: fix openssl assembly error on ia32 win32 (Fedor Indutny) <a href="https://github.com/joyent/node/pull/25654">joyent/node#25654</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1aecc668b0"><code>1aecc668b0</code></a>] - <strong>deps</strong>: separate sha256/sha512-x86_64.pl for openssl (Shigeki Ohtsu) <a href="https://github.com/joyent/node/pull/25654">joyent/node#25654</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/39380836a0"><code>39380836a0</code></a>] - <strong>deps</strong>: copy all openssl header files to include dir (Shigeki Ohtsu) <a href="https://github.com/nodejs/node/pull/6553">#6553</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/08c8ae44a8"><code>08c8ae44a8</code></a>] - <strong>deps</strong>: upgrade openssl sources to 1.0.1t (Shigeki Ohtsu) <a href="https://github.com/nodejs/node/pull/6553">#6553</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/f5a961ab13"><code>f5a961ab13</code></a>] - <strong>openssl</strong>: fix keypress requirement in apps on win32 (Shigeki Ohtsu) <a href="https://github.com/joyent/node/pull/25654">joyent/node#25654</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/810fb211a7"><code>810fb211a7</code></a>] - <strong>tools</strong>: remove obsolete npm test-legacy command (Kat Marchán) <a href="https://github.com/nodejs/node/pull/5988">#5988</a></li>
</ul>
<p>Windows 32-bit Installer: <a href="https://nodejs.org/dist/v0.12.14/node-v0.12.14-x86.msi">https://nodejs.org/dist/v0.12.14/node-v0.12.14-x86.msi</a><br>
Windows 64-bit Installer: <a href="https://nodejs.org/dist/v0.12.14/x64/node-v0.12.14-x64.msi">https://nodejs.org/dist/v0.12.14/x64/node-v0.12.14-x64.msi</a><br>
Windows 32-bit Binary: <a href="https://nodejs.org/dist/v0.12.14/node.exe">https://nodejs.org/dist/v0.12.14/node.exe</a><br>
Windows 64-bit Binary: <a href="https://nodejs.org/dist/v0.12.14/x64/node.exe">https://nodejs.org/dist/v0.12.14/x64/node.exe</a><br>
Mac OS X Universal Installer: <a href="https://nodejs.org/dist/v0.12.14/node-v0.12.14.pkg">https://nodejs.org/dist/v0.12.14/node-v0.12.14.pkg</a><br>
Mac OS X 64-bit Binary: <a href="https://nodejs.org/dist/v0.12.14/node-v0.12.14-darwin-x64.tar.gz">https://nodejs.org/dist/v0.12.14/node-v0.12.14-darwin-x64.tar.gz</a><br>
Mac OS X 32-bit Binary: <a href="https://nodejs.org/dist/v0.12.14/node-v0.12.14-darwin-x86.tar.gz">https://nodejs.org/dist/v0.12.14/node-v0.12.14-darwin-x86.tar.gz</a><br>
Linux 32-bit Binary: <a href="https://nodejs.org/dist/v0.12.14/node-v0.12.14-linux-x86.tar.gz">https://nodejs.org/dist/v0.12.14/node-v0.12.14-linux-x86.tar.gz</a><br>
Linux 64-bit Binary: <a href="https://nodejs.org/dist/v0.12.14/node-v0.12.14-linux-x64.tar.gz">https://nodejs.org/dist/v0.12.14/node-v0.12.14-linux-x64.tar.gz</a><br>
SunOS 32-bit Binary: <a href="https://nodejs.org/dist/v0.12.14/node-v0.12.14-sunos-x86.tar.gz">https://nodejs.org/dist/v0.12.14/node-v0.12.14-sunos-x86.tar.gz</a><br>
SunOS 64-bit Binary: <a href="https://nodejs.org/dist/v0.12.14/node-v0.12.14-sunos-x64.tar.gz">https://nodejs.org/dist/v0.12.14/node-v0.12.14-sunos-x64.tar.gz</a><br>
Source Code: <a href="https://nodejs.org/dist/v0.12.14/node-v0.12.14.tar.gz">https://nodejs.org/dist/v0.12.14/node-v0.12.14.tar.gz</a><br>
Other release files: <a href="https://nodejs.org/dist/v0.12.14/">https://nodejs.org/dist/v0.12.14/</a><br>
Documentation: <a href="https://nodejs.org/docs/v0.12.14/api/">https://nodejs.org/docs/v0.12.14/api/</a></p>
<p>Shasums (GPG signing hash: SHA512, file hash: SHA256):</p>
<pre><code>-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

83c5d843c5ba7bd8f1d43711356208eaeda0230e3587fa4a27aac5ae14308d2d  node.exe
47cd92a1db9b8782c3e40e4e6ac85c706ea7e2dcf13e0c7803031885cd3893a1  node.exp
3883d0af51df19e7a44d69d8dacec56ba065c41bfb05f7b1f49c53bae8637d3e  node.lib
d1d9a6fc90707fa364f690decc010d950667841f85e49f088c79829124b914af  node.pdb
b4de40b8fe9cf748b36b9d7764c06f1fc955c73e3547c4eaab3d90a818663e1c  node-v0.12.14-darwin-x64.tar.gz
9c2270a1d92e22f03a8ccc8698ded7947056583336885912ba2f0840cf07fc38  node-v0.12.14-darwin-x64.tar.xz
2ac52efd90931ea04dd01947e19c6320e519967a813f7274eb699bf468fe226d  node-v0.12.14-darwin-x86.tar.gz
8209c23acb175dde1424ccd73945179393cd22791c3d51e24dfeb03f77c955d5  node-v0.12.14-darwin-x86.tar.xz
75f927b98a955207f261d03de5966b167e893da80e641695e6b9d6da44312452  node-v0.12.14-headers.tar.gz
072d68b05038fec7a443240947501b0be12bd33d1b958b1946caa80824beb4ed  node-v0.12.14-headers.tar.xz
0f1f20f6989d32b4b67835f527ae3bf165c1c4a6a7dc3961d489288817956bae  node-v0.12.14-linux-x64.tar.gz
a0b93224939fb638091b4e20c87a75e1c042314d419686f5040b8a48ed7f2112  node-v0.12.14-linux-x64.tar.xz
212a3a5d1cdd34b71476dd615d95da9209b8a5e490dbe6141926e15f1ccfe386  node-v0.12.14-linux-x86.tar.gz
a85432f5da612184baee47d93870b7796776ed15d61670dbec6640621ed4722a  node-v0.12.14-linux-x86.tar.xz
59f7d1426e63ff266b5d7f7ccb3a5b5bc7eea2b1c5d6ed44dd45370235ab4357  node-v0.12.14.pkg
906a44e9f6024c3f9af05a8aac5ba10c25d84bf56b9fb08c5fc1c26c5a8b9d27  node-v0.12.14-sunos-x64.tar.gz
100f724b5f2d1dc263aa70f3cf77af873097157a22d15c883c5cd39e2ffe2520  node-v0.12.14-sunos-x64.tar.xz
f042bee409d4da3114571dfff496a954ea6cd614e7fb78fd3d9b50d799396757  node-v0.12.14-sunos-x86.tar.gz
59ca5e14f1b126887b7c4944ab0423f06011ff7acb3c142bfc486dd85a9f3718  node-v0.12.14-sunos-x86.tar.xz
0a55e57cbd3ffa67525c0d93ac7076d3b2ac70887b11c5c97be3e1953cb50b1d  node-v0.12.14.tar.gz
ed57a1917fb089726b31735e138fb41d897b3c834cfc7c895390b2d273623f1a  node-v0.12.14.tar.xz
5b23e0733ab87adc09bbac9eb1d1341616a346c4ca8a69b4b3539b559de9c7b2  node-v0.12.14-x86.msi
d676d494a36ddfd21041cc07e9fa80f6d21b6fbd5a71f84611f980c410019639  openssl-cli.exe
086f4795edcb076669065a064006085ce415d4d56d89298599a0880ff0d7154a  openssl-cli.pdb
19b2327c0068c8fcd3a8be7a724527627e346ca8e57fb1e3e39b7f80e94bd486  x64/node.exe
61b31c6af9d606bcef77d4a9afa531a597570f92cd5afeeff4e7a4223c2326c8  x64/node.exp
a838e4a513fcbfcbb6f8aad96f240bc4389940e95186b80383e32711accbb6ae  x64/node.lib
2e3cc6017f2f6cc806fae5a27bc2d696fd780558f6c5c1fa7c0df82e6c0084df  x64/node.pdb
53da9c08f72c6260d31b7c70812cc2ad17d5e203860fe1b7c6c85f0ec3d6e2ea  x64/node-v0.12.14-x64.msi
524ce8394e20e8f7a6fd681c7d509e77d015bd16510caaff954a983f0d171a29  x64/openssl-cli.exe
75404fbe3ec01c52e9373b766e59d55bada0404f8f14396e6bcaaefd4e00491a  x64/openssl-cli.pdb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAEBAgAGBQJXLKGsAAoJEMJzeS99g1RdI20IANwgtd3Q8omZiXhnSMSMNqt3
AZybwyOKOfGTqxmbmRxlSsllp46lWoj0l+kp0NfiSopXe/+waCpyeIemUtaF9Ag3
3gAtWP3cnw4rPv6CEG1IJu5Q1nHq1HKgMUcW+L5PUCN869SXO/ZREYtAwX4fjg/X
lhqqAss7117nV7vQ1TbkLynEm8uT2S2kOQ8UjKpazp0IobPpSoc0XiodsAkNHKpt
UGSxFKIaAjlF9JsuQw91AYIBJ3658aQw3LnIckymO8xirZE5ek1X8ReuuwhDUszQ
ibXwwI09/AGCfhakitr3NmGG+Pg6gc/UEASTJtxPCVRcrKFcJ5tIWRynaRgV1uM=
=ESJj
-----END PGP SIGNATURE-----
</code></pre>]]></description><link>https://nodejs.org/en/blog/release/v0.12.14</link><guid isPermaLink="true">https://nodejs.org/en/blog/release/v0.12.14</guid><dc:creator><![CDATA[Rod Vagg]]></dc:creator><pubDate>Fri, 06 May 2016 13:54:37 GMT</pubDate></item><item><title><![CDATA[Node v0.10.45 (Maintenance)]]></title><description><![CDATA[<h3 id="header-notable-changes">Notable changes:<a name="notable-changes" class="anchor" href="#notable-changes" aria-labelledby="header-notable-changes"></a></h3><ul>
<li><strong>npm</strong>: Correct erroneous version number in v2.15.1 code (Forrest L Norvell) <a href="https://github.com/nodejs/node/pull/5987">https://github.com/nodejs/node/pull/5987</a></li>
<li><strong>openssl</strong>: Upgrade to v1.0.1t, addressing security vulnerabilities (Shigeki Ohtsu) <a href="https://github.com/nodejs/node/pull/6553">https://github.com/nodejs/node/pull/6553</a><ul>
<li>Fixes CVE-2016-2107 &quot;Padding oracle in AES-NI CBC MAC check&quot;</li>
<li>See <a href="https://nodejs.org/en/blog/vulnerability/openssl-may-2016/">https://nodejs.org/en/blog/vulnerability/openssl-may-2016/</a> for full details</li>
</ul>
</li>
</ul>
<p>Commits:</p>
<ul>
<li>[<a href="https://github.com/nodejs/node/commit/3cff81c7d6"><code>3cff81c7d6</code></a>] - <strong>deps</strong>: completely upgrade npm in LTS to 2.15.1 (Forrest L Norvell) <a href="https://github.com/nodejs/node/pull/5987">#5987</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7c22f19009"><code>7c22f19009</code></a>] - <strong>deps</strong>: add -no_rand_screen to openssl s_client (Shigeki Ohtsu) <a href="https://github.com/joyent/node/pull/25368">joyent/node#25368</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5d78366937"><code>5d78366937</code></a>] - <strong>deps</strong>: update openssl asm files (Shigeki Ohtsu) <a href="https://github.com/nodejs/node/pull/6553">#6553</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2bc2427cb7"><code>2bc2427cb7</code></a>] - <strong>deps</strong>: fix openssl assembly error on ia32 win32 (Fedor Indutny) <a href="https://github.com/joyent/node/pull/25654">joyent/node#25654</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8df4b0914c"><code>8df4b0914c</code></a>] - <strong>deps</strong>: separate sha256/sha512-x86_64.pl for openssl (Shigeki Ohtsu) <a href="https://github.com/joyent/node/pull/25654">joyent/node#25654</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/11eefefb17"><code>11eefefb17</code></a>] - <strong>deps</strong>: copy all openssl header files to include dir (Shigeki Ohtsu) <a href="https://github.com/nodejs/node/pull/6553">#6553</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/61ccc27b54"><code>61ccc27b54</code></a>] - <strong>deps</strong>: upgrade openssl sources to 1.0.1t (Shigeki Ohtsu) <a href="https://github.com/nodejs/node/pull/6553">#6553</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/aa02438274"><code>aa02438274</code></a>] - <strong>openssl</strong>: fix keypress requirement in apps on win32 (Shigeki Ohtsu) [joyent/node#25654](<a href="https://github.com/joyent/node/">https://github.com/joyent/node/</a></li>
</ul>
<p>Windows 32-bit Installer: <a href="https://nodejs.org/dist/v0.10.45/node-v0.10.45-x86.msi">https://nodejs.org/dist/v0.10.45/node-v0.10.45-x86.msi</a><br>
Windows 64-bit Installer: <a href="https://nodejs.org/dist/v0.10.45/x64/node-v0.10.45-x64.msi">https://nodejs.org/dist/v0.10.45/x64/node-v0.10.45-x64.msi</a><br>
Windows 32-bit Binary: <a href="https://nodejs.org/dist/v0.10.45/node.exe">https://nodejs.org/dist/v0.10.45/node.exe</a><br>
Windows 64-bit Binary: <a href="https://nodejs.org/dist/v0.10.45/x64/node.exe">https://nodejs.org/dist/v0.10.45/x64/node.exe</a><br>
Mac OS X Universal Installer: <a href="https://nodejs.org/dist/v0.10.45/node-v0.10.45.pkg">https://nodejs.org/dist/v0.10.45/node-v0.10.45.pkg</a><br>
Mac OS X 64-bit Binary: <a href="https://nodejs.org/dist/v0.10.45/node-v0.10.45-darwin-x64.tar.gz">https://nodejs.org/dist/v0.10.45/node-v0.10.45-darwin-x64.tar.gz</a><br>
Mac OS X 32-bit Binary: <a href="https://nodejs.org/dist/v0.10.45/node-v0.10.45-darwin-x86.tar.gz">https://nodejs.org/dist/v0.10.45/node-v0.10.45-darwin-x86.tar.gz</a><br>
Linux 32-bit Binary: <a href="https://nodejs.org/dist/v0.10.45/node-v0.10.45-linux-x86.tar.gz">https://nodejs.org/dist/v0.10.45/node-v0.10.45-linux-x86.tar.gz</a><br>
Linux 64-bit Binary: <a href="https://nodejs.org/dist/v0.10.45/node-v0.10.45-linux-x64.tar.gz">https://nodejs.org/dist/v0.10.45/node-v0.10.45-linux-x64.tar.gz</a><br>
SunOS 32-bit Binary: <a href="https://nodejs.org/dist/v0.10.45/node-v0.10.45-sunos-x86.tar.gz">https://nodejs.org/dist/v0.10.45/node-v0.10.45-sunos-x86.tar.gz</a><br>
SunOS 64-bit Binary: <a href="https://nodejs.org/dist/v0.10.45/node-v0.10.45-sunos-x64.tar.gz">https://nodejs.org/dist/v0.10.45/node-v0.10.45-sunos-x64.tar.gz</a><br>
Source Code: <a href="https://nodejs.org/dist/v0.10.45/node-v0.10.45.tar.gz">https://nodejs.org/dist/v0.10.45/node-v0.10.45.tar.gz</a><br>
Other release files: <a href="https://nodejs.org/dist/v0.10.45/">https://nodejs.org/dist/v0.10.45/</a><br>
Documentation: <a href="https://nodejs.org/docs/v0.10.45/api/">https://nodejs.org/docs/v0.10.45/api/</a></p>
<p>Shasums (GPG signing hash: SHA512, file hash: SHA256):</p>
<pre><code>-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

5cfddcfcdb0e5a09c54ba1c52a935c43d182b54e013fc0d621d44a710222dc00  node.exe
743c46a6145b25b088ff5a18e3403fa02c4ce9c033b284c762ccd1329de85c37  node.exp
3c7b5f96e272d71b1eaca89a111d19f0e682193306c71687f63a695f40abff07  node.lib
fc15a8a784db0f23617544f663130af8e9d1155eb2ad706fe8387de1d7b62719  node.pdb
d1ab69f49365a0dc6b10a363965452f37f3589adee19974940cbd2b991965e70  node-v0.10.45-darwin-x64.tar.gz
f8acb114faea28a6d58b35025e3fd37b5bb9e8fa9eac4a3796d225c16ba541de  node-v0.10.45-darwin-x64.tar.xz
3db0e42736fbdedc8a985269595251d9c4e4860594ce1eee4a692f8621ee5918  node-v0.10.45-darwin-x86.tar.gz
9544df4ab211e81601a02b681bf8fdec834efde4174ecf0a3f69fec9eab012eb  node-v0.10.45-darwin-x86.tar.xz
94028ba548c1faabb6cb92143392784d3ad07829c16852f5404933eed7d73da7  node-v0.10.45-headers.tar.gz
31d4d84a543bd60ca6c738e1ef243b2b04f87e41566349b8242933812107bcca  node-v0.10.45-headers.tar.xz
54d095d12b6227460f08ec81e50f9db930ec51fa05af1b7722fa85bd2cabb5d7  node-v0.10.45-linux-x64.tar.gz
2fd840bf79480863904860c63f615615077dbc88bd44669eb93c9bf216b4eaf0  node-v0.10.45-linux-x64.tar.xz
0d21b8e9d4213021cd954908098d07407052da1b7a97d6c585f89752c49505b4  node-v0.10.45-linux-x86.tar.gz
2e63e46a818777c3ba57a10406e6e1ab6ceee3b4b861eb195574659e5302ddae  node-v0.10.45-linux-x86.tar.xz
39a4cea90fcd2564db4969a0dd6fe0d57c5593d1758796b8d41dfdda6597baca  node-v0.10.45.pkg
019a1c40daff7b05efb2bd27c586d9ba9c5fe5048550b74e67e171d1495d4e30  node-v0.10.45-sunos-x64.tar.gz
69197c4adf23ff4a3c6c8fa5c35b9ab4d9906015624ef7a8a37d6573535d6116  node-v0.10.45-sunos-x64.tar.xz
39a0790a7e533dd77f473c009c11458a5205cfc438777139a5e9658be63dfee2  node-v0.10.45-sunos-x86.tar.gz
b764e0ad9a80a4a02abcfd33565aaf49d0345c43d8ce7e00b35e8a82cfa1102c  node-v0.10.45-sunos-x86.tar.xz
d184bb74758d4ac69826823934cda1d46e81402fc16ebdb2ecacdc1a8fe0b568  node-v0.10.45.tar.gz
a71070ea7aece9c94450b45102f2d1be42f0add168dd9c9701e9032d363bd4fa  node-v0.10.45.tar.xz
4c3e6c53fb65d789c522e0c4fe03341faae66707b436c389c5d5fd9298baa369  node-v0.10.45-x86.msi
c17e3353d44951611f8929afcedcd3fc9237fe7672037efbbbaab7b1a2d2f007  openssl-cli.exe
1897ea9e230f334a198f71526632a9c1ee16647fa94e6868cdd15ad9e6aa254f  openssl-cli.pdb
949c8455152d1f217708cfcbbfc1be0c54f83b4e71d5cfa142f32d758587bbf6  x64/node.exe
e62c0a6e0d2dd3cfbe5e6d99c71109b79ba72f328079a7d89c6994d71348d029  x64/node.exp
ec4811d93e8508826d98de116bdf0dc858dda3c179c9333d6b5566e1e606c9e4  x64/node.lib
303a39cdc16070aca53a6ab5e8064b6a57f2ac6813dfcd58d3770129d0900515  x64/node.pdb
2f1e8d851bcaf5f1bc3e0498b241d0db53281223333b9a891b64818ab51a2044  x64/node-v0.10.45-x64.msi
264166624c9bcc38fbed31da56ed86e8ba16238b81700f86f6f35d89cb039f21  x64/openssl-cli.exe
0628dee6ddc474eca219a5d5069de1a6f2f3abcb3cd0eee06597e183672e6b5c  x64/openssl-cli.pdb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAEBAgAGBQJXLJomAAoJEMJzeS99g1Rdty4IANVJ53QRd5tUepWjxjIwZ6e7
2r2oYSO6uihZkyddV+447KDzxYsGkdg0z4DS3BD7ym78hl4EEMlE/x8wPWBrZKAr
yACZu2U/3ivXYyEOvdV0nlLeUNGMeugTtVxhxSMbf7fK22zeLvLCC9Q4735zhG37
kAF7mw6Sszr+zCMV5eqh5MfYIwaCduck4TfG5ibc8fAQ4A4nUTF6jC0JRbcPXKku
7oT7ol7u8w97Im3ZynvwZZ2yQPAqSxssKjWuLnSmt+Wng7bUregjK04QNCaa8HEV
uPY0qIVSAS2rr1R12dOgqKhgO90gKoUa1qtWGivlvO2HH3JILWMjopb+mu0ZkIc=
=HZGA
-----END PGP SIGNATURE-----
</code></pre>]]></description><link>https://nodejs.org/en/blog/release/v0.10.45</link><guid isPermaLink="true">https://nodejs.org/en/blog/release/v0.10.45</guid><dc:creator><![CDATA[Rod Vagg]]></dc:creator><pubDate>Fri, 06 May 2016 13:22:08 GMT</pubDate></item><item><title><![CDATA[Node v6.1.0 (Current)]]></title><description><![CDATA[<p>Please see our <a href="https://nodejs.org/en/blog/vulnerability/openssl-may-2016/">blog post</a> for more info on the security contents of this release.</p>
<h3 id="header-notable-changes">Notable Changes<a name="notable-changes" class="anchor" href="#notable-changes" aria-labelledby="header-notable-changes"></a></h3><ul>
<li><strong>assert</strong>: <code>deep{Strict}Equal()</code> now works correctly with circular references. (Rich Trott) <a href="https://github.com/nodejs/node/pull/6432">#6432</a></li>
<li><strong>debugger</strong>: Arrays are now formatted correctly in the debugger repl. (cjihrig) <a href="https://github.com/nodejs/node/pull/6448">#6448</a></li>
<li><strong>deps</strong>: Upgrade OpenSSL sources to 1.0.2h (Shigeki Ohtsu) <a href="https://github.com/nodejs/node/pull/6550">#6550</a></li>
<li><strong>net</strong>: Introduced a <code>Socket#connecting</code> property. (Fedor Indutny) <a href="https://github.com/nodejs/node/pull/6404">#6404</a><ul>
<li>Previously this information was only available as the undocumented, internal <code>_connecting</code> property.</li>
</ul>
</li>
<li><strong>process</strong>: Introduced <code>process.cpuUsage()</code>. (Patrick Mueller) <a href="https://github.com/nodejs/node/pull/6157">#6157</a></li>
<li><strong>stream</strong>: <code>Writable#setDefaultEncoding()</code> now returns <code>this</code>. (Alexander Makarenko) <a href="https://github.com/nodejs/node/pull/5040">#5040</a></li>
<li><strong>util</strong>: Two new additions to <code>util.inspect()</code>:<ul>
<li>Added a <code>maxArrayLength</code> option to truncate the formatting of Arrays. (James M Snell) <a href="https://github.com/nodejs/node/pull/6334">#6334</a><ul>
<li>This is set to <code>100</code> by default.</li>
</ul>
</li>
<li>Added a <code>showProxy</code> option for formatting proxy intercepting handlers. (James M Snell) <a href="https://github.com/nodejs/node/pull/6465">#6465</a><ul>
<li>Inspecting proxies is non-trivial and as such this is off by default.</li>
</ul>
</li>
</ul>
</li>
</ul>
<h3 id="header-commits">Commits<a name="commits" class="anchor" href="#commits" aria-labelledby="header-commits"></a></h3><ul>
<li>[<a href="https://github.com/nodejs/node/commit/76c9ab5fcf"><code>76c9ab5fcf</code></a>] - <strong>assert</strong>: allow circular references (Rich Trott) <a href="https://github.com/nodejs/node/pull/6432">#6432</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7b9ae70757"><code>7b9ae70757</code></a>] - <strong>benchmark</strong>: Fix crash in net benchmarks (Matt Loring) <a href="https://www.github.com/nodejs/node/pull/6407">#6407</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0d1985358a"><code>0d1985358a</code></a>] - <strong>build</strong>: use shorthand lint target from test (Johan Bergström) <a href="https://github.com/nodejs/node/pull/6406">#6406</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7153f96f0e"><code>7153f96f0e</code></a>] - <strong>build</strong>: unbreak -prof, disable PIE on OS X (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6453">#6453</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8956432e18"><code>8956432e18</code></a>] - <strong>build</strong>: exclude tap files from tarballs (Brian White) <a href="https://github.com/nodejs/node/pull/6348">#6348</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/11e7cc5310"><code>11e7cc5310</code></a>] - <strong>build</strong>: don&#39;t compile with -B (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6393">#6393</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1330496bbf"><code>1330496bbf</code></a>] - <strong>cluster</strong>: remove use of bind() in destroy() (yorkie) <a href="https://github.com/nodejs/node/pull/6502">#6502</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/fdde36909c"><code>fdde36909c</code></a>] - <strong>crypto</strong>: fix error in deprecation message (Rich Trott) <a href="https://github.com/nodejs/node/pull/6344">#6344</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2d503b1d4b"><code>2d503b1d4b</code></a>] - <strong>debugger</strong>: display array contents in repl (cjihrig) <a href="https://github.com/nodejs/node/pull/6448">#6448</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/54f8600613"><code>54f8600613</code></a>] - <strong>deps</strong>: update openssl asm and asm_obsolete files (Shigeki Ohtsu) <a href="https://github.com/nodejs/node/pull/6550">#6550</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/a5a2944877"><code>a5a2944877</code></a>] - <strong>deps</strong>: add -no_rand_screen to openssl s_client (Shigeki Ohtsu) <a href="https://github.com/nodejs/io.js/pull/1836">nodejs/io.js#1836</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3fe68129c8"><code>3fe68129c8</code></a>] - <strong>deps</strong>: fix asm build error of openssl in x86_win32 (Shigeki Ohtsu) <a href="https://github.com/iojs/io.js/pull/1389">iojs/io.js#1389</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d159462fed"><code>d159462fed</code></a>] - <strong>deps</strong>: fix openssl assembly error on ia32 win32 (Fedor Indutny) <a href="https://github.com/iojs/io.js/pull/1389">iojs/io.js#1389</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3af28d3693"><code>3af28d3693</code></a>] - <strong>deps</strong>: copy all openssl header files to include dir (Shigeki Ohtsu) <a href="https://github.com/nodejs/node/pull/6550">#6550</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e6ab3ece65"><code>e6ab3ece65</code></a>] - <strong>deps</strong>: upgrade openssl sources to 1.0.2h (Shigeki Ohtsu) <a href="https://github.com/nodejs/node/pull/6550">#6550</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/65b6574d59"><code>65b6574d59</code></a>] - <strong>deps</strong>: backport IsValid changes from 4e8736d in V8 (Michaël Zasso) <a href="https://github.com/nodejs/node/pull/6544">#6544</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/33f24c821b"><code>33f24c821b</code></a>] - <strong>doc</strong>: adds &#39;close&#39; events to fs.ReadStream and fs.WriteStream (Jenna Vuong) <a href="https://github.com/nodejs/node/pull/6499">#6499</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4f728df1bf"><code>4f728df1bf</code></a>] - <strong>doc</strong>: linkify remaining references to fs.Stats object (Kevin Donahue) <a href="https://github.com/nodejs/node/pull/6485">#6485</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/9a29b50c52"><code>9a29b50c52</code></a>] - <strong>doc</strong>: fix the lint of an example in cluster.md (yorkie) <a href="https://github.com/nodejs/node/pull/6516">#6516</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/d674493fa5"><code>d674493fa5</code></a>] - <strong>doc</strong>: add missing underscore for markdown italics (Kevin Donahue) <a href="https://github.com/nodejs/node/pull/6529">#6529</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7c30f15e1b"><code>7c30f15e1b</code></a>] - <strong>doc</strong>: ensure consistent grammar in node.1 file (justshiv) <a href="https://github.com/nodejs/node/pull/6426">#6426</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e5ce53a217"><code>e5ce53a217</code></a>] - <strong>doc</strong>: fix sentence fragment in fs doc (Rich Trott) <a href="https://github.com/nodejs/node/pull/6488">#6488</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3e028a143c"><code>3e028a143c</code></a>] - <strong>doc</strong>: remove obsolete comment in isError() example (cjihrig) <a href="https://github.com/nodejs/node/pull/6486">#6486</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/969f96a019"><code>969f96a019</code></a>] - <strong>doc</strong>: fix a typo in <code>__dirname</code> section (William Luo) <a href="https://github.com/nodejs/node/pull/6473">#6473</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ab7055b003"><code>ab7055b003</code></a>] - <strong>doc</strong>: fix fs.realpath man pg links (phette23) <a href="https://github.com/nodejs/node/pull/6451">#6451</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/13e660888f"><code>13e660888f</code></a>] - <strong>doc</strong>: extra clarification of historySize option (vsemozhetbyt) <a href="https://github.com/nodejs/node/pull/6397">#6397</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3d5b732660"><code>3d5b732660</code></a>] - <strong>doc</strong>: clarifies http.serverResponse implementation (Allen Hernandez) <a href="https://github.com/nodejs/node/pull/6072">#6072</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7034ebe2bc"><code>7034ebe2bc</code></a>] - <strong>doc</strong>: use <code>Node.js</code> in synopsis document (Rich Trott) <a href="https://github.com/nodejs/node/pull/6476">#6476</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4ae39f9863"><code>4ae39f9863</code></a>] - <strong>doc</strong>: remove all scrollbar styling (Claudio Rodriguez) <a href="https://github.com/nodejs/node/pull/6479">#6479</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e6c8da45b1"><code>e6c8da45b1</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>doc</strong>: make <code>writable.setDefaultEncoding()</code> return <code>this</code> (Alexander Makarenko) <a href="https://github.com/nodejs/node/pull/5040">#5040</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/4068d64f4f"><code>4068d64f4f</code></a>] - <strong>doc</strong>: fix EventEmitter#eventNames() example (Сковорода Никита Андреевич) <a href="https://github.com/nodejs/node/pull/6417">#6417</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/bfcde97251"><code>bfcde97251</code></a>] - <strong>doc</strong>: fix incorrect syntax in examples (Evan Lucas) <a href="https://github.com/nodejs/node/pull/6463">#6463</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/8eb87ee239"><code>8eb87ee239</code></a>] - <strong>doc</strong>: Remove extra space in REPL example (Juan) <a href="https://github.com/nodejs/node/pull/6447">#6447</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/fd37d54eb5"><code>fd37d54eb5</code></a>] - <strong>doc</strong>: added note warning about change to console.endTime() (Ben Page) <a href="https://github.com/nodejs/node/pull/6454">#6454</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/b3f75ec801"><code>b3f75ec801</code></a>] - <strong>doc</strong>: expand documentation for process.exit() (James M Snell) <a href="https://github.com/nodejs/node/pull/6410">#6410</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/fc0fbf1c63"><code>fc0fbf1c63</code></a>] - <strong>doc</strong>: subdivide TOC, add auxiliary links (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6167">#6167</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/150dd36503"><code>150dd36503</code></a>] - <strong>doc</strong>: no Node.js(1) (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6167">#6167</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/ab84d69048"><code>ab84d69048</code></a>] - <strong>doc</strong>: better example &amp; synopsis (Jeremiah Senkpiel) <a href="https://github.com/nodejs/node/pull/6167">#6167</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/f6d72791a1"><code>f6d72791a1</code></a>] - <strong>doc</strong>: update build instructions for OS X (Rich Trott) <a href="https://github.com/nodejs/node/pull/6309">#6309</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/36207c6daf"><code>36207c6daf</code></a>] - <strong>doc</strong>: correctly document the behavior of ee.once(). (Lance Ball) <a href="https://github.com/nodejs/node/pull/6371">#6371</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/19fb1345ba"><code>19fb1345ba</code></a>] - <strong>doc</strong>: use Buffer.from() instead of new Buffer() (Jackson Tian) <a href="https://github.com/nodejs/node/pull/6367">#6367</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/fb6753c75c"><code>fb6753c75c</code></a>] - <strong>doc</strong>: fix v6 changelog (James M Snell) <a href="https://github.com/nodejs/node/pull/6435">#6435</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/2c92a1fe03"><code>2c92a1fe03</code></a>] - <strong>events</strong>: pass the original listener added by once (DavidCai) <a href="https://github.com/nodejs/node/pull/6394">#6394</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/9ea6b282e8"><code>9ea6b282e8</code></a>] - <strong>meta</strong>: split CHANGELOG into two files (Myles Borins) <a href="https://github.com/nodejs/node/pull/6337">#6337</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/cbbe95e1e1"><code>cbbe95e1e1</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>net</strong>: introduce <code>Socket#connecting</code> property (Fedor Indutny) <a href="https://github.com/nodejs/node/pull/6404">#6404</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/534f03c2f0"><code>534f03c2f0</code></a>] - <strong>openssl</strong>: fix keypress requirement in apps on win32 (Shigeki Ohtsu) <a href="https://github.com/iojs/io.js/pull/1389">iojs/io.js#1389</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/1b9fdba04e"><code>1b9fdba04e</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>process</strong>: add process.cpuUsage() - implementation, doc, tests (Patrick Mueller) <a href="https://github.com/nodejs/node/pull/6157">#6157</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/fa9d82d120"><code>fa9d82d120</code></a>] - <strong>src</strong>: unify implementations of Utf8Value etc. (Anna Henningsen) <a href="https://github.com/nodejs/node/pull/6357">#6357</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/65030c77b7"><code>65030c77b7</code></a>] - <strong>test</strong>: fix alpn tests for openssl1.0.2h (Shigeki Ohtsu) <a href="https://github.com/nodejs/node/pull/6550">#6550</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/7641f9a6de"><code>7641f9a6de</code></a>] - <strong>test</strong>: refactor large event emitter tests (cjihrig) <a href="https://github.com/nodejs/node/pull/6446">#6446</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/5fe5fa2897"><code>5fe5fa2897</code></a>] - <strong>test</strong>: make addon testing part of <code>make test</code> (Ben Noordhuis) <a href="https://github.com/nodejs/node/pull/6232">#6232</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/457d12a0a1"><code>457d12a0a1</code></a>] - <strong>test</strong>: add failing url parse tests as known_issue (James M Snell) <a href="https://github.com/nodejs/node/pull/5885">#5885</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/089362f8b8"><code>089362f8b8</code></a>] - <strong>test,tools</strong>: limit lint tolerance of gc global (Rich Trott) <a href="https://github.com/nodejs/node/pull/6324">#6324</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/6d1606ee94"><code>6d1606ee94</code></a>] - <strong>test,tools</strong>: adjust function argument alignment (Rich Trott) <a href="https://github.com/nodejs/node/pull/6390">#6390</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/08e0884ae0"><code>08e0884ae0</code></a>] - <strong>tools</strong>: add -F flag for fixing lint issues (Rich Trott) <a href="https://github.com/nodejs/node/pull/6483">#6483</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/9f23cb24f2"><code>9f23cb24f2</code></a>] - <strong>tools</strong>: fix exit code when linting from CI (Brian White) <a href="https://github.com/nodejs/node/pull/6412">#6412</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/e62c42b8f4"><code>e62c42b8f4</code></a>] - <strong>tools</strong>: remove default parameters from lint rule (Rich Trott) <a href="https://github.com/nodejs/node/pull/6411">#6411</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/66903f6695"><code>66903f6695</code></a>] - <strong>tools</strong>: add tests for the doctool (Ian Kronquist) <a href="https://github.com/nodejs/node/pull/6031">#6031</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/3f608b16a7"><code>3f608b16a7</code></a>] - <strong>tools</strong>: lint for function argument alignment (Rich Trott) <a href="https://github.com/nodejs/node/pull/6390">#6390</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/91ab769940"><code>91ab769940</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>util</strong>: truncate inspect array and typed array (James M Snell) <a href="https://github.com/nodejs/node/pull/6334">#6334</a></li>
<li>[<a href="https://github.com/nodejs/node/commit/0bca959617"><code>0bca959617</code></a>] - <strong>(SEMVER-MINOR)</strong> <strong>util</strong>: fix inspecting of proxy objects (James M Snell) <a href="https://github.com/nodejs/node/pull/6465">#6465</a></li>
</ul>
<p>Windows 32-bit Installer: <a href="https://nodejs.org/dist/v6.1.0/node-v6.1.0-x86.msi">https://nodejs.org/dist/v6.1.0/node-v6.1.0-x86.msi</a><br>
Windows 64-bit Installer: <a href="https://nodejs.org/dist/v6.1.0/node-v6.1.0-x64.msi">https://nodejs.org/dist/v6.1.0/node-v6.1.0-x64.msi</a><br>
Windows 32-bit Binary: <a href="https://nodejs.org/dist/v6.1.0/win-x86/node.exe">https://nodejs.org/dist/v6.1.0/win-x86/node.exe</a><br>
Windows 64-bit Binary: <a href="https://nodejs.org/dist/v6.1.0/win-x64/node.exe">https://nodejs.org/dist/v6.1.0/win-x64/node.exe</a><br>
Mac OS X 64-bit Installer: <a href="https://nodejs.org/dist/v6.1.0/node-v6.1.0.pkg">https://nodejs.org/dist/v6.1.0/node-v6.1.0.pkg</a><br>
Mac OS X 64-bit Binary: <a href="https://nodejs.org/dist/v6.1.0/node-v6.1.0-darwin-x64.tar.gz">https://nodejs.org/dist/v6.1.0/node-v6.1.0-darwin-x64.tar.gz</a><br>
Linux 32-bit Binary: <a href="https://nodejs.org/dist/v6.1.0/node-v6.1.0-linux-x86.tar.xz">https://nodejs.org/dist/v6.1.0/node-v6.1.0-linux-x86.tar.xz</a><br>
Linux 64-bit Binary: <a href="https://nodejs.org/dist/v6.1.0/node-v6.1.0-linux-x64.tar.xz">https://nodejs.org/dist/v6.1.0/node-v6.1.0-linux-x64.tar.xz</a><br>
Linux PPC LE 64-bit Binary: <a href="https://nodejs.org/dist/v6.1.0/node-v6.1.0-linux-ppc64le.tar.xz">https://nodejs.org/dist/v6.1.0/node-v6.1.0-linux-ppc64le.tar.xz</a><br>
SunOS 32-bit Binary: <a href="https://nodejs.org/dist/v6.1.0/node-v6.1.0-sunos-x86.tar.xz">https://nodejs.org/dist/v6.1.0/node-v6.1.0-sunos-x86.tar.xz</a><br>
SunOS 64-bit Binary: <a href="https://nodejs.org/dist/v6.1.0/node-v6.1.0-sunos-x64.tar.xz">https://nodejs.org/dist/v6.1.0/node-v6.1.0-sunos-x64.tar.xz</a><br>
ARMv6 32-bit Binary: <a href="https://nodejs.org/dist/v6.1.0/node-v6.1.0-linux-armv6l.tar.xz">https://nodejs.org/dist/v6.1.0/node-v6.1.0-linux-armv6l.tar.xz</a><br>
ARMv7 32-bit Binary: <a href="https://nodejs.org/dist/v6.1.0/node-v6.1.0-linux-armv7l.tar.xz">https://nodejs.org/dist/v6.1.0/node-v6.1.0-linux-armv7l.tar.xz</a><br>
ARMv8 64-bit Binary: <a href="https://nodejs.org/dist/v6.1.0/node-v6.1.0-linux-arm64.tar.xz">https://nodejs.org/dist/v6.1.0/node-v6.1.0-linux-arm64.tar.xz</a><br>
Source Code: <a href="https://nodejs.org/dist/v6.1.0/node-v6.1.0.tar.gz">https://nodejs.org/dist/v6.1.0/node-v6.1.0.tar.gz</a><br>
Other release files: <a href="https://nodejs.org/dist/v6.1.0/">https://nodejs.org/dist/v6.1.0/</a><br>
Documentation: <a href="https://nodejs.org/docs/v6.1.0/api/">https://nodejs.org/docs/v6.1.0/api/</a></p>
<p>Shasums (GPG signing hash: SHA512, file hash: SHA256):</p>
<pre><code>-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

481aeab001b6c79589daf3e1f8f5b9ad7021a3979b49fd842313010482ff7b56  node-v6.1.0-darwin-x64.tar.gz
a599974633ffbc8a3964699080d4f369297198eac4e18a990f801a6b42b742e6  node-v6.1.0-darwin-x64.tar.xz
9419fce25791df7afd27d173a1148ef9f53c349cd9a2e8d9bdac5276d80a1bb5  node-v6.1.0-headers.tar.gz
8e35bf983def6f7bc321fbabcd3bf5e7909e30417cb9c43f31171a63cf664b10  node-v6.1.0-headers.tar.xz
87670387877d1cbe36642970e3ca84a77121d3200771b80ec2286bc261e060f7  node-v6.1.0-linux-arm64.tar.gz
7fde2a7b2b7d96d14d3f3f655474434af38583b471973ba3ff07ae29a1f0d821  node-v6.1.0-linux-arm64.tar.xz
aeff5e4b77fba25feb19ec4739116373234e93aff0d2c9662c4ebd87fa4b34ae  node-v6.1.0-linux-armv6l.tar.gz
856120ca6e03501c29fadced18f737487092ad75845247e8e2feea30b97f53c9  node-v6.1.0-linux-armv6l.tar.xz
55d7a2e5071b13db6fe5d952dc5ee5d2223ae4a0de2f2c2d7a68d65e1cfa377b  node-v6.1.0-linux-armv7l.tar.gz
ee9583ee94c602b63d758edb564e944a24d4cadac38bde95b25e4995362297e8  node-v6.1.0-linux-armv7l.tar.xz
bca98e8a4f5c11dee9eb4fec2bd0a42c1f8a921863bba417fc88c7274a0c0c04  node-v6.1.0-linux-ppc64le.tar.gz
5b2b85bbc2f289d3f6c458fa77cdf7c74befccfade02c7a287c6992addcbf3f0  node-v6.1.0-linux-ppc64le.tar.xz
ce46dd0188181b70661b9162feffdbd8a860cb75cb6661c37d6d61982e3f72c5  node-v6.1.0-linux-x64.tar.gz
6ae9d08f8c606810e17db6a6c9ff2689072e27682a0e1875cbb75effa8ae3d5e  node-v6.1.0-linux-x64.tar.xz
07d6f0b11b98c876f2d029722696da6cc9b93a2ce6b34abb7a517e0afb04fb34  node-v6.1.0-linux-x86.tar.gz
41b34eef859fb0d39498bc900778f5e692fe4367b7d1588df3ae1f1f98bc4330  node-v6.1.0-linux-x86.tar.xz
b58bfcbce73dc04342a465dca92d802bf5e437f7da224b6157d6c87fe805c5f6  node-v6.1.0.pkg
d7cbb0bfe0915ac7bdb37e87ea7145f6e86ef2943e77f306c648e47d3d33c898  node-v6.1.0-sunos-x64.tar.gz
930596fb6ddb8aedc3c358002786f207f30b3d7f0b377766d5017452ea36196f  node-v6.1.0-sunos-x64.tar.xz
38ec9537ab2fbf6112365b3a291ebe962d14b384b474e54fa77227b2e98624c9  node-v6.1.0-sunos-x86.tar.gz
254c080b41db83979d200c4ab28fbbc667b8528d9e260ce9f2599293bb17e4a0  node-v6.1.0-sunos-x86.tar.xz
9e67ef0b8611e16e6e311eccf0489a50fe76ceebeea3023ef4f51be647ae4bc3  node-v6.1.0.tar.gz
c7940301917232527490a166df78f9d3d58e70e10fd502f73889d936763cfe84  node-v6.1.0.tar.xz
b32b1105da5c08023976717d9aaeb0e3ba93d09f170aa3d81ad8ddfb0abfbdd4  node-v6.1.0-x64.msi
26b762f6066feeae59107c064eeaf70019880cb113279d51e35dff46c6c81be2  node-v6.1.0-x86.msi
a0f1fa671ae76821dd1098fb67bbc9601bdf5229a1dac5585441d279765d0d20  win-x64/node.exe
135215ad3ff8774386d6525e69d62ca3a24da5a7962f1464e1b5758b58583eb3  win-x64/node.lib
a6391706a5ac17bcf9f8ff5fb9c0359b6787dcfd45a6089f91d36edb49738c69  win-x86/node.exe
17608b03161b6fd3e956ff0a53da0a0d483a3860fa236eb8e1eaf205158916fc  win-x86/node.lib
-----BEGIN PGP SIGNATURE-----
Comment: GPGTools - https://gpgtools.org

iQIcBAEBCgAGBQJXLLHaAAoJEEX17r2BPa6O3C4P+wXrjmby0cm/K1HLpmCtitMu
4aMpt1/MlVVZjlCrm/vtvt56L7KznU0BgMq0DjJDvmWuWOs6wwWHj9SF69BvsHXV
A9tKuVHSKq/S9dFqv+Ucz3L+ITYCZSpZubKCfUbRPvCMTl4Aw1lF+JwCzpiB9GCx
kxJdN+HVuHJonmcSku1V/lP/zSylkHWGC4YvRwmRcZMIPedTfvYtIWHzRXIpMwjN
WD2BSiHGqqh0U2KFe+drwrZZEYjLfS0urwgIsdnS+BIfDATaMyP5W++iKZ1G9QvD
bbi+Lyye9jnJNhJvFUHA5df33jn3avfBMFgsToFqWw+nmLTrJyco+kaEBSSnhD5l
sl1S/Vc7jrZgX1Hz4iiPM8t6c8h1hH/eck5HuqQcP114x/EP3LPlKGdy3MRZcvWO
VCrI9A3zQitbmiwNC1kml6S50/XrRJL/bLrBPqlg2p42t/LMsq6KKfUDzE9ibooR
O7gxMd6Bk4B2R8RQtF0uQ6X/KQK4U65RKRjgQznMK+eQfJ/z4D1i1lr2APp8QwiS
UXMG4zLnJThb7G6z1Z2HtS5RL+0LuOaFj5MH4ft7PTAhvaVybGeGb+qv5s2Hhva/
RAvkB/wyx/3uCLAJDfDYSH+lFu9hak0+eLY59Qv9hVziTqIOXSTuxiumVAu/gWhS
MWdeZRgt8pObdLGV1eaW
=/0Ti
-----END PGP SIGNATURE-----
</code></pre>]]></description><link>https://nodejs.org/en/blog/release/v6.1.0</link><guid isPermaLink="true">https://nodejs.org/en/blog/release/v6.1.0</guid><dc:creator><![CDATA[Jeremiah Senkpiel]]></dc:creator><pubDate>Thu, 05 May 2016 23:07:06 GMT</pubDate></item></channel></rss>