Skip to content

Commit d86d83c

Browse files
committed
2012.12.21, Version 0.9.4 (Unstable)
* streams: Update all streaming interfaces to use new classes (isaacs) * node: remove idle gc (Ben Noordhuis) * http: protect against response splitting attacks (Bert Belder) * fs: Raise error when null bytes detected in paths (isaacs) * fs: fix 'object is not a function' callback errors (Ben Noordhuis) * fs: add autoClose=true option to fs.createReadStream (Farid Neshat) * process: add getgroups(), setgroups(), initgroups() (Ben Noordhuis) * openssl: optimized asm code on x86 and x64 (Bert Belder) * crypto: fix leak in GetPeerCertificate (Fedor Indutny) * add systemtap support (Jan Wynholds) * windows: add ETW and PerfCounters support (Scott Blomquist) * windows: fix normalization of UNC paths (Bert Belder) * crypto: fix ssl error handling (Sergey Kholodilov) * node: remove eio-emul.h (Ben Noordhuis) * os: add os.endianness() function (Nathan Rajlich) * readline: don't emit "line" events with a trailing 'n' char (Nathan Rajlich) * build: add configure option to generate xcode build files (Timothy J Fontaine) * build: allow linking against system libuv, cares, http_parser (Stephen Gallagher) * typed arrays: add slice() support to ArrayBuffer (Anthony Pesch) * debugger: exit and kill child on SIGTERM or SIGHUP (Fedor Indutny) * url: url.format escapes delimiters in path and query (J. Lee Coltrane)
1 parent 9829814 commit d86d83c

File tree

3 files changed

+58
-2
lines changed

3 files changed

+58
-2
lines changed

AUTHORS

+11
Original file line numberDiff line numberDiff line change
@@ -382,3 +382,14 @@ Olivier Lalonde <[email protected]>
382382
Francois Marier <[email protected]>
383383
Trevor Norris <[email protected]>
384384
Kai Sasaki Lewuathe <[email protected]>
385+
Brandon Philips <[email protected]>
386+
Frederico Silva <[email protected]>
387+
Jan Wynholds <[email protected]>
388+
Girish Ramakrishnan <[email protected]>
389+
Anthony Pesch <[email protected]>
390+
Stephen Gallagher <[email protected]>
391+
Sergey Kholodilov <[email protected]>
392+
Tim Kuijsten <[email protected]>
393+
Michael Axiak <[email protected]>
394+
Chad Rhyner <[email protected]>
395+
Nicolas Chambrier <[email protected]>

ChangeLog

+46-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,49 @@
1-
2012.10.24, Version 0.9.3 (Unstable)
1+
2012.12.21, Version 0.9.4 (Unstable)
2+
3+
* streams: Update all streaming interfaces to use new classes (isaacs)
4+
5+
* node: remove idle gc (Ben Noordhuis)
6+
7+
* http: protect against response splitting attacks (Bert Belder)
8+
9+
* fs: Raise error when null bytes detected in paths (isaacs)
10+
11+
* fs: fix 'object is not a function' callback errors (Ben Noordhuis)
12+
13+
* fs: add autoClose=true option to fs.createReadStream (Farid Neshat)
14+
15+
* process: add getgroups(), setgroups(), initgroups() (Ben Noordhuis)
16+
17+
* openssl: optimized asm code on x86 and x64 (Bert Belder)
18+
19+
* crypto: fix leak in GetPeerCertificate (Fedor Indutny)
20+
21+
* add systemtap support (Jan Wynholds)
22+
23+
* windows: add ETW and PerfCounters support (Scott Blomquist)
24+
25+
* windows: fix normalization of UNC paths (Bert Belder)
26+
27+
* crypto: fix ssl error handling (Sergey Kholodilov)
28+
29+
* node: remove eio-emul.h (Ben Noordhuis)
30+
31+
* os: add os.endianness() function (Nathan Rajlich)
32+
33+
* readline: don't emit "line" events with a trailing '\n' char (Nathan Rajlich)
34+
35+
* build: add configure option to generate xcode build files (Timothy J Fontaine)
36+
37+
* build: allow linking against system libuv, cares, http_parser (Stephen Gallagher)
38+
39+
* typed arrays: add slice() support to ArrayBuffer (Anthony Pesch)
40+
41+
* debugger: exit and kill child on SIGTERM or SIGHUP (Fedor Indutny)
42+
43+
* url: url.format escapes delimiters in path and query (J. Lee Coltrane)
44+
45+
46+
2012.10.24, Version 0.9.3 (Unstable), 1ed4c6776e4f52956918b70565502e0f8869829d
247

348
* V8: Upgrade to 3.13.7.4
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 9
2727
#define NODE_PATCH_VERSION 4
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)