mirror of https://github.com/nodejs/node.git
2013.02.19, Version 0.9.10 (Unstable)
* V8: Upgrade to 3.15.11.15 * npm: Upgrade to 1.2.12 * fs: Change default WriteStream config, increase perf (isaacs) * process: streamlining tick callback logic (Trevor Norris) * stream_wrap, udp_wrap: add read-only fd property (Ben Noordhuis) * buffer: accept negative indices in Buffer#slice() (Ben Noordhuis) * tls: Cycle data when underlying socket drains (isaacs) * stream: read(0) should not always trigger _read(n,cb) (isaacs) * stream: Empty strings/buffers do not signal EOF any longer (isaacs) * crypto: improve cipher/decipher error messages (Ben Noordhuis) * net: Respect the 'readable' flag on sockets (isaacs) * net: don't suppress ECONNRESET (Ben Noordhuis) * typed arrays: copy Buffer in typed array constructor (Ben Noordhuis) * typed arrays: make DataView throw on non-ArrayBuffer (Ben Noordhuis) * windows: MSI installer enhancements (Scott Blomquist, Jim Schubert)pull/24504/head v0.9.10
parent
4911a30803
commit
54d20ffba0
2
AUTHORS
2
AUTHORS
|
@ -413,3 +413,5 @@ Rick Yakubowski <richard@orpha-systems.com>
|
|||
Dan Kohn <dan@dankohn.com>
|
||||
Andy Burke <aburke@bitflood.org>
|
||||
Sugendran Ganess <sugendran@sugendran.net>
|
||||
Jim Schubert <james.schubert@gmail.com>
|
||||
Victor Costan <costan@gmail.com>
|
||||
|
|
35
ChangeLog
35
ChangeLog
|
@ -1,4 +1,37 @@
|
|||
2013.02.07, Version 0.9.9 (Unstable)
|
||||
2013.02.19, Version 0.9.10 (Unstable)
|
||||
|
||||
* V8: Upgrade to 3.15.11.15
|
||||
|
||||
* npm: Upgrade to 1.2.12
|
||||
|
||||
* fs: Change default WriteStream config, increase perf (isaacs)
|
||||
|
||||
* process: streamlining tick callback logic (Trevor Norris)
|
||||
|
||||
* stream_wrap, udp_wrap: add read-only fd property (Ben Noordhuis)
|
||||
|
||||
* buffer: accept negative indices in Buffer#slice() (Ben Noordhuis)
|
||||
|
||||
* tls: Cycle data when underlying socket drains (isaacs)
|
||||
|
||||
* stream: read(0) should not always trigger _read(n,cb) (isaacs)
|
||||
|
||||
* stream: Empty strings/buffers do not signal EOF any longer (isaacs)
|
||||
|
||||
* crypto: improve cipher/decipher error messages (Ben Noordhuis)
|
||||
|
||||
* net: Respect the 'readable' flag on sockets (isaacs)
|
||||
|
||||
* net: don't suppress ECONNRESET (Ben Noordhuis)
|
||||
|
||||
* typed arrays: copy Buffer in typed array constructor (Ben Noordhuis)
|
||||
|
||||
* typed arrays: make DataView throw on non-ArrayBuffer (Ben Noordhuis)
|
||||
|
||||
* windows: MSI installer enhancements (Scott Blomquist, Jim Schubert)
|
||||
|
||||
|
||||
2013.02.07, Version 0.9.9 (Unstable), 4b9f0d190cd6b22853caeb0e07145a98ce1d1d7f
|
||||
|
||||
* tls: port CryptoStream to streams2 (Fedor Indutny)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue