Skip to content

Commit 38c0c47

Browse files
committed
2013.06.26, Version 0.11.3 (Unstable)
* uv: Upgrade to v0.11.5 * c-ares: upgrade to 1.10.0 * v8: upgrade to v3.19.13 * punycode: update to v1.2.3 (Mathias Bynens) * debugger: break on uncaught exception (Miroslav Bajtos) * child_process: emit 'disconnect' asynchronously (Ben Noordhuis) * dtrace: enable uv's probes if enabled (Timothy J Fontaine) * dtrace: unify dtrace and systemtap interfaces (Timothy J Fontaine) * buffer: New API for backing data store (Trevor Norris) * buffer: return `this` in fill() for chainability (Brian White) * build: fix include order for building on windows (Timothy J Fontaine) * build: add android support (Linus Mårtensson) * readline: strip ctrl chars for prompt width calc (Krzysztof Chrapka) * tls: introduce TLSSocket based on tls_wrap binding (Fedor Indutny) * tls: add localAddress and localPort properties (Ben Noordhuis) * crypto: free excessive memory in NodeBIO (Fedor Indutny) * process: remove maxTickDepth (Trevor Norris) * timers: use uv_now instead of Date.now (Timothy J Fontaine) * util: Add debuglog, deprecate console lookalikes (isaacs) * module: use path.sep instead of a custom solution (Robert Kowalski) * http: don't escape request path, reject bad chars (Ben Noordhuis) * net: emit dns 'lookup' event before connect (Ben Noordhuis) * dns: add getServers and setServers (Timothy J Fontaine)
1 parent c16963b commit 38c0c47

File tree

3 files changed

+53
-2
lines changed

3 files changed

+53
-2
lines changed

AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -461,3 +461,5 @@ Daniel G. Taylor <[email protected]>
461461
Kiyoshi Nomo <[email protected]>
462462
Veres Lajos <[email protected]>
463463
Yuan Chuan <[email protected]>
464+
Krzysztof Chrapka <[email protected]>
465+
Linus Mårtensson <[email protected]>

ChangeLog

+50-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,53 @@
1-
2013.05.13, Version 0.11.2 (Unstable)
1+
2013.06.26, Version 0.11.3 (Unstable)
2+
3+
* uv: Upgrade to v0.11.5
4+
5+
* c-ares: upgrade to 1.10.0
6+
7+
* v8: upgrade to v3.19.13
8+
9+
* punycode: update to v1.2.3 (Mathias Bynens)
10+
11+
* debugger: break on uncaught exception (Miroslav Bajtos)
12+
13+
* child_process: emit 'disconnect' asynchronously (Ben Noordhuis)
14+
15+
* dtrace: enable uv's probes if enabled (Timothy J Fontaine)
16+
17+
* dtrace: unify dtrace and systemtap interfaces (Timothy J Fontaine)
18+
19+
* buffer: New API for backing data store (Trevor Norris)
20+
21+
* buffer: return `this` in fill() for chainability (Brian White)
22+
23+
* build: fix include order for building on windows (Timothy J Fontaine)
24+
25+
* build: add android support (Linus Mårtensson)
26+
27+
* readline: strip ctrl chars for prompt width calc (Krzysztof Chrapka)
28+
29+
* tls: introduce TLSSocket based on tls_wrap binding (Fedor Indutny)
30+
31+
* tls: add localAddress and localPort properties (Ben Noordhuis)
32+
33+
* crypto: free excessive memory in NodeBIO (Fedor Indutny)
34+
35+
* process: remove maxTickDepth (Trevor Norris)
36+
37+
* timers: use uv_now instead of Date.now (Timothy J Fontaine)
38+
39+
* util: Add debuglog, deprecate console lookalikes (isaacs)
40+
41+
* module: use path.sep instead of a custom solution (Robert Kowalski)
42+
43+
* http: don't escape request path, reject bad chars (Ben Noordhuis)
44+
45+
* net: emit dns 'lookup' event before connect (Ben Noordhuis)
46+
47+
* dns: add getServers and setServers (Timothy J Fontaine)
48+
49+
50+
2013.05.13, Version 0.11.2 (Unstable), 5d3dc0e4c3369dfb00b7b13e08936c2e652fa696
251

352
* uv: Upgrade to 0.11.2
453

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