Skip to content

Commit 6f92da2

Browse files
committed
2013.08.06, Version 0.11.5 (Unstable)
* v8: upgrade to 3.20.11 * uv: upgrade to v0.11.7 * buffer: return offset for end of last write (Trevor Norris) * build: embed the mdb_v8.so into the binary (Timothy J Fontaine) * build: fix --without-ssl build (Ben Noordhuis) * child_process: add 'shell' option to .exec() (Ben Noordhuis) * dgram: report send errors to cb, don't pass bytes (Ben Noordhuis) * fs: write strings directly to disk (Trevor Norris) * https: fix default port (Koichi Kobayashi) * openssl: use asm for sha, md5, rmd (Fedor Indutny) * os: add mac address to networkInterfaces() output (Brian White) * smalloc: introduce smalloc module (Trevor Norris) * stream: Simplify flowing, passive data listening (streams3) (isaacs) * tls: asynchronous SNICallback (Fedor Indutny) * tls: share tls tickets key between cluster workers (Fedor Indutny) * util: don't throw on circular %j input to format() (Ben Noordhuis)
1 parent fa8efa9 commit 6f92da2

File tree

3 files changed

+45
-2
lines changed

3 files changed

+45
-2
lines changed

AUTHORS

+8
Original file line numberDiff line numberDiff line change
@@ -466,3 +466,11 @@ Krzysztof Chrapka <[email protected]>
466466
Linus Mårtensson <[email protected]>
467467
Peter Rust <[email protected]>
468468
Shuan Wang <[email protected]>
469+
Wyatt Preul <[email protected]>
470+
David Björklund <[email protected]>
471+
Dav Glass <[email protected]>
472+
Andrew Chilton <[email protected]>
473+
Antony Bailey <[email protected]>
474+
Forrest L Norvell <[email protected]>
475+
Evan Solomon <[email protected]>
476+
Eran Hammer <[email protected]>

ChangeLog

+36-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,39 @@
1-
2013.07.12, Version 0.11.4 (Unstable)
1+
2013.08.06, Version 0.11.5 (Unstable)
2+
3+
* v8: upgrade to 3.20.11
4+
5+
* uv: upgrade to v0.11.7
6+
7+
* buffer: return offset for end of last write (Trevor Norris)
8+
9+
* build: embed the mdb_v8.so into the binary (Timothy J Fontaine)
10+
11+
* build: fix --without-ssl build (Ben Noordhuis)
12+
13+
* child_process: add 'shell' option to .exec() (Ben Noordhuis)
14+
15+
* dgram: report send errors to cb, don't pass bytes (Ben Noordhuis)
16+
17+
* fs: write strings directly to disk (Trevor Norris)
18+
19+
* https: fix default port (Koichi Kobayashi)
20+
21+
* openssl: use asm for sha, md5, rmd (Fedor Indutny)
22+
23+
* os: add mac address to networkInterfaces() output (Brian White)
24+
25+
* smalloc: introduce smalloc module (Trevor Norris)
26+
27+
* stream: Simplify flowing, passive data listening (streams3) (isaacs)
28+
29+
* tls: asynchronous SNICallback (Fedor Indutny)
30+
31+
* tls: share tls tickets key between cluster workers (Fedor Indutny)
32+
33+
* util: don't throw on circular %j input to format() (Ben Noordhuis)
34+
35+
36+
2013.07.12, Version 0.11.4 (Unstable), b5b84197ed037918fd1a26e5cb87cce7c812ca55
237

338
* npm: Upgrade to 1.3.4
439

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