File tree 4 files changed +46
-6
lines changed
4 files changed +46
-6
lines changed Original file line number Diff line number Diff line change
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
+
1
41
2011.04.22, Version 0.4.7 (stable)
2
42
3
43
* Don't emit error on ECONNRESET from read() #670
Original file line number Diff line number Diff line change 26
26
< li > < a href ="#download "> Download</ a > </ li >
27
27
< li > < a href ="https://github.com/joyent/node/raw/v0.4/ChangeLog "> ChangeLog</ a > </ li >
28
28
< 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 >
30
30
< br />
31
31
< li > < a href ="https://github.com/joyent/node/wiki "> Wiki</ a > </ li >
32
32
< li > < a href ="http://blog.nodejs.org/ "> Blog</ a > </ li >
@@ -108,9 +108,9 @@ <h2 id="download">Download</h2>
108
108
</ p >
109
109
110
110
< 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 > )
114
114
</ p >
115
115
116
116
< p > Historical: < a href ="http://nodejs.org/dist "> versions</ a > , < a href ="http://nodejs.org/docs "> docs</ a > </ p >
Original file line number Diff line number Diff line change 28
28
#define NODE_MAJOR_VERSION 0
29
29
#define NODE_MINOR_VERSION 4
30
30
#define NODE_PATCH_VERSION 8
31
- #define NODE_VERSION_IS_RELEASE 0
31
+ #define NODE_VERSION_IS_RELEASE 1
32
32
33
33
#ifndef NODE_STRINGIFY
34
34
#define NODE_STRINGIFY (n ) NODE_STRINGIFY_HELPER(n)
Original file line number Diff line number Diff line change @@ -854,7 +854,7 @@ def build(bld):
854
854
, 'CPPFLAGS' : " " .join (program .env ["CPPFLAGS" ]).replace ('"' , '\\ "' )
855
855
, 'LIBFLAGS' : " " .join (program .env ["LIBFLAGS" ]).replace ('"' , '\\ "' )
856
856
, '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.
858
858
}
859
859
return x
860
860
You can’t perform that action at this time.
0 commit comments