Skip to content

Commit 60bf2d6

Browse files
committed
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 <[email protected]>
345345
Jonas Westerlund <[email protected]>
346346
Dominic Tarr <[email protected]>
347347
Justin Plock <[email protected]>
348+
Toshihiro Nakamura <[email protected]>
349+
Ivan Torres <[email protected]>
350+
Philipp Hagemeister <[email protected]>
351+
George Shank <[email protected]>
352+
Mike Morearty <[email protected]>

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)