Skip to content

Commit

Permalink
2013.03.01, Version 0.9.10 (Unstable)
Browse files Browse the repository at this point in the history
* V8: downgrade 3.14.5

* openssl: update to 1.0.1e

* darwin: Make process.title work properly (Ben Noordhuis)

* fs: Support mode/flag options to read/append/writeFile (isaacs)

* stream: _read() no longer takes a callback (isaacs)

* stream: Add stream.unshift(chunk) (isaacs)

* stream: remove lowWaterMark feature (isaacs)

* net: omit superfluous 'connect' event (Ben Noordhuis)

* build, windows: disable SEH (Ben Noordhuis)

* core: remove errno global (Ben Noordhuis)

* core: Remove the nextTick for running the main file (isaacs)

* core: Mark exit() calls with status codes (isaacs)

* core: Fix debug signal handler race condition lock (isaacs)

* crypto: clear error stack (Ben Noordhuis)

* test: optionally set common.PORT via env variable (Timothy J Fontaine)

* path: Throw TypeError on non-string args to path.resolve/join (isaacs, Arianit Uka)

* crypto: fix uninitialized memory access in openssl (Ben Noordhuis)
  • Loading branch information
isaacs committed Mar 1, 2013
1 parent 687522c commit 8339240
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 7 deletions.
2 changes: 2 additions & 0 deletions AUTHORS
Expand Up @@ -416,3 +416,5 @@ Sugendran Ganess <sugendran@sugendran.net>
Jim Schubert <james.schubert@gmail.com>
Victor Costan <costan@gmail.com>
Timothy J Fontaine <tjfontaine@gmail.com>
Arianit Uka <arianit@bigvikinggames.com>
Andrei Sedoi <bsnote@gmail.com>
49 changes: 43 additions & 6 deletions ChangeLog
@@ -1,14 +1,38 @@
2013.02.25, Version 0.8.21 (Stable)
2013.03.01, Version 0.9.10 (Unstable)

* http: Do not free the wrong parser on socket close (isaacs)
* V8: downgrade 3.14.5

* http: Handle hangup writes more gently (isaacs)
* openssl: update to 1.0.1e

* zlib: fix assert on bad input (Ben Noordhuis)
* darwin: Make process.title work properly (Ben Noordhuis)

* test: add TAP output to the test runner (Timothy J Fontaine)
* fs: Support mode/flag options to read/append/writeFile (isaacs)

* unix: Handle EINPROGRESS from domain sockets (Ben Noordhuis)
* stream: _read() no longer takes a callback (isaacs)

* stream: Add stream.unshift(chunk) (isaacs)

* stream: remove lowWaterMark feature (isaacs)

* net: omit superfluous 'connect' event (Ben Noordhuis)

* build, windows: disable SEH (Ben Noordhuis)

* core: remove errno global (Ben Noordhuis)

* core: Remove the nextTick for running the main file (isaacs)

* core: Mark exit() calls with status codes (isaacs)

* core: Fix debug signal handler race condition lock (isaacs)

* crypto: clear error stack (Ben Noordhuis)

* test: optionally set common.PORT via env variable (Timothy J Fontaine)

* path: Throw TypeError on non-string args to path.resolve/join (isaacs, Arianit Uka)

* crypto: fix uninitialized memory access in openssl (Ben Noordhuis)


2013.02.19, Version 0.9.10 (Unstable)
Expand Down Expand Up @@ -400,6 +424,19 @@
* Fix #3521 Make process.env more like a regular Object (isaacs)


2013.02.25, Version 0.8.21 (Stable), 530d8c05d4c546146f18e5ba811d7eb3b7b7c0c5

* http: Do not free the wrong parser on socket close (isaacs)

* http: Handle hangup writes more gently (isaacs)

* zlib: fix assert on bad input (Ben Noordhuis)

* test: add TAP output to the test runner (Timothy J Fontaine)

* unix: Handle EINPROGRESS from domain sockets (Ben Noordhuis)


2013.02.15, Version 0.8.20 (Stable), e10c75579b536581ddd7ae4e2c3bf8a9d550d343

* npm: Upgrade to v1.2.11
Expand Down
2 changes: 1 addition & 1 deletion src/node_version.h
Expand Up @@ -30,7 +30,7 @@
# define NODE_TAG ""
#endif

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit 8339240

Please sign in to comment.