Skip to content

Commit b46e774

Browse files
committedJan 29, 2014
2014.01.29, Version 0.11.11 (Unstable)
* v8: Upgrade to 3.22.24.19 * http_parser: Upgrade to 2.2.1 * openssl: Upgrade to 1.0.1f * uv: Upgrade to 0.11.18 * async-listener: revamp of subsystem (Trevor Norris) * node: do not ever close stdio (Fedor Indutny) * http: use writev on chunked encoding (Trevor Norris) * async_wrap/timers: remove Add/RemoveAsyncListener (Trevor Norris) * child_process: better error reporting for exec (Fedor Indutny) * crypto: add newline to cert and key if not present (Fedor Indutny) * crypto: clear error in GetPeerCertificate (Fedor Indutny) * crypto: honor default ciphers in client mode (Jacob Hoffman-Andrews) * crypto: introduce .setEngine(engine, [flags]) (Fedor Indutny) * crypto: support custom pbkdf2 digest methods (Ben Noordhuis) * domain: fix off-by-one in Domain.exit() (Ryan Graham) * http: concatenate duplicate headers by default (Alex Kocharin) * http: do not emit EOF non-readable socket (Fedor Indutny) * node: fix argument parsing with -p arg (Alexis Campailla) * path: improve POSIX path.join() performance (Jo Liss) * tls: emit `clientError` on early socket close (Fedor Indutny) * tls: introduce `.setMaxSendFragment(size)` (Fedor Indutny) * tls: make cert/pfx optional in tls.createServer() (Ben Noordhuis) * tls: process accumulated input (Fedor Indutny) * tls: show human-readable error messages (Ben Noordhuis) * util: handle escaped forward slashes correctly (Tom Gallacher)
1 parent 95b8a75 commit b46e774

File tree

3 files changed

+60
-1
lines changed

3 files changed

+60
-1
lines changed
 

‎AUTHORS

+6
Original file line numberDiff line numberDiff line change
@@ -518,3 +518,9 @@ ayanamist <contact@ayanamist.com>
518518
Lorenz Leutgeb <lorenz.leutgeb@gmail.com>
519519
Brandon Cheng <bcheng.gt@gmail.com>
520520
Alexis Campailla <alexis@janeasystems.com>
521+
Yang Tianyang <contact@ayanamist.com>
522+
Tom Gallacher <tomgallacher23@gmail.com>
523+
Jo Liss <joliss42@gmail.com>
524+
Jun Ma <roammm@gmail.com>
525+
Jacob Hoffman-Andrews <github@hoffman-andrews.com>
526+
Keith M Wesolowski <wesolows@joyent.com>

‎ChangeLog

+53
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,56 @@
1+
2014.01.29, Version 0.11.11 (Unstable)
2+
3+
* v8: Upgrade to 3.22.24.19
4+
5+
* http_parser: Upgrade to 2.2.1
6+
7+
* openssl: Upgrade to 1.0.1f
8+
9+
* uv: Upgrade to 0.11.18
10+
11+
* async-listener: revamp of subsystem (Trevor Norris)
12+
13+
* node: do not ever close stdio (Fedor Indutny)
14+
15+
* http: use writev on chunked encoding (Trevor Norris)
16+
17+
* async_wrap/timers: remove Add/RemoveAsyncListener (Trevor Norris)
18+
19+
* child_process: better error reporting for exec (Fedor Indutny)
20+
21+
* crypto: add newline to cert and key if not present (Fedor Indutny)
22+
23+
* crypto: clear error in GetPeerCertificate (Fedor Indutny)
24+
25+
* crypto: honor default ciphers in client mode (Jacob Hoffman-Andrews)
26+
27+
* crypto: introduce .setEngine(engine, [flags]) (Fedor Indutny)
28+
29+
* crypto: support custom pbkdf2 digest methods (Ben Noordhuis)
30+
31+
* domain: fix off-by-one in Domain.exit() (Ryan Graham)
32+
33+
* http: concatenate duplicate headers by default (Alex Kocharin)
34+
35+
* http: do not emit EOF non-readable socket (Fedor Indutny)
36+
37+
* node: fix argument parsing with -p arg (Alexis Campailla)
38+
39+
* path: improve POSIX path.join() performance (Jo Liss)
40+
41+
* tls: emit `clientError` on early socket close (Fedor Indutny)
42+
43+
* tls: introduce `.setMaxSendFragment(size)` (Fedor Indutny)
44+
45+
* tls: make cert/pfx optional in tls.createServer() (Ben Noordhuis)
46+
47+
* tls: process accumulated input (Fedor Indutny)
48+
49+
* tls: show human-readable error messages (Ben Noordhuis)
50+
51+
* util: handle escaped forward slashes correctly (Tom Gallacher)
52+
53+
154
2013.12.31, Version 0.11.10 (Unstable), 66931791f06207d1cdfea5ec1529edf3c94026d3
255

356
* http_parser: update to 2.2

‎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 11
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)
Please sign in to comment.