Skip to content

Commit b88c390

Browse files
committed
2012.09.11, Version 0.8.9 (Stable)
* v8: upgrade to 3.11.10.22 * GYP: upgrade to r1477 * npm: Upgrade to 1.1.61 * npm: Don't create world-writable files (isaacs) * windows: fix single-accept mode for shared server sockets (Bert Belder) * windows: fix uninitialized memory access in uv_update_time() (Bert Belder) * windows: don't throw when a signal handler is attached (Bert Belder) * unix: fix memory leak in udp (Ben Noordhuis) * unix: map errno ESPIPE (Ben Noordhuis) * unix, windows: fix memory corruption in fs-poll.c (Ben Noordhuis) * sunos: fix os.cpus() on x86_64 (Ben Noordhuis) * child process: fix processes with IPC channel don't emit 'close' (Bert Belder) * build: add a "--dest-os" option to force a gyp "flavor" (Nathan Rajlich) * build: set `process.platform` to "sunos" on SunOS (Nathan Rajlich) * build: fix `make -j` fails after `make clean` (Bearice Ren) * build: fix openssl configuration for "arm" builds (Nathan Rajlich) * tls: support unix domain socket/named pipe in tls.connect (Shigeki Ohtsu) * https: make https.get() accept a URL (koichik) * http: respect HTTP/1.0 TE header (Ben Noordhuis) * crypto, tls: Domainify setSNICallback, pbkdf2, randomBytes (Ben Noordhuis) * stream.pipe: Don't call destroy() unless it's a function (isaacs)
1 parent 1c2982b commit b88c390

File tree

2 files changed

+47
-2
lines changed

2 files changed

+47
-2
lines changed

ChangeLog

+46-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,49 @@
1-
2012.08.22, Version 0.8.8 (Stable)
1+
2012.09.11, Version 0.8.9 (Stable)
2+
3+
* v8: upgrade to 3.11.10.22
4+
5+
* GYP: upgrade to r1477
6+
7+
* npm: Upgrade to 1.1.61
8+
9+
* npm: Don't create world-writable files (isaacs)
10+
11+
* windows: fix single-accept mode for shared server sockets (Bert Belder)
12+
13+
* windows: fix uninitialized memory access in uv_update_time() (Bert Belder)
14+
15+
* windows: don't throw when a signal handler is attached (Bert Belder)
16+
17+
* unix: fix memory leak in udp (Ben Noordhuis)
18+
19+
* unix: map errno ESPIPE (Ben Noordhuis)
20+
21+
* unix, windows: fix memory corruption in fs-poll.c (Ben Noordhuis)
22+
23+
* sunos: fix os.cpus() on x86_64 (Ben Noordhuis)
24+
25+
* child process: fix processes with IPC channel don't emit 'close' (Bert Belder)
26+
27+
* build: add a "--dest-os" option to force a gyp "flavor" (Nathan Rajlich)
28+
29+
* build: set `process.platform` to "sunos" on SunOS (Nathan Rajlich)
30+
31+
* build: fix `make -j` fails after `make clean` (Bearice Ren)
32+
33+
* build: fix openssl configuration for "arm" builds (Nathan Rajlich)
34+
35+
* tls: support unix domain socket/named pipe in tls.connect (Shigeki Ohtsu)
36+
37+
* https: make https.get() accept a URL (koichik)
38+
39+
* http: respect HTTP/1.0 TE header (Ben Noordhuis)
40+
41+
* crypto, tls: Domainify setSNICallback, pbkdf2, randomBytes (Ben Noordhuis)
42+
43+
* stream.pipe: Don't call destroy() unless it's a function (isaacs)
44+
45+
46+
2012.08.22, Version 0.8.8 (Stable), a299c97bbc701f4d460e91214d7bfe7a9589d361
247

348
* V8: upgrade to 3.11.10.19
449

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#define NODE_MAJOR_VERSION 0
2626
#define NODE_MINOR_VERSION 8
2727
#define NODE_PATCH_VERSION 9
28-
#define NODE_VERSION_IS_RELEASE 0
28+
#define NODE_VERSION_IS_RELEASE 1
2929

3030
#ifndef NODE_STRINGIFY
3131
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)