Skip to content

Commit d5a189a

Browse files
committed
2012.01.06, Version 0.6.7 (stable)
* V8 hash collision fix (Breaks MIPS) (Bert Belder, Erik Corry) * Upgrade V8 to 3.6.6.15 * Upgrade npm to 1.1.0-beta-10 (isaacs) * many doc updates (Ben Noordhuis, Jeremy Martin, koichik, Dave Irvine, Seong-Rak Choi, Shannen, Adam Malcontenti-Wilson, koichik) * Fix segfault in node_http_parser.cc * dgram, timers: fix memory leaks (Ben Noordhuis, Yoshihiro Kukuchi) * repl: fix repl.start not passing the `ignoreUndefined` arg (Damon Oehlman) * #1980: Socket.pause null reference when called on a closed Stream (koichik) * #2263: XMLHttpRequest piped in a writable file stream hang (koichik) * #2069: http resource leak (koichik) * buffer.readInt global pollution fix (Phil Sung) * timers: fix performance regression (Ben Noordhuis) * #2308, #2246: node swallows openssl error on request (koichik) * #2114: timers: remove _idleTimeout from item in .unenroll() (James Hartig) * #2379: debugger: Request backtrace w/o refs (Fedor Indutny) * simple DTrace ustack helper (Dave Pacheco) * crypto: rewrite HexDecode without snprintf (Roman Shtylman) * crypto: don't ignore DH init errors (Ben Noordhuis)
1 parent d84a6ba commit d5a189a

File tree

6 files changed

+61
-12
lines changed

6 files changed

+61
-12
lines changed

AUTHORS

+9
Original file line numberDiff line numberDiff line change
@@ -244,3 +244,12 @@ Kyle Robinson Young <[email protected]>
244244
Tim Oxley <[email protected]>
245245
Ingmar Runge <[email protected]>
246246
Russ Bradberry <[email protected]>
247+
Andreas Madsen <[email protected]>
248+
Adam Malcontenti-Wilson <[email protected]>
249+
James Hartig <[email protected]>
250+
Shannen Saez <[email protected]>
251+
Seong-Rak Choi <[email protected]>
252+
Dave Irvine <[email protected]>
253+
Ju-yeong Park <[email protected]>
254+
Phil Sung <[email protected]>
255+
Damon Oehlman <[email protected]>

ChangeLog

+41-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,44 @@
1-
2011.12.14, Version 0.6.6 (stable)
1+
2012.01.06, Version 0.6.7 (stable)
2+
3+
* V8 hash collision fix (Breaks MIPS) (Bert Belder, Erik Corry)
4+
5+
* Upgrade V8 to 3.6.6.15
6+
7+
* Upgrade npm to 1.1.0-beta-10 (isaacs)
8+
9+
* many doc updates (Ben Noordhuis, Jeremy Martin, koichik, Dave Irvine,
10+
Seong-Rak Choi, Shannen, Adam Malcontenti-Wilson, koichik)
11+
12+
* Fix segfault in node_http_parser.cc
13+
14+
* dgram, timers: fix memory leaks (Ben Noordhuis, Yoshihiro Kukuchi)
15+
16+
* repl: fix repl.start not passing the `ignoreUndefined` arg (Damon Oehlman)
17+
18+
* #1980: Socket.pause null reference when called on a closed Stream (koichik)
19+
20+
* #2263: XMLHttpRequest piped in a writable file stream hang (koichik)
21+
22+
* #2069: http resource leak (koichik)
23+
24+
* buffer.readInt global pollution fix (Phil Sung)
25+
26+
* timers: fix performance regression (Ben Noordhuis)
27+
28+
* #2308, #2246: node swallows openssl error on request (koichik)
29+
30+
* #2114: timers: remove _idleTimeout from item in .unenroll() (James Hartig)
31+
32+
* #2379: debugger: Request backtrace w/o refs (Fedor Indutny)
33+
34+
* simple DTrace ustack helper (Dave Pacheco)
35+
36+
* crypto: rewrite HexDecode without snprintf (Roman Shtylman)
37+
38+
* crypto: don't ignore DH init errors (Ben Noordhuis)
39+
40+
41+
2011.12.14, Version 0.6.6
242

343
* npm update to 1.1.0-beta-4 (Isaac Z. Schlueter)
444

doc/index.html

+7-7
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,15 @@ <h2>Node.js in the Industry</h2>
7676
<a href="#" id="download-close">X</a>
7777
<img id="download-logo" src="download-logo.png" alt="node.js">
7878
<ul id="installers" class="clearfix">
79-
<li><a href="http://nodejs.org/dist/v0.6.6/node-v0.6.6.msi">Windows Installer</a><br>node-v0.6.6.msi</li>
80-
<li><a href="http://nodejs.org/dist/v0.6.6/node-v0.6.6.pkg">Macintosh Installer</a><br>node-v0.6.6.pkg</li>
81-
<li id="source"><a href="http://nodejs.org/dist/v0.6.6/node-v0.6.6.tar.gz">Source Code</a><br>node-v0.6.6.tar.gz</li>
79+
<li><a href="http://nodejs.org/dist/v0.6.7/node-v0.6.7.msi">Windows Installer</a><br>node-v0.6.7.msi</li>
80+
<li><a href="http://nodejs.org/dist/v0.6.7/node-v0.6.7.pkg">Macintosh Installer</a><br>node-v0.6.7.pkg</li>
81+
<li id="source"><a href="http://nodejs.org/dist/v0.6.7/node-v0.6.7.tar.gz">Source Code</a><br>node-v0.6.7.tar.gz</li>
8282
</ul>
8383
<ul id="documentation">
84-
<li><a href="https://raw.github.com/joyent/node/v0.6.6/ChangeLog">Change Log</a></li>
85-
<li><a href="http://nodejs.org/docs/v0.6.6/api/index.html">Documentation</a></li>
86-
<li><a href="http://nodejs.org/dist/v0.6.6">Other release files</a></li>
87-
<li><a href="https://raw.github.com/joyent/node/v0.6.6/LICENSE">License</a></li>
84+
<li><a href="https://raw.github.com/joyent/node/v0.6.7/ChangeLog">Change Log</a></li>
85+
<li><a href="http://nodejs.org/docs/v0.6.7/api/index.html">Documentation</a></li>
86+
<li><a href="http://nodejs.org/dist/v0.6.7">Other release files</a></li>
87+
<li><a href="https://raw.github.com/joyent/node/v0.6.7/LICENSE">License</a></li>
8888
<li><a href="https://github.com/joyent/node">Git Repository</a></li>
8989
<li><a href="https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager">Installing
9090
with a Package Manager</a>

doc/logos/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ <h2>Desktop Background</h2>
6060
</div>
6161
</div>
6262
<div id="footer">
63-
<p>Copyright <a href="http://joyent.com">Joyent, Inc</a>., Node.js is a <a href="trademark-policy.pdf">trademark of Joyent, Inc</a>., <a href="https://raw.github.com/joyent/node/v0.6.6/LICENSE">View License</a></p>
63+
<p>Copyright <a href="http://joyent.com">Joyent, Inc</a>., Node.js is a <a href="trademark-policy.pdf">trademark of Joyent, Inc</a>., <a href="https://raw.github.com/joyent/node/v0.6.7/LICENSE">View License</a></p>
6464
</div>
6565

6666

doc/template.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8">
5-
<title>{{section}}Node.js v0.6.6 Manual &amp; Documentation</title>
5+
<title>{{section}}Node.js v0.6.7 Manual &amp; Documentation</title>
66
<link rel="stylesheet" href="assets/style.css">
77
<link rel="stylesheet" href="assets/sh.css">
88
<link rel="canonical" href="http://nodejs.org/docs/latest/api/{{filename}}.html">
99
</head>
1010
<body>
1111
<div id="container">
1212
<header>
13-
<h1>Node.js v0.6.6 Manual &amp; Documentation</h1>
13+
<h1>Node.js v0.6.7 Manual &amp; Documentation</h1>
1414
<div id="gtoc">
1515
<p><a href="index.html">Index</a> | <a href="all.html">View on single page</a></p>
1616
</div>

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define NODE_MAJOR_VERSION 0
3030
#define NODE_MINOR_VERSION 6
3131
#define NODE_PATCH_VERSION 7
32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)