File tree 4 files changed +49
-7
lines changed
4 files changed +49
-7
lines changed Original file line number Diff line number Diff line change 1
- 2011.02.19, Version 0.4.1 (stable)
1
+ 2011.03.02, Version 0.4.2 (stable)
2
+
3
+ * Improve docs.
4
+
5
+ * Fix process.on edge case with signal event (Alexis Sellier)
6
+
7
+ * Pragma HTTP header comma separation
8
+
9
+ * In addition to 'aborted' emit 'close' from incoming requests
10
+ (Felix Geisendörfer)
11
+
12
+ * Fix memleak in vm.runInNewContext
13
+
14
+ * Do not cache modules that throw exceptions (Felix Geisendörfer)
15
+
16
+ * Build system changes for libnode (Aria Stewart)
17
+
18
+ * Read up the prototype of the 'env' object. (Nathan Rajlich)
19
+
20
+ * Add 'close' and 'aborted' events to Agent responses
21
+
22
+ * http: fix missing 'drain' events (Russell Haering)
23
+
24
+ * Fix process.stdout.end() throws ENOTSOCK error. (Koichi Kobayashi)
25
+
26
+ * REPL bug fixes (isaacs)
27
+
28
+ * node_modules folders should be highest priority (isaacs)
29
+
30
+ * URL parse more safely (isaacs)
31
+
32
+ * Expose errno with a string for dns/cares (Felix Geisendörfer)
33
+
34
+ * Fix tty.setWindowSize
35
+
36
+ * spawn: setuid after chdir (isaacs)
37
+
38
+ * SIGUSR1 should break the VM without delay
39
+
40
+ * Upgrade V8 to 3.1.8.
41
+
42
+
43
+ 2011.02.19, Version 0.4.1 (stable), e8aef84191bc2c1ba2bcaa54f30aabde7f03769b
2
44
3
45
* Fixed field merging with progressive fields on writeHead()
4
46
(TJ Holowaychuk)
Original file line number Diff line number Diff line change 20
20
< li > < a href ="#download "> Download</ a > </ li >
21
21
< li > < a href ="https://github.com/joyent/node/raw/master/ChangeLog "> ChangeLog</ a > </ li >
22
22
< li > < a href ="#about "> About</ a > </ li >
23
- < li > < a href ="http://nodejs.org/docs/v0.4.1 /api "> v0.4.1 docs</ a > </ li >
23
+ < li > < a href ="http://nodejs.org/docs/v0.4.2 /api "> v0.4.2 docs</ a > </ li >
24
24
< br />
25
25
< li > < B > < a href ="https://github.com/joyent/node/wiki "> Wiki</ a > </ B > </ li >
26
26
</ ol >
@@ -91,9 +91,9 @@ <h2 id="download">Download</h2>
91
91
</ p >
92
92
93
93
< p >
94
- 2011.02.19
95
- < a href ="http://nodejs.org/dist/node-v0.4.1 .tar.gz "> node-v0.4.1 .tar.gz</ a >
96
- (< a href ="http://nodejs.org/docs/v0.4.1 /api/index.html "> Documentation</ a > )
94
+ 2011.03.02
95
+ < a href ="http://nodejs.org/dist/node-v0.4.2 .tar.gz "> node-v0.4.2 .tar.gz</ a >
96
+ (< a href ="http://nodejs.org/docs/v0.4.2 /api/index.html "> Documentation</ a > )
97
97
</ p >
98
98
99
99
< 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 7
7
#define NODE_MAJOR_VERSION 0
8
8
#define NODE_MINOR_VERSION 4
9
9
#define NODE_PATCH_VERSION 2
10
- #define NODE_VERSION_IS_RELEASE 0
10
+ #define NODE_VERSION_IS_RELEASE 1
11
11
12
12
#ifndef NODE_STRINGIFY
13
13
#define NODE_STRINGIFY (n ) NODE_STRINGIFY_HELPER(n)
Original file line number Diff line number Diff line change @@ -843,7 +843,7 @@ def build(bld):
843
843
, 'CPPFLAGS' : " " .join (program .env ["CPPFLAGS" ]).replace ('"' , '\\ "' )
844
844
, 'LIBFLAGS' : " " .join (program .env ["LIBFLAGS" ]).replace ('"' , '\\ "' )
845
845
, 'PREFIX' : safe_path (program .env ["PREFIX" ])
846
- , 'VERSION' : '0.4.1 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
846
+ , 'VERSION' : '0.4.2 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
847
847
}
848
848
return x
849
849
You can’t perform that action at this time.
0 commit comments