Skip to content

Commit 04018d4

Browse files
committedAug 21, 2013
2013.08.21, Version 0.11.6 (Unstable)
* uv: Upgrade to v0.11.8 * v8: upgrade v8 to 3.20.14.1 * build: disable SSLv2 by default (Ben Noordhuis) * build: don't auto-destroy existing configuration (Ben Noordhuis) * crypto: add TLS 1.1 and 1.2 to secureProtocol list (Matthias Bartelmeß) * crypto: fix memory leak in randomBytes() error path (Ben Noordhuis) * dgram: don't call into js when send cb is omitted (Ben Noordhuis) * dgram: fix regression in string argument handling (Ben Noordhuis) * domains: performance improvements (Trevor Norris) * events: EventEmitter = require('events') (Jake Verbaten) * http: Add write()/end() callbacks (isaacs) * http: Consistent 'finish' event semantics (isaacs) * http: Prefer 'binary' over 'ascii' (isaacs) * http: Support legacy agent.addRequest API (isaacs) * http: Write hex/base64 chunks properly (isaacs) * http: add agent.maxFreeSockets option (isaacs) * http: provide access to raw headers/trailers (isaacs) * http: removed headers stay removed (James Halliday) * http,timers: improve callback performance (Ben Noordhuis) * net: family option in net.connect (Vsevolod Strukchinsky) * readline: pause stdin before turning off terminal raw mode (Daniel Chatfield) * smalloc: allow different external array types (Trevor Norris) * smalloc: expose ExternalArraySize (Trevor Norris) * stream: Short-circuit buffer pushes when flowing (isaacs) * tls: handle errors on socket before releasing it (Fedor Indutny) * util: fix isPrimitive check (Trevor Norris) * util: isObject should always return boolean (Trevor Norris)
1 parent a784aba commit 04018d4

File tree

3 files changed

+68
-2
lines changed

3 files changed

+68
-2
lines changed
 

‎AUTHORS

+9
Original file line numberDiff line numberDiff line change
@@ -474,3 +474,12 @@ Antony Bailey <support@antonybailey.net>
474474
Forrest L Norvell <ogd@aoaioxxysz.net>
475475
Evan Solomon <evan@evanalyze.com>
476476
Eran Hammer <eran@hueniverse.com>
477+
Matthias Bartelmeß <mba@fourplusone.de>
478+
Daniel Chatfield <chatfielddaniel@gmail.com>
479+
Eivind Uggedal <eivind@uggedal.com>
480+
Edward Hutchins <eahutchins@gmail.com>
481+
James Halliday <mail@substack.net>
482+
Chris Wren <cthewren@gmail.com>
483+
Duan Yao <duanyao@ustc.edu>
484+
Matthew Aynalem <maynalem@gmail.com>
485+
Vsevolod Strukchinsky <floatdrop@yandex-team.ru>

‎ChangeLog

+58-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,61 @@
1-
2013.08.06, Version 0.11.5 (Unstable)
1+
2013.08.21, Version 0.11.6 (Unstable)
2+
3+
* uv: Upgrade to v0.11.8
4+
5+
* v8: upgrade v8 to 3.20.14.1
6+
7+
* build: disable SSLv2 by default (Ben Noordhuis)
8+
9+
* build: don't auto-destroy existing configuration (Ben Noordhuis)
10+
11+
* crypto: add TLS 1.1 and 1.2 to secureProtocol list (Matthias Bartelmeß)
12+
13+
* crypto: fix memory leak in randomBytes() error path (Ben Noordhuis)
14+
15+
* dgram: don't call into js when send cb is omitted (Ben Noordhuis)
16+
17+
* dgram: fix regression in string argument handling (Ben Noordhuis)
18+
19+
* domains: performance improvements (Trevor Norris)
20+
21+
* events: EventEmitter = require('events') (Jake Verbaten)
22+
23+
* http: Add write()/end() callbacks (isaacs)
24+
25+
* http: Consistent 'finish' event semantics (isaacs)
26+
27+
* http: Prefer 'binary' over 'ascii' (isaacs)
28+
29+
* http: Support legacy agent.addRequest API (isaacs)
30+
31+
* http: Write hex/base64 chunks properly (isaacs)
32+
33+
* http: add agent.maxFreeSockets option (isaacs)
34+
35+
* http: provide access to raw headers/trailers (isaacs)
36+
37+
* http: removed headers stay removed (James Halliday)
38+
39+
* http,timers: improve callback performance (Ben Noordhuis)
40+
41+
* net: family option in net.connect (Vsevolod Strukchinsky)
42+
43+
* readline: pause stdin before turning off terminal raw mode (Daniel Chatfield)
44+
45+
* smalloc: allow different external array types (Trevor Norris)
46+
47+
* smalloc: expose ExternalArraySize (Trevor Norris)
48+
49+
* stream: Short-circuit buffer pushes when flowing (isaacs)
50+
51+
* tls: handle errors on socket before releasing it (Fedor Indutny)
52+
53+
* util: fix isPrimitive check (Trevor Norris)
54+
55+
* util: isObject should always return boolean (Trevor Norris)
56+
57+
58+
2013.08.06, Version 0.11.5 (Unstable), 6f92da2dd106b0c63fde563284f83e08e2a521b5
259

360
* v8: upgrade to 3.20.11
461

‎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 6
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.