From d86d83c75f6343b5368bb7bd328b4466a035e1d4 Mon Sep 17 00:00:00 2001 From: isaacs Date: Fri, 21 Dec 2012 11:27:11 -0800 Subject: 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) --- AUTHORS | 11 +++++++++++ ChangeLog | 47 ++++++++++++++++++++++++++++++++++++++++++++++- src/node_version.h | 2 +- 3 files changed, 58 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 79cc524bb86..141cfc21c56 100644 --- a/AUTHORS +++ b/AUTHORS @@ -382,3 +382,14 @@ Olivier Lalonde Francois Marier Trevor Norris Kai Sasaki Lewuathe +Brandon Philips +Frederico Silva +Jan Wynholds +Girish Ramakrishnan +Anthony Pesch +Stephen Gallagher +Sergey Kholodilov +Tim Kuijsten +Michael Axiak +Chad Rhyner +Nicolas Chambrier diff --git a/ChangeLog b/ChangeLog index 6ab54a166c2..041fd8517a4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,49 @@ -2012.10.24, Version 0.9.3 (Unstable) +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) + + +2012.10.24, Version 0.9.3 (Unstable), 1ed4c6776e4f52956918b70565502e0f8869829d * V8: Upgrade to 3.13.7.4 diff --git a/src/node_version.h b/src/node_version.h index 9cd7e8c9da5..2be4ed815b9 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -25,7 +25,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 9 #define NODE_PATCH_VERSION 4 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) -- cgit v1.2.3