Skip to content

Commit f8d86e2

Browse files
committedOct 30, 2013
2013.10.30, Version 0.11.8 (Unstable)
* uv: Upgrade to v0.11.14 * v8: upgrade 3.21.18.3 * assert: indicate if exception message is generated (Glen Mailer) * buffer: add buf.toArrayBuffer() API (Trevor Norris) * cluster: fix premature 'disconnect' event (Ben Noordhuis) * crypto: add SPKAC support (Jason Gerfen) * debugger: count space for line numbers correctly (Alex Kocharin) * debugger: make busy loops SIGUSR1-interruptible (Ben Noordhuis) * debugger: repeat last command (Alex Kocharin) * debugger: show current line, fix for #6150 (Alex Kocharin) * dgram: send() can accept strings (Trevor Norris) * dns: rename domain to hostname (Ben Noordhuis) * dns: set hostname property on error object (Ben Noordhuis) * dtrace, mdb_v8: support more string, frame types (Dave Pacheco) * http: add statusMessage (Patrik Stutz) * http: expose supported methods (Ben Noordhuis) * http: provide backpressure for pipeline flood (isaacs) * process: Add exitCode property (isaacs) * tls: socket.renegotiate(options, callback) (Fedor Indutny) * util: format as Error if instanceof Error (Rod Vagg)
1 parent 74a664b commit f8d86e2

File tree

3 files changed

+52
-1
lines changed

3 files changed

+52
-1
lines changed
 

‎AUTHORS

+8
Original file line numberDiff line numberDiff line change
@@ -485,3 +485,11 @@ Matthew Aynalem <maynalem@gmail.com>
485485
Vsevolod Strukchinsky <floatdrop@yandex-team.ru>
486486
Jay Beavers <jay@hikinghomeschoolers.org>
487487
Eric Schrock <Eric.Schrock@delphix.com>
488+
Jeff Switzer <git@skratchdot.com>
489+
Glen Mailer <glenjamin@gmail.com>
490+
Jason Gerfen <jason.gerfen@gmail.com>
491+
Patrik Stutz <patrik.stutz@gmail.com>
492+
Zarko Stankovic <stankovic.zarko@gmail.com>
493+
Maxim Bogushevich <boga1@mail.ru>
494+
Phillip Alexander <git@phillipalexander.io>
495+
Thom Seddon <thom@nightworld.com>

‎ChangeLog

+43
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,46 @@
1+
2013.10.30, Version 0.11.8 (Unstable)
2+
3+
* uv: Upgrade to v0.11.14
4+
5+
* v8: upgrade 3.21.18.3
6+
7+
* assert: indicate if exception message is generated (Glen Mailer)
8+
9+
* buffer: add buf.toArrayBuffer() API (Trevor Norris)
10+
11+
* cluster: fix premature 'disconnect' event (Ben Noordhuis)
12+
13+
* crypto: add SPKAC support (Jason Gerfen)
14+
15+
* debugger: count space for line numbers correctly (Alex Kocharin)
16+
17+
* debugger: make busy loops SIGUSR1-interruptible (Ben Noordhuis)
18+
19+
* debugger: repeat last command (Alex Kocharin)
20+
21+
* debugger: show current line, fix for #6150 (Alex Kocharin)
22+
23+
* dgram: send() can accept strings (Trevor Norris)
24+
25+
* dns: rename domain to hostname (Ben Noordhuis)
26+
27+
* dns: set hostname property on error object (Ben Noordhuis)
28+
29+
* dtrace, mdb_v8: support more string, frame types (Dave Pacheco)
30+
31+
* http: add statusMessage (Patrik Stutz)
32+
33+
* http: expose supported methods (Ben Noordhuis)
34+
35+
* http: provide backpressure for pipeline flood (isaacs)
36+
37+
* process: Add exitCode property (isaacs)
38+
39+
* tls: socket.renegotiate(options, callback) (Fedor Indutny)
40+
41+
* util: format as Error if instanceof Error (Rod Vagg)
42+
43+
144
2013.08.21, Version 0.11.7 (Unstable), be52549bfa5311208b5fcdb3ba09210460fa9ceb
245

346
* uv: upgrade to v0.11.13

‎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 8
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)