Skip to content

Commit dcfd032

Browse files
committed
2013.11.20, Version 0.11.9 (Unstable)
* uv: upgrade to v0.11.15 (Timothy J Fontaine) * v8: upgrade to 3.22.24.5 (Timothy J Fontaine) * buffer: remove warning when no encoding is passed (Trevor Norris) * build: make v8 use random seed for hash tables (Ben Noordhuis) * crypto: build with shared openssl without NPN (Ben Noordhuis) * crypto: update root certificates (Ben Noordhuis) * debugger: pass on v8 debug switches (Ben Noordhuis) * domain: use AsyncListener API (Trevor Norris) * fs: add recursive subdirectory support to fs.watch (Nick Simmons) * fs: make fs.watch() non-recursive by default (Ben Noordhuis) * http: cleanup freeSockets when socket destroyed (fengmk2) * http: force socket encoding to be null (isaacs) * http: make DELETE requests set `req.method` (Nathan Rajlich) * node: add AsyncListener support (Trevor Norris) * src: remove global HandleScope that hid memory leaks (Ben Noordhuis) * tls: add ECDH ciphers support (Erik Dubbelboer) * tls: do not default to 'localhost' servername (Fedor Indutny) * tls: more accurate wrapping of connecting socket (Fedor Indutny)
1 parent eaba941 commit dcfd032

File tree

3 files changed

+45
-1
lines changed

3 files changed

+45
-1
lines changed

AUTHORS

+5
Original file line numberDiff line numberDiff line change
@@ -493,3 +493,8 @@ Zarko Stankovic <[email protected]>
493493
Maxim Bogushevich <[email protected]>
494494
Phillip Alexander <[email protected]>
495495
Thom Seddon <[email protected]>
496+
Nick Simmons <[email protected]>
497+
Jacob Groundwater <[email protected]>
498+
Jackson Tian <[email protected]>
499+
500+

ChangeLog

+39
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,42 @@
1+
2013.11.20, Version 0.11.9 (Unstable)
2+
3+
* uv: upgrade to v0.11.15 (Timothy J Fontaine)
4+
5+
* v8: upgrade to 3.22.24.5 (Timothy J Fontaine)
6+
7+
* buffer: remove warning when no encoding is passed (Trevor Norris)
8+
9+
* build: make v8 use random seed for hash tables (Ben Noordhuis)
10+
11+
* crypto: build with shared openssl without NPN (Ben Noordhuis)
12+
13+
* crypto: update root certificates (Ben Noordhuis)
14+
15+
* debugger: pass on v8 debug switches (Ben Noordhuis)
16+
17+
* domain: use AsyncListener API (Trevor Norris)
18+
19+
* fs: add recursive subdirectory support to fs.watch (Nick Simmons)
20+
21+
* fs: make fs.watch() non-recursive by default (Ben Noordhuis)
22+
23+
* http: cleanup freeSockets when socket destroyed (fengmk2)
24+
25+
* http: force socket encoding to be null (isaacs)
26+
27+
* http: make DELETE requests set `req.method` (Nathan Rajlich)
28+
29+
* node: add AsyncListener support (Trevor Norris)
30+
31+
* src: remove global HandleScope that hid memory leaks (Ben Noordhuis)
32+
33+
* tls: add ECDH ciphers support (Erik Dubbelboer)
34+
35+
* tls: do not default to 'localhost' servername (Fedor Indutny)
36+
37+
* tls: more accurate wrapping of connecting socket (Fedor Indutny)
38+
39+
140
2013.10.30, Version 0.11.8 (Unstable), f8d86e24f3463c36f7f3f4c3b3ec779e5b6201e1
241

342
* uv: Upgrade to v0.11.14

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#define NODE_MINOR_VERSION 11
2727
#define NODE_PATCH_VERSION 9
2828

29-
#define NODE_VERSION_IS_RELEASE 0
29+
#define NODE_VERSION_IS_RELEASE 1
3030

3131
#ifndef NODE_TAG
3232
# define NODE_TAG ""

0 commit comments

Comments
 (0)