Commit 787a343 1 parent 6d85da1 commit 787a343 Copy full SHA for 787a343
File tree 4 files changed +26
-7
lines changed
4 files changed +26
-7
lines changed Original file line number Diff line number Diff line change 1
- 2011.03.26, Version 0.4.4 (stable)
1
+ 2011.04.01, Version 0.4.5 (stable)
2
+
3
+ * Fix listener leak in stream.pipe() (Mikeal Rogers)
4
+
5
+ * Retain buffers in fs.read/write() GH-814 (Jorge Chamorro Bieling)
6
+
7
+ * TLS performance improvements
8
+
9
+ * SlowBuffer.prototype.slice bug GH-843
10
+
11
+ * process.stderr.write should return true
12
+
13
+ * Immediate pause/resume race condition GH-535 (isaacs)
14
+
15
+ * Set default host header properly GH-721 (isaacs)
16
+
17
+ * Upgrade V8 to 3.1.8.8
18
+
19
+
20
+ 2011.03.26, Version 0.4.4 (stable), 25122b986a90ba0982697b7abcb0158c302a1019
2
21
3
22
* CryptoStream.end shouldn't throw if not writable GH-820
4
23
Original file line number Diff line number Diff line change 24
24
< li > < a href ="#download "> Download</ a > </ li >
25
25
< li > < a href ="https://github.com/joyent/node/raw/master/ChangeLog "> ChangeLog</ a > </ li >
26
26
< li > < a href ="#about "> About</ a > </ li >
27
- < li > < a href ="http://nodejs.org/docs/v0.4.4 /api "> v0.4.4 docs</ a > </ li >
27
+ < li > < a href ="http://nodejs.org/docs/v0.4.5 /api "> v0.4.5 docs</ a > </ li >
28
28
< br />
29
29
< li > < B > < a href ="https://github.com/joyent/node/wiki "> Wiki</ a > </ B > </ li >
30
30
< li > < B > < a href ="http://blog.nodejs.org/ "> Blog</ a > </ B > </ li >
@@ -106,9 +106,9 @@ <h2 id="download">Download</h2>
106
106
</ p >
107
107
108
108
< p >
109
- 2011.03.26
110
- < a href ="http://nodejs.org/dist/node-v0.4.4 .tar.gz "> node-v0.4.4 .tar.gz</ a >
111
- (< a href ="http://nodejs.org/docs/v0.4.4 /api/index.html "> Documentation</ a > )
109
+ 2011.04.01
110
+ < a href ="http://nodejs.org/dist/node-v0.4.5 .tar.gz "> node-v0.4.5 .tar.gz</ a >
111
+ (< a href ="http://nodejs.org/docs/v0.4.5 /api/index.html "> Documentation</ a > )
112
112
</ p >
113
113
114
114
< 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 5
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 @@ -870,7 +870,7 @@ def build(bld):
870
870
, 'CPPFLAGS' : " " .join (program .env ["CPPFLAGS" ]).replace ('"' , '\\ "' )
871
871
, 'LIBFLAGS' : " " .join (program .env ["LIBFLAGS" ]).replace ('"' , '\\ "' )
872
872
, 'PREFIX' : safe_path (program .env ["PREFIX" ])
873
- , 'VERSION' : '0.4.4 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
873
+ , 'VERSION' : '0.4.5 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
874
874
}
875
875
return x
876
876
You can’t perform that action at this time.
0 commit comments