Skip to content

Commit c2b4709

Browse files
committed
2012.04.18, Version 0.7.8, (unstable)
* Upgrade V8 to 3.9.24.9 * Upgrade OpenSSL to 1.0.0f * Upgrade npm to 1.1.18 * Show licenses in Binary installers * Domains (isaacs) * readline: rename "end" to "close" (Nathan Rajlich) * tcp: make getsockname() return address family as string (Shigeki Ohtsu) * http, https: fix .setTimeout() (ssuda) * os: add cross platform EOL character (Mustansir Golawala) * typed arrays: unexport SizeOfArrayElementForType() (Aaron Jacobs) * net: honor 'enable' flag in .setNoDelay() (Ben Noordhuis) * child_process: emit error when .kill fails (Andreas Madsen) * gyp: fix 'argument list too long' build error (Ben Noordhuis) * fs.WriteStream: Handle modifications to fs.open (isaacs) * repl, readline: Handle newlines better (Nathan Rajlich, Nathan Friedly) * build: target OSX 10.5 when building on darwin (Nathan Rajlich) * Fix #3052 Handle errors properly in zlib (isaacs) * build: add support for DTrace and postmortem (Dave Pacheco) * core: add reusable Slab allocator (Ben Noordhuis)
1 parent 7b3fb22 commit c2b4709

File tree

3 files changed

+48
-2
lines changed

3 files changed

+48
-2
lines changed

AUTHORS

+5
Original file line numberDiff line numberDiff line change
@@ -295,3 +295,8 @@ Johannes Wüller <[email protected]>
295295
Erik Lundin <[email protected]>
296296
Mikael Bourges-Sevenier <[email protected]>
297297
Yosef Dinerstein <[email protected]>
298+
Nathan Friedly <[email protected]>
299+
Aaron Jacobs <[email protected]>
300+
Mustansir Golawala <[email protected]>
301+
fukayatsu <[email protected]>
302+
Domenic Denicola <[email protected]>

ChangeLog

+42-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,45 @@
1-
2012.03.30, Version 0.7.7 (unstable)
1+
2012.04.18, Version 0.7.8, (unstable)
2+
3+
* Upgrade V8 to 3.9.24.9
4+
5+
* Upgrade OpenSSL to 1.0.0f
6+
7+
* Upgrade npm to 1.1.18
8+
9+
* Show licenses in Binary installers
10+
11+
* Domains (isaacs)
12+
13+
* readline: rename "end" to "close" (Nathan Rajlich)
14+
15+
* tcp: make getsockname() return address family as string (Shigeki Ohtsu)
16+
17+
* http, https: fix .setTimeout() (ssuda)
18+
19+
* os: add cross platform EOL character (Mustansir Golawala)
20+
21+
* typed arrays: unexport SizeOfArrayElementForType() (Aaron Jacobs)
22+
23+
* net: honor 'enable' flag in .setNoDelay() (Ben Noordhuis)
24+
25+
* child_process: emit error when .kill fails (Andreas Madsen)
26+
27+
* gyp: fix 'argument list too long' build error (Ben Noordhuis)
28+
29+
* fs.WriteStream: Handle modifications to fs.open (isaacs)
30+
31+
* repl, readline: Handle newlines better (Nathan Rajlich, Nathan Friedly)
32+
33+
* build: target OSX 10.5 when building on darwin (Nathan Rajlich)
34+
35+
* Fix #3052 Handle errors properly in zlib (isaacs)
36+
37+
* build: add support for DTrace and postmortem (Dave Pacheco)
38+
39+
* core: add reusable Slab allocator (Ben Noordhuis)
40+
41+
42+
2012.03.30, Version 0.7.7 (unstable), 5cda2542fdb086f9fe5de889bea435a65e377dea
243

344
* Upgrade V8 to 3.9.24.7
445

src/node_version.h

+1-1
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 8
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)