Skip to content

Commit 60bf2d6

Browse files
committedJul 19, 2012
2012.07.19, Version 0.8.3 (Stable)
* V8: upgrade to 3.11.10.15 * npm: Upgrade to 1.1.43 * net: fix net.Server.listen({fd:x}) error reporting (Ben Noordhuis) * net: fix bogus errno reporting (Ben Noordhuis) * build: Move npm shebang logic into an npm script (isaacs) * build: fix add-on loading on freebsd (Ben Noordhuis) * build: disable unsafe optimizations (Ben Noordhuis) * build: fix spurious mksnapshot crashes for good (Ben Noordhuis) * build: speed up genv8constants (Dave Pacheco) * fs: make unwatchFile() remove a specific listener (Ben Noordhuis) * domain: Remove first arg from intercepted fn (Toshihiro Nakamura) * domain: Fix memory leak on error (isaacs) * events: Fix memory leak from removeAllListeners (Nathan Rajlich) * zlib: Fix memory leak in Unzip class. (isaacs) * crypto: Fix memory leak in DecipherUpdate() (Ben Noordhuis)
1 parent 845b9e9 commit 60bf2d6

File tree

3 files changed

+40
-2
lines changed

3 files changed

+40
-2
lines changed
 

‎AUTHORS

+5
Original file line numberDiff line numberDiff line change
@@ -345,3 +345,8 @@ Tim Macfarlane <timmacfarlane@gmail.com>
345345
Jonas Westerlund <jonas.westerlund@me.com>
346346
Dominic Tarr <dominic.tarr@gmail.com>
347347
Justin Plock <jplock@gmail.com>
348+
Toshihiro Nakamura <toshihiro.nakamura@gmail.com>
349+
Ivan Torres <mexpolk@gmail.com>
350+
Philipp Hagemeister <phihag@phihag.de>
351+
George Shank <shankga@gmail.com>
352+
Mike Morearty <mike@morearty.com>

‎ChangeLog

+34-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,37 @@
1-
2012.07.09, Version 0.8.2 (Stable)
1+
2012.07.19, Version 0.8.3 (Stable)
2+
3+
* V8: upgrade to 3.11.10.15
4+
5+
* npm: Upgrade to 1.1.43
6+
7+
* net: fix net.Server.listen({fd:x}) error reporting (Ben Noordhuis)
8+
9+
* net: fix bogus errno reporting (Ben Noordhuis)
10+
11+
* build: Move npm shebang logic into an npm script (isaacs)
12+
13+
* build: fix add-on loading on freebsd (Ben Noordhuis)
14+
15+
* build: disable unsafe optimizations (Ben Noordhuis)
16+
17+
* build: fix spurious mksnapshot crashes for good (Ben Noordhuis)
18+
19+
* build: speed up genv8constants (Dave Pacheco)
20+
21+
* fs: make unwatchFile() remove a specific listener (Ben Noordhuis)
22+
23+
* domain: Remove first arg from intercepted fn (Toshihiro Nakamura)
24+
25+
* domain: Fix memory leak on error (isaacs)
26+
27+
* events: Fix memory leak from removeAllListeners (Nathan Rajlich)
28+
29+
* zlib: Fix memory leak in Unzip class. (isaacs)
30+
31+
* crypto: Fix memory leak in DecipherUpdate() (Ben Noordhuis)
32+
33+
34+
2012.07.09, Version 0.8.2 (Stable), cc6084b9ac5cf1d4fe5e7165b71e8fc05d11be1f
235

336
* npm: Upgrade to 1.1.36
437

‎src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#define NODE_MAJOR_VERSION 0
2626
#define NODE_MINOR_VERSION 8
2727
#define NODE_PATCH_VERSION 3
28-
#define NODE_VERSION_IS_RELEASE 0
28+
#define NODE_VERSION_IS_RELEASE 1
2929

3030
#ifndef NODE_STRINGIFY
3131
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)
Please sign in to comment.