Skip to content

Commit 6e20558

Browse files
committed
2012.09.17, Version 0.9.2 (Unstable)
* http_parser: upgrade to ad3b631 * openssl: upgrade 1.0.1c * darwin: use FSEvents to watch directory changes (Fedor Indutny) * unix: support missing API on NetBSD (Shigeki Ohtsu) * unix: fix EMFILE busy loop (Ben Noordhuis) * windows: un-break writable tty handles (Bert Belder) * windows: map WSAESHUTDOWN to UV_EPIPE (Bert Belder) * windows: make spawn with custom environment work again (Bert Belder) * windows: map ERROR_DIRECTORY to UV_ENOENT (Bert Belder) * tls, https: validate server certificate by default (Ben Noordhuis) * tls, https: throw exception on missing key/cert (Ben Noordhuis) * tls: async session storage (Fedor Indutny) * installer: don't install header files (Ben Noordhuis) * buffer: implement Buffer.prototype.toJSON() (Nathan Rajlich) * buffer: added support for writing NaN and Infinity (koichik) * http: make http.ServerResponse emit 'end' (Ben Noordhuis) * build: ./configure --ninja (Ben Noordhuis, Timothy J Fontaine) * installer: fix --without-npm (Ben Noordhuis) * cli: make -p equivalent to -pe (Ben Noordhuis) * url: Go much faster by using Url class (isaacs)
1 parent 9423aa9 commit 6e20558

File tree

3 files changed

+52
-2
lines changed

3 files changed

+52
-2
lines changed

AUTHORS

+7
Original file line numberDiff line numberDiff line change
@@ -357,3 +357,10 @@ Gil Pedersen <[email protected]>
357357
Tyler Neylon <[email protected]>
358358
Golo Roden <[email protected]>
359359
Ron Korving <[email protected]>
360+
Brandon Wilson <[email protected]>
361+
Ian Babrou <[email protected]>
362+
Bearice Ren <[email protected]>
363+
Ankur Oberoi <[email protected]>
364+
Atsuya Takagi <[email protected]>
365+
Pooya Karimian <[email protected]>
366+
Frédéric Germain <[email protected]>

ChangeLog

+44-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,47 @@
1-
2012.08.28, Version 0.9.1 (Unstable)
1+
2012.09.17, Version 0.9.2 (Unstable)
2+
3+
* http_parser: upgrade to ad3b631
4+
5+
* openssl: upgrade 1.0.1c
6+
7+
* darwin: use FSEvents to watch directory changes (Fedor Indutny)
8+
9+
* unix: support missing API on NetBSD (Shigeki Ohtsu)
10+
11+
* unix: fix EMFILE busy loop (Ben Noordhuis)
12+
13+
* windows: un-break writable tty handles (Bert Belder)
14+
15+
* windows: map WSAESHUTDOWN to UV_EPIPE (Bert Belder)
16+
17+
* windows: make spawn with custom environment work again (Bert Belder)
18+
19+
* windows: map ERROR_DIRECTORY to UV_ENOENT (Bert Belder)
20+
21+
* tls, https: validate server certificate by default (Ben Noordhuis)
22+
23+
* tls, https: throw exception on missing key/cert (Ben Noordhuis)
24+
25+
* tls: async session storage (Fedor Indutny)
26+
27+
* installer: don't install header files (Ben Noordhuis)
28+
29+
* buffer: implement Buffer.prototype.toJSON() (Nathan Rajlich)
30+
31+
* buffer: added support for writing NaN and Infinity (koichik)
32+
33+
* http: make http.ServerResponse emit 'end' (Ben Noordhuis)
34+
35+
* build: ./configure --ninja (Ben Noordhuis, Timothy J Fontaine)
36+
37+
* installer: fix --without-npm (Ben Noordhuis)
38+
39+
* cli: make -p equivalent to -pe (Ben Noordhuis)
40+
41+
* url: Go much faster by using Url class (isaacs)
42+
43+
44+
2012.08.28, Version 0.9.1 (Unstable), e6ce259d2caf338fec991c2dd447de763ce99ab7
245

346
* buffer: Add Buffer.isEncoding(enc) to test for valid encoding values (isaacs)
447

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