Skip to content

Commit 7dd22c2

Browse files
committed
Bump to v0.4.8
1 parent 80b0225 commit 7dd22c2

File tree

4 files changed

+46
-6
lines changed

4 files changed

+46
-6
lines changed

ChangeLog

+40
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,43 @@
1+
2011.05.20, Version 0.4.8 (stable)
2+
3+
* #974 Properly report traceless errors (isaacs)
4+
5+
* #983 Better JSON.parse error detection in REPL (isaacs)
6+
7+
* #836 Agent socket errors bubble up to req only if req exists
8+
9+
* #1041 Fix event listener leak check timing (koichik)
10+
11+
* #1038 Fix dns.resolve() with 'PTR' throws Error: Unknown type "PTR"
12+
(koichik)
13+
14+
* #1073 Share SSL context between server connections (Fedor Indutny)
15+
16+
* Disable compression with OpenSSL. Improves memory perf.
17+
18+
* Implement os.totalmem() and os.freemem() for SunOS (Alexandre Marangone)
19+
20+
* Fix a special characters in URL regression (isaacs)
21+
22+
* Fix idle timeouts in HTTPS (Felix Geisendörfer)
23+
24+
* SlowBuffer.write() with 'ucs2' throws ReferenceError. (koichik)
25+
26+
* http.ServerRequest 'close' sometimes gets an error argument
27+
(Felix Geisendörfer)
28+
29+
* Doc improvements
30+
31+
* cleartextstream.destroy() should close(2) the socket. Previously was being
32+
mapped to a shutdown(2) syscall.
33+
34+
* No longer compile out asserts and debug statements in normal build.
35+
36+
* Debugger improvements.
37+
38+
* Upgrade V8 to 3.1.8.16.
39+
40+
141
2011.04.22, Version 0.4.7 (stable)
242

343
* Don't emit error on ECONNRESET from read() #670

doc/index.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<li><a href="#download">Download</a></li>
2727
<li><a href="https://github.com/joyent/node/raw/v0.4/ChangeLog">ChangeLog</a></li>
2828
<li><a href="#about">About</a></li>
29-
<li><a href="http://nodejs.org/docs/v0.4.7/api">v0.4.7 docs</a></li>
29+
<li><a href="http://nodejs.org/docs/v0.4.8/api">v0.4.8 docs</a></li>
3030
<br/>
3131
<li><a href="https://github.com/joyent/node/wiki">Wiki</a></li>
3232
<li><a href="http://blog.nodejs.org/">Blog</a></li>
@@ -108,9 +108,9 @@ <h2 id="download">Download</h2>
108108
</p>
109109

110110
<p>
111-
2011.04.22
112-
<a href="http://nodejs.org/dist/node-v0.4.7.tar.gz">node-v0.4.7.tar.gz</a>
113-
(<a href="http://nodejs.org/docs/v0.4.7/api/index.html">Documentation</a>)
111+
2011.05.20
112+
<a href="http://nodejs.org/dist/node-v0.4.8.tar.gz">node-v0.4.8.tar.gz</a>
113+
(<a href="http://nodejs.org/docs/v0.4.8/api/index.html">Documentation</a>)
114114
</p>
115115

116116
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#define NODE_MAJOR_VERSION 0
2929
#define NODE_MINOR_VERSION 4
3030
#define NODE_PATCH_VERSION 8
31-
#define NODE_VERSION_IS_RELEASE 0
31+
#define NODE_VERSION_IS_RELEASE 1
3232

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

wscript

+1-1
Original file line numberDiff line numberDiff line change
@@ -854,7 +854,7 @@ def build(bld):
854854
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
855855
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
856856
, 'PREFIX' : safe_path(program.env["PREFIX"])
857-
, 'VERSION' : '0.4.7' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
857+
, 'VERSION' : '0.4.8' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
858858
}
859859
return x
860860

0 commit comments

Comments
 (0)