This repository was archived by the owner on Apr 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +46
-8
lines changed Expand file tree Collapse file tree 5 files changed +46
-8
lines changed Original file line number Diff line number Diff line change @@ -152,4 +152,8 @@ Theo Schlossnagle <jesus@omniti.com>
152
152
Kai Chen <kaichenxyz@gmail.com>
153
153
Daniel C <333222@gmail.com>
154
154
Mihai Călin Bazon <mihai@bazon.net>
155
-
155
+ Ali Farhadi <a.farhadi@gmail.com>
156
+ Daniel Ennis <aikar@aikar.co>
157
+ Carter Allen <CarterA@opt-6.com>
158
+ Greg Hughes <greg@ghughes.com>
159
+ David Trejo <david.daniel.trejo@gmail.com>
Original file line number Diff line number Diff line change 1
- 2011.01.21, Version 0.3.6 (unstable)
1
+ 2011.01.27, Version 0.3.7 (unstable)
2
+
3
+ * Expose agent in http and https client. (Mikeal Rogers)
4
+
5
+ * Fix bug in http request's end method. (Ali Farhadi)
6
+
7
+ * MinGW: better net support (Bert Belder)
8
+
9
+ * fs.open should set FD_CLOEXEC
10
+
11
+ * DTrace probes (Bryan Cantrill)
12
+
13
+ * REPL fixes and improvements (isaacs, Bert Belder)
14
+
15
+ * Fix many bugs with legacy http.Client interface
16
+
17
+ * Deprecate process.assert. Use require('assert').ok
18
+
19
+ * Add callback parameter to socket.setTimeout(). (Ali Farhadi)
20
+
21
+ * Fixing bug in http request default encoding (Ali Farhadi)
22
+
23
+ * require: A module ID with a trailing slash must be a dir.
24
+ (isaacs)
25
+
26
+ * Add ext_key_usage to getPeerCertificate (Greg Hughes)
27
+
28
+ * Error when child_process.exec hits maxBuffer.
29
+
30
+ * Fix option parsing in tls.connect()
31
+
32
+ * Upgrade to V8 3.0.10
33
+
34
+
35
+ 2011.01.21, Version 0.3.6 (unstable), bb3e71466e5240626d9d21cf791fe43e87d90011
2
36
3
37
* REPL and other improvements on MinGW (Bert Belder)
4
38
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/ry/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.3.6 /api "> v0.3.6 docs</ a > </ li >
23
+ < li > < a href ="http://nodejs.org/docs/v0.3.7 /api "> v0.3.7 docs</ a > </ li >
24
24
< li > < a href ="http://nodejs.org/docs/v0.2.6/api.html "> v0.2.6 docs</ a > </ li >
25
25
< br />
26
26
< li > < B > < a href ="https://github.com/ry/node/wiki "> Wiki</ a > </ B > </ li >
@@ -96,9 +96,9 @@ <h2 id="download">Download</h2>
96
96
</ p >
97
97
98
98
< p >
99
- Unstable: 2011.01.21
100
- < a href ="http://nodejs.org/dist/node-v0.3.6 .tar.gz "> node-v0.3.6 .tar.gz</ a >
101
- (< a href ="http://nodejs.org/docs/v0.3.6 /api/index.html "> Documentation</ a > )
99
+ Unstable: 2011.01.27
100
+ < a href ="http://nodejs.org/dist/node-v0.3.7 .tar.gz "> node-v0.3.7 .tar.gz</ a >
101
+ (< a href ="http://nodejs.org/docs/v0.3.7 /api/index.html "> Documentation</ a > )
102
102
</ p >
103
103
104
104
< 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 3
9
9
#define NODE_PATCH_VERSION 7
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 @@ -775,7 +775,7 @@ def build(bld):
775
775
, 'CPPFLAGS' : " " .join (program .env ["CPPFLAGS" ]).replace ('"' , '\\ "' )
776
776
, 'LIBFLAGS' : " " .join (program .env ["LIBFLAGS" ]).replace ('"' , '\\ "' )
777
777
, 'PREFIX' : safe_path (program .env ["PREFIX" ])
778
- , 'VERSION' : '0.3.2 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
778
+ , 'VERSION' : '0.3.7 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
779
779
}
780
780
return x
781
781
You can’t perform that action at this time.
0 commit comments