Skip to content

Commit 0bc273d

Browse files
committed
2012.09.25, Version 0.8.10 (Stable)
* npm: Upgrade to 1.1.62 * repl: make invalid RegExps throw in the REPL (Nathan Rajlich) * v8: loosen artificial mmap constraint (Bryan Cantrill) * process: fix setuid() and setgid() error reporting (Ben Noordhuis) * domain: Properly exit() on domain disposal (isaacs) * fs: fix watchFile() missing deletion events (Ben Noordhuis) * fs: fix assert in fs.watch() (Ben Noordhuis) * fs: don't segfault on deeply recursive stat() (Ben Noordhuis) * http: Remove timeout handler when data arrives (Frédéric Germain) * http: make the client "res" object gets the same domain as "req" (Nathan Rajlich) * windows: don't blow up when an invalid FD is used (Bert Belder) * unix: map EDQUOT to UV_ENOSPC (Charlie McConnell) * linux: improve /proc/cpuinfo parser (Ben Noordhuis) * win/tty: reset background brightness when color is set to default (Bert Belder) * unix: put child process stdio fds in blocking mode (Ben Noordhuis) * unix: fix EMFILE busy loop (Ben Noordhuis) * sunos: don't set TCP_KEEPALIVE (Ben Noordhuis) * tls: Use slab allocator for memory management (Fedor Indutny) * openssl: Use optimized assembly code for x86 and x64 (Bert Belder)
1 parent d05d6a3 commit 0bc273d

File tree

3 files changed

+51
-2
lines changed

3 files changed

+51
-2
lines changed

AUTHORS

+8
Original file line numberDiff line numberDiff line change
@@ -356,3 +356,11 @@ Gil Pedersen <[email protected]>
356356
Tyler Neylon <[email protected]>
357357
Golo Roden <[email protected]>
358358
Ron Korving <[email protected]>
359+
Brandon Wilson <[email protected]>
360+
Bearice Ren <[email protected]>
361+
Ankur Oberoi <[email protected]>
362+
Atsuya Takagi <[email protected]>
363+
Pooya Karimian <[email protected]>
364+
Frédéric Germain <[email protected]>
365+
Robin Lee <[email protected]>
366+
Adam Blackburn <[email protected]>

ChangeLog

+42-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,45 @@
1-
2012.09.11, Version 0.8.9 (Stable)
1+
2012.09.25, Version 0.8.10 (Stable)
2+
3+
* npm: Upgrade to 1.1.62
4+
5+
* repl: make invalid RegExps throw in the REPL (Nathan Rajlich)
6+
7+
* v8: loosen artificial mmap constraint (Bryan Cantrill)
8+
9+
* process: fix setuid() and setgid() error reporting (Ben Noordhuis)
10+
11+
* domain: Properly exit() on domain disposal (isaacs)
12+
13+
* fs: fix watchFile() missing deletion events (Ben Noordhuis)
14+
15+
* fs: fix assert in fs.watch() (Ben Noordhuis)
16+
17+
* fs: don't segfault on deeply recursive stat() (Ben Noordhuis)
18+
19+
* http: Remove timeout handler when data arrives (Frédéric Germain)
20+
21+
* http: make the client "res" object gets the same domain as "req" (Nathan Rajlich)
22+
23+
* windows: don't blow up when an invalid FD is used (Bert Belder)
24+
25+
* unix: map EDQUOT to UV_ENOSPC (Charlie McConnell)
26+
27+
* linux: improve /proc/cpuinfo parser (Ben Noordhuis)
28+
29+
* win/tty: reset background brightness when color is set to default (Bert Belder)
30+
31+
* unix: put child process stdio fds in blocking mode (Ben Noordhuis)
32+
33+
* unix: fix EMFILE busy loop (Ben Noordhuis)
34+
35+
* sunos: don't set TCP_KEEPALIVE (Ben Noordhuis)
36+
37+
* tls: Use slab allocator for memory management (Fedor Indutny)
38+
39+
* openssl: Use optimized assembly code for x86 and x64 (Bert Belder)
40+
41+
42+
2012.09.11, Version 0.8.9 (Stable), b88c3902b241cf934e75443b934f2033ad3915b1
243

344
* v8: upgrade to 3.11.10.22
445

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 10
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)