mirror of https://github.com/nodejs/node.git
parent
23d680bb85
commit
0914d33842
2
AUTHORS
2
AUTHORS
|
@ -72,3 +72,5 @@ Daniel Berger <code+node@dpbis.net>
|
|||
Paulo Matias <paulo.matias@usp.br>
|
||||
Peter Griess <pg@std.in>
|
||||
Jonathan Knezek <jdknezek@gmail.com>
|
||||
Jonathan Rentzsch <jwr.git@redshed.net>
|
||||
Elijah Insua <tmpvar@gmail.com>
|
||||
|
|
26
ChangeLog
26
ChangeLog
|
@ -1,4 +1,28 @@
|
|||
2010.05.06, Version 0.1.94
|
||||
2010.05.13, Version 0.1.95
|
||||
|
||||
* Change GC idle notify so that it runs alongside setInterval
|
||||
|
||||
* Install node_buffer.h on make install
|
||||
|
||||
* fs.readFile returns Buffer by default (Tim Caswell)
|
||||
|
||||
* Fix error reporting in child_process callbacks
|
||||
|
||||
* Better logic for testing if an argument is a port
|
||||
|
||||
* Improve error reporting (single line "node.js:176:9" errors)
|
||||
|
||||
* Bugfix: Some http responses being truncated (appeared in 0.1.94)
|
||||
|
||||
* Fix long standing net idle timeout bugs. Enable 2 minute timeout
|
||||
by default in HTTP servers.
|
||||
|
||||
* Add fs.fstat (Ben Noordhuis)
|
||||
|
||||
* Upgrade to V8 2.2.9
|
||||
|
||||
|
||||
2010.05.06, Version 0.1.94, f711d5343b29d1e72e87107315708e40951a7826
|
||||
|
||||
* Look in /usr/local/lib/node for modules, so that there's a way
|
||||
to install modules globally (Issac Schlueter)
|
||||
|
|
|
@ -295,7 +295,7 @@
|
|||
<body>
|
||||
|
||||
<div id="toc">
|
||||
<div id="toctitle">Node v0.1.94</div>
|
||||
<div id="toctitle">Node v0.1.95</div>
|
||||
<noscript>JavaScript must be enabled in your browser to display the table of contents.</noscript>
|
||||
</div>
|
||||
<div id='man'>
|
||||
|
|
|
@ -95,8 +95,8 @@ server.listen(7000, "localhost");</pre>
|
|||
<a href="http://github.com/ry/node/tree/master">git repo</a>
|
||||
</p>
|
||||
<p>
|
||||
2010.05.06
|
||||
<a href="http://nodejs.org/dist/node-v0.1.94.tar.gz">node-v0.1.94.tar.gz</a>
|
||||
2010.05.13
|
||||
<a href="http://nodejs.org/dist/node-v0.1.95.tar.gz">node-v0.1.95.tar.gz</a>
|
||||
</p>
|
||||
|
||||
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>
|
||||
|
|
Loading…
Reference in New Issue