Skip to content

Commit

Permalink
2013.05.13, Version 0.11.2 (Unstable)
Browse files Browse the repository at this point in the history
* uv: Upgrade to 0.11.2

* V8: Upgrade to 3.19.0

* npm: Upgrade to 1.2.21

* build: Makefile should respect configure --prefix (Timothy J Fontaine)

* cluster: use round-robin load balancing (Ben Noordhuis)

* debugger, cluster: each worker has new debug port (Miroslav Bajtoš)

* debugger: `restart` with custom debug port (Miroslav Bajtoš)

* debugger: breakpoints in scripts not loaded yet (Miroslav Bajtoš)

* event: EventEmitter#setMaxListeners() returns this (Sam Roberts)

* events: add EventEmitter.defaultMaxListeners (Ben Noordhuis)

* install: Support $(PREFIX) install target directory prefix (Olof Johansson)

* os: Include netmask in os.networkInterfaces() (Ben Kelly)

* path: add path.isAbsolute(path) (Ryan Doenges)

* stream: Guarantee ordering of 'finish' event (isaacs)

* streams: introduce .cork/.uncork/._writev (Fedor Indutny)

* vm: add support for timeout argument (Andrew Paprocki)
  • Loading branch information
isaacs committed May 13, 2013
1 parent 31e73a5 commit 5d3dc0e
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 12 deletions.
5 changes: 5 additions & 0 deletions AUTHORS
Expand Up @@ -447,3 +447,8 @@ Ryan Doenges <rhdoenges@gmail.com>
Sean Silva <chisophugis@gmail.com>
Miroslav Bajtoš <miro.bajtos@gmail.com>
Olof Johansson <olof@ethup.se>
Sam Roberts <vieuxtech@gmail.com>
Kevin Locke <kevin@kevinlocke.name>
Daniel Moore <polaris@northhorizon.net>
Robert Kowalski <rok@kowalski.gd>
Nick Sullivan <nick@sullivanflock.com>
59 changes: 48 additions & 11 deletions ChangeLog
@@ -1,25 +1,39 @@
2013.04.23, Version 0.10.5 (Stable)
2013.05.13, Version 0.11.2 (Unstable)

* uv: Upgrade to 0.10.5 (isaacs)
* uv: Upgrade to 0.11.2

* build: added support for Visual Studio 2012 (Miroslav Bajtoš)
* V8: Upgrade to 3.19.0

* http: Don't try to destroy nonexistent sockets (isaacs)
* npm: Upgrade to 1.2.21

* crypto: LazyTransform on properties, not methods (isaacs)
* build: Makefile should respect configure --prefix (Timothy J Fontaine)

* assert: put info in err.message, not err.name (Ryan Doenges)
* cluster: use round-robin load balancing (Ben Noordhuis)

* dgram: fix no address bind() (Ben Noordhuis)
* debugger, cluster: each worker has new debug port (Miroslav Bajtoš)

* handle_wrap: fix NULL pointer dereference (Ben Noordhuis)
* debugger: `restart` with custom debug port (Miroslav Bajtoš)

* os: fix unlikely buffer overflow in os.type() (Ben Noordhuis)
* debugger: breakpoints in scripts not loaded yet (Miroslav Bajtoš)

* stream: Fix unshift() race conditions (isaacs)
* event: EventEmitter#setMaxListeners() returns this (Sam Roberts)

* events: add EventEmitter.defaultMaxListeners (Ben Noordhuis)

* install: Support $(PREFIX) install target directory prefix (Olof Johansson)

2013.04.19, Version 0.11.1 (Unstable)
* os: Include netmask in os.networkInterfaces() (Ben Kelly)

* path: add path.isAbsolute(path) (Ryan Doenges)

* stream: Guarantee ordering of 'finish' event (isaacs)

* streams: introduce .cork/.uncork/._writev (Fedor Indutny)

* vm: add support for timeout argument (Andrew Paprocki)


2013.04.19, Version 0.11.1 (Unstable), 4babd2b46ebf9fbea2c9946af5cfae25a33b2b22

* V8: upgrade to 3.18.0

Expand All @@ -46,6 +60,29 @@
* zlib: allow passing options to convenience methods (Kyle Robinson Young)


2013.04.23, Version 0.10.5 (Stable), deeaf8fab978e3cadb364e46fb32dafdebe5f095

* uv: Upgrade to 0.10.5 (isaacs)

* build: added support for Visual Studio 2012 (Miroslav Bajtoš)

* http: Don't try to destroy nonexistent sockets (isaacs)

* crypto: LazyTransform on properties, not methods (isaacs)

* assert: put info in err.message, not err.name (Ryan Doenges)

* dgram: fix no address bind() (Ben Noordhuis)

* handle_wrap: fix NULL pointer dereference (Ben Noordhuis)

* os: fix unlikely buffer overflow in os.type() (Ben Noordhuis)

* stream: Fix unshift() race conditions (isaacs)




2013.04.11, Version 0.10.4 (Stable), 9712aa9f76073c30850b20a188b1ed12ffb74d17

* uv: Upgrade to 0.10.4
Expand Down
2 changes: 1 addition & 1 deletion src/node_version.h
Expand Up @@ -26,7 +26,7 @@
#define NODE_MINOR_VERSION 11
#define NODE_PATCH_VERSION 2

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_TAG
# define NODE_TAG ""
Expand Down

0 comments on commit 5d3dc0e

Please sign in to comment.