This repository was archived by the owner on Apr 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +41
-7
lines changed Expand file tree Collapse file tree 4 files changed +41
-7
lines changed Original file line number Diff line number Diff line change 1
- 2011.05.20, Version 0.4.8 (stable)
1
+ 2011.06.29, Version 0.4.9 (stable)
2
+
3
+ * Improve documentation
4
+
5
+ * #1095 error handling bug in stream.pipe() (Felix Geisendörfer)
6
+
7
+ * #1097 Fix a few leaks in node_crypto.cc (Ben Noordhuis)
8
+
9
+ * #562 #1078 Parse file:// urls properly (Ryan Petrello)
10
+
11
+ * #880 Option to disable SSLv2 (Jérémy Lal)
12
+
13
+ * #1087 Disabling SSL compression disabled with early OpenSSLs.
14
+
15
+ * #1144 debugger: don't allow users to input non-valid commands
16
+ (Siddharth Mahendraker)
17
+
18
+ * Perf improvement for util.inherits
19
+
20
+ * #1166 Support for signature verification with RSA/DSA public keys
21
+ (Mark Cavage)
22
+
23
+ * #1177 Remove node_modules lookup optimization to better support
24
+ nested project structures (Mathias Buus)
25
+
26
+ * #1203 Add missing scope.Close to fs.sendfileSync
27
+
28
+ * #1187 Support multiple 'link' headers
29
+
30
+ * #1196 Fix -e/--eval can't load module from node_modules (Koichi Kobayashi)
31
+
32
+ * Upgrade V8 to 3.1.8.25, upgrade http-parser.
33
+
34
+
35
+ 2011.05.20, Version 0.4.8 (stable), 7dd22c26e4365698dc3efddf138c4d399cb912c8
2
36
3
37
* #974 Properly report traceless errors (isaacs)
4
38
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.8 /api "> v0.4.8 docs</ a > </ li >
29
+ < li > < a href ="http://nodejs.org/docs/v0.4.9 /api "> v0.4.9 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.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 > )
111
+ 2011.06.29
112
+ < a href ="http://nodejs.org/dist/node-v0.4.9 .tar.gz "> node-v0.4.9 .tar.gz</ a >
113
+ (< a href ="http://nodejs.org/docs/v0.4.9 /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 9
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 @@ -866,7 +866,7 @@ def build(bld):
866
866
, 'CPPFLAGS' : " " .join (program .env ["CPPFLAGS" ]).replace ('"' , '\\ "' )
867
867
, 'LIBFLAGS' : " " .join (program .env ["LIBFLAGS" ]).replace ('"' , '\\ "' )
868
868
, 'PREFIX' : safe_path (program .env ["PREFIX" ])
869
- , 'VERSION' : '0.4.8 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
869
+ , 'VERSION' : '0.4.9 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
870
870
}
871
871
return x
872
872
You can’t perform that action at this time.
0 commit comments