Skip to content
This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Commit 782277f

Browse files
committed
2012.05.28, Version 0.7.9 (unstable)
* Upgrade V8 to 3.11.1 * Upgrade npm to 1.1.23 * uv: rework reference counting scheme (Ben Noordhuis) * uv: add interface for joining external event loops (Bert Belder) * repl, readline: Handle Ctrl+Z and SIGCONT better (Nathan Rajlich) * fs: 64bit offsets for fs calls (Igor Zinkovsky) * fs: add sync open flags 'rs' and 'rs+' (Kevin Bowman) * windows: enable creating directory junctions with fs.symlink (Igor Zinkovsky, Bert Belder) * windows: fix fs.lstat to properly detect symlinks. (Igor Zinkovsky) * Fix #3270 Escape url.parse delims (isaacs) * http: make http.get() accept a URL (Adam Malcontenti-Wilson) * Cleanup vm module memory leakage (Marcel Laverdet) * Optimize writing strings with Socket.write (Bert Belder) * add support for CESU-8 and UTF-16LE encodings (koichik) * path: add path.sep to get the path separator. (Yi, EungJun) * net, http: add backlog parameter to .listen() (Erik Dubbelboer) * debugger: support mirroring Date objects (Fedor Indutny) * addon: add AtExit() function (Ben Noordhuis) * net: signal localAddress bind failure in connect (Brian Schroeder) * util: handle non-string return value in .inspect() (Alex Kocharin)
1 parent 8a411ba commit 782277f

File tree

3 files changed

+53
-2
lines changed

3 files changed

+53
-2
lines changed

AUTHORS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,3 +306,11 @@ Dane Springmeyer <dane@dbsgeo.com>
306306
Sambasiva Suda <sambasivarao@gmail.com>
307307
Vincent Voyer <v@fasterize.com>
308308
ANDO Takahiro <takahiro.ando@gmail.com>
309+
Brian Schroeder <bts@gmail.com>
310+
J. Lee Coltrane <lee@projectmastermind.com>
311+
Javier Hernández <jhernandez@emergya.com>
312+
James Koval <james.ross.koval@gmail.com>
313+
Kevin Gadd <kevin.gadd@gmail.com>
314+
Ray Solomon <raybsolomon@gmail.com>
315+
Kevin Bowman <github@magicmonkey.org>
316+
Jeroen Janssen <jeroen.janssen@gmail.com>

ChangeLog

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,47 @@
1-
2012.04.18, Version 0.7.8, (unstable)
1+
2012.05.28, Version 0.7.9 (unstable)
2+
3+
* Upgrade V8 to 3.11.1
4+
5+
* Upgrade npm to 1.1.23
6+
7+
* uv: rework reference counting scheme (Ben Noordhuis)
8+
9+
* uv: add interface for joining external event loops (Bert Belder)
10+
11+
* repl, readline: Handle Ctrl+Z and SIGCONT better (Nathan Rajlich)
12+
13+
* fs: 64bit offsets for fs calls (Igor Zinkovsky)
14+
15+
* fs: add sync open flags 'rs' and 'rs+' (Kevin Bowman)
16+
17+
* windows: enable creating directory junctions with fs.symlink (Igor Zinkovsky, Bert Belder)
18+
19+
* windows: fix fs.lstat to properly detect symlinks. (Igor Zinkovsky)
20+
21+
* Fix #3270 Escape url.parse delims (isaacs)
22+
23+
* http: make http.get() accept a URL (Adam Malcontenti-Wilson)
24+
25+
* Cleanup vm module memory leakage (Marcel Laverdet)
26+
27+
* Optimize writing strings with Socket.write (Bert Belder)
28+
29+
* add support for CESU-8 and UTF-16LE encodings (koichik)
30+
31+
* path: add path.sep to get the path separator. (Yi, EungJun)
32+
33+
* net, http: add backlog parameter to .listen() (Erik Dubbelboer)
34+
35+
* debugger: support mirroring Date objects (Fedor Indutny)
36+
37+
* addon: add AtExit() function (Ben Noordhuis)
38+
39+
* net: signal localAddress bind failure in connect (Brian Schroeder)
40+
41+
* util: handle non-string return value in .inspect() (Alex Kocharin)
42+
43+
44+
2012.04.18, Version 0.7.8 (unstable), c2b47097c0b483552efc1947c6766fa1128600b6
245

346
* Upgrade V8 to 3.9.24.9
447

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define NODE_MAJOR_VERSION 0
3030
#define NODE_MINOR_VERSION 7
3131
#define NODE_PATCH_VERSION 9
32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)