Skip to content

Commit e6ce259

Browse files
committed
2012.08.28, Version 0.9.1 (Unstable)
* buffer: Add Buffer.isEncoding(enc) to test for valid encoding values (isaacs) * Raise UV_ECANCELED on premature close. (Ben Noordhuis) * Remove c-ares from libuv, move to a top-level node dependency (Bert Belder) * ref/unref for all HandleWraps, timers, servers, and sockets (Timothy J Fontaine) * addon: remove node-waf, superseded by node-gyp (Ben Noordhuis) * child_process: emit error on exec failure (Ben Noordhuis) * cluster: do not use internal server API (Andreas Madsen) * constants: add O_DIRECT (Ian Babrou) * crypto: add sync interface to crypto.pbkdf2() (Ben Noordhuis) * darwin: emulate fdatasync() (Fedor Indutny) * dgram: make .bind() always asynchronous (Ben Noordhuis) * events: Make emitter.listeners() side-effect free (isaacs, Joe Andaverde) * fs: Throw early on invalid encoding args (isaacs) * fs: fix naming of truncate/ftruncate functions (isaacs) * http: bubble up parser errors to ClientRequest (Brian White) * linux: improve cpuinfo parser on ARM and MIPS (Ben Noordhuis) * net: add support for IPv6 addresses ending in :: (Josh Erickson) * net: support Server.listen(Pipe) (Andreas Madsen) * node: don't scan add-on for "init" symbol (Ben Noordhuis) * remove process.uvCounters() (Ben Noordhuis) * repl: console writes to repl rather than process stdio (Nathan Rajlich) * timers: implement setImmediate (Timothy J Fontaine) * tls: fix segfault in pummel/test-tls-ci-reneg-attack (Ben Noordhuis) * tools: Move gyp addon tools to node-gyp (Nathan Rajlich) * unix: preliminary signal handler support (Ben Noordhuis) * unix: remove dependency on ev_child (Ben Noordhuis) * unix: work around darwin bug, don't poll() on pipe (Fedor Indutny) * util: Formally deprecate util.pump() (Ben Noordhuis) * windows: make active and closing handle state independent (Bert Belder) * windows: report spawn errors to the exit callback (Bert Belder) * windows: signal handling support with uv_signal_t (Bert Belder)
1 parent 4cfd64e commit e6ce259

File tree

2 files changed

+67
-2
lines changed

2 files changed

+67
-2
lines changed

ChangeLog

Lines changed: 66 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,69 @@
1-
2012.07.20, Version 0.9.0 (Unstable)
1+
2012.08.28, Version 0.9.1 (Unstable)
2+
3+
* buffer: Add Buffer.isEncoding(enc) to test for valid encoding values (isaacs)
4+
5+
* Raise UV_ECANCELED on premature close. (Ben Noordhuis)
6+
7+
* Remove c-ares from libuv, move to a top-level node dependency (Bert Belder)
8+
9+
* ref/unref for all HandleWraps, timers, servers, and sockets (Timothy J Fontaine)
10+
11+
* addon: remove node-waf, superseded by node-gyp (Ben Noordhuis)
12+
13+
* child_process: emit error on exec failure (Ben Noordhuis)
14+
15+
* cluster: do not use internal server API (Andreas Madsen)
16+
17+
* constants: add O_DIRECT (Ian Babrou)
18+
19+
* crypto: add sync interface to crypto.pbkdf2() (Ben Noordhuis)
20+
21+
* darwin: emulate fdatasync() (Fedor Indutny)
22+
23+
* dgram: make .bind() always asynchronous (Ben Noordhuis)
24+
25+
* events: Make emitter.listeners() side-effect free (isaacs, Joe Andaverde)
26+
27+
* fs: Throw early on invalid encoding args (isaacs)
28+
29+
* fs: fix naming of truncate/ftruncate functions (isaacs)
30+
31+
* http: bubble up parser errors to ClientRequest (Brian White)
32+
33+
* linux: improve cpuinfo parser on ARM and MIPS (Ben Noordhuis)
34+
35+
* net: add support for IPv6 addresses ending in :: (Josh Erickson)
36+
37+
* net: support Server.listen(Pipe) (Andreas Madsen)
38+
39+
* node: don't scan add-on for "init" symbol (Ben Noordhuis)
40+
41+
* remove process.uvCounters() (Ben Noordhuis)
42+
43+
* repl: console writes to repl rather than process stdio (Nathan Rajlich)
44+
45+
* timers: implement setImmediate (Timothy J Fontaine)
46+
47+
* tls: fix segfault in pummel/test-tls-ci-reneg-attack (Ben Noordhuis)
48+
49+
* tools: Move gyp addon tools to node-gyp (Nathan Rajlich)
50+
51+
* unix: preliminary signal handler support (Ben Noordhuis)
52+
53+
* unix: remove dependency on ev_child (Ben Noordhuis)
54+
55+
* unix: work around darwin bug, don't poll() on pipe (Fedor Indutny)
56+
57+
* util: Formally deprecate util.pump() (Ben Noordhuis)
58+
59+
* windows: make active and closing handle state independent (Bert Belder)
60+
61+
* windows: report spawn errors to the exit callback (Bert Belder)
62+
63+
* windows: signal handling support with uv_signal_t (Bert Belder)
64+
65+
66+
2012.07.20, Version 0.9.0 (Unstable), f9b237f478c372fd55e4590d7399dcd8f25f3603
267

368
* punycode: update to v1.1.1 (Mathias Bynens)
469

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#define NODE_MAJOR_VERSION 0
2626
#define NODE_MINOR_VERSION 9
2727
#define NODE_PATCH_VERSION 1
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)