Skip to content

Commit 1ed4c67

Browse files
committed
2012.10.24, Version 0.9.3 (Unstable)
* V8: Upgrade to 3.13.7.4 * crypto: Default to buffers instead of binary strings (isaacs, Fedor Indutny) * crypto: add getHashes() and getCiphers() (Ben Noordhuis) * unix: add custom thread pool, remove libeio (Ben Noordhuis) * util: make `inspect()` accept an "options" argument (Nathan Rajlich) * https: fix renegotation attack protection (Ben Noordhuis) * cluster: make 'listening' handler see actual port (Aaditya Bhatia) * windows: use USERPROFILE to get the user's home dir (Bert Belder) * path: add platform specific path delimiter (Paul Serby) * http: add response.headersSent property (Pavel Lang) * child_process: make .fork()'d child auto-exit (Ben Noordhuis) * events: add 'removeListener' event (Ben Noordhuis) * string_decoder: Add 'end' method, do base64 properly (isaacs) * buffer: include encoding value in exception when invalid (Ricky Ng-Adam) * http: make http.ServerResponse no longer emit 'end' (isaacs) * streams: fix pipe is destructed by 'end' from destination (koichik)
1 parent abf37c1 commit 1ed4c67

File tree

3 files changed

+38
-1
lines changed

3 files changed

+38
-1
lines changed

AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -376,3 +376,5 @@ Paul Serby <[email protected]>
376376
Andrew Paprocki <[email protected]>
377377
Ricky Ng-Adam <[email protected]>
378378
Aaditya Bhatia <[email protected]>
379+
Max Ogden <[email protected]>
380+
Igor Soarez <[email protected]>

ChangeLog

+35
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
2012.10.24, Version 0.9.3 (Unstable)
2+
3+
* V8: Upgrade to 3.13.7.4
4+
5+
* crypto: Default to buffers instead of binary strings (isaacs, Fedor Indutny)
6+
7+
* crypto: add getHashes() and getCiphers() (Ben Noordhuis)
8+
9+
* unix: add custom thread pool, remove libeio (Ben Noordhuis)
10+
11+
* util: make `inspect()` accept an "options" argument (Nathan Rajlich)
12+
13+
* https: fix renegotation attack protection (Ben Noordhuis)
14+
15+
* cluster: make 'listening' handler see actual port (Aaditya Bhatia)
16+
17+
* windows: use USERPROFILE to get the user's home dir (Bert Belder)
18+
19+
* path: add platform specific path delimiter (Paul Serby)
20+
21+
* http: add response.headersSent property (Pavel Lang)
22+
23+
* child_process: make .fork()'d child auto-exit (Ben Noordhuis)
24+
25+
* events: add 'removeListener' event (Ben Noordhuis)
26+
27+
* string_decoder: Add 'end' method, do base64 properly (isaacs)
28+
29+
* buffer: include encoding value in exception when invalid (Ricky Ng-Adam)
30+
31+
* http: make http.ServerResponse no longer emit 'end' (isaacs)
32+
33+
* streams: fix pipe is destructed by 'end' from destination (koichik)
34+
35+
136
2012.09.17, Version 0.9.2 (Unstable)
237

338
* http_parser: upgrade to ad3b631

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 3
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)