Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
2012.06.15, Version 0.7.11 (unstable)
Browse files Browse the repository at this point in the history
* V8: Upgrade to v3.11.10

* npm: Upgrade to 1.1.26

* doc: Improve cross-linking in API docs markdown (Ben Kelly)

* Fix #3425: removeAllListeners should delete array (Reid Burke)

* cluster: don't silently drop messages when the write queue gets big (Bert Belder)

* Add Buffer.concat method (isaacs)

* windows: make symlinks tolerant to forward slashes (Bert Belder)

* build: Add node.d and node.1 to installer (isaacs)

* cluster: rename worker.unqiueID to worker.id (Andreas Madsen)

* Windows: Enable ETW events on Windows for existing DTrace probes. (Igor Zinkovsky)

* test: bundle node-weak in test/gc so that it doesn't need to be downloaded (Nathan Rajlich)

* Make many tests pass on Windows (Bert Belder)

* Fix #3388 Support listening on file descriptors (isaacs)

* Fix #3407 Add os.tmpDir() (isaacs)

* Unbreak the snapshotted build on Windows (Bert Belder)

* Clean up child_process.kill throws (Bert Belder)

* crypto: make cipher/decipher accept buffer args (Ben Noordhuis)
  • Loading branch information
isaacs committed Jun 15, 2012
1 parent 911b0fd commit 1f93aa5
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 4 deletions.
39 changes: 38 additions & 1 deletion ChangeLog
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,41 @@
2012.06.11, Version 0.7.10 (unstable) 2012.06.15, Version 0.7.11 (unstable)

* V8: Upgrade to v3.11.10

* npm: Upgrade to 1.1.26

* doc: Improve cross-linking in API docs markdown (Ben Kelly)

* Fix #3425: removeAllListeners should delete array (Reid Burke)

* cluster: don't silently drop messages when the write queue gets big (Bert Belder)

* Add Buffer.concat method (isaacs)

* windows: make symlinks tolerant to forward slashes (Bert Belder)

* build: Add node.d and node.1 to installer (isaacs)

* cluster: rename worker.unqiueID to worker.id (Andreas Madsen)

* Windows: Enable ETW events on Windows for existing DTrace probes. (Igor Zinkovsky)

* test: bundle node-weak in test/gc so that it doesn't need to be downloaded (Nathan Rajlich)

* Make many tests pass on Windows (Bert Belder)

* Fix #3388 Support listening on file descriptors (isaacs)

* Fix #3407 Add os.tmpDir() (isaacs)

* Unbreak the snapshotted build on Windows (Bert Belder)

* Clean up child_process.kill throws (Bert Belder)

* crypto: make cipher/decipher accept buffer args (Ben Noordhuis)


2012.06.11, Version 0.7.10 (unstable), 12a32a48a30182621b3f8e9b9695d1946b53c131


* Roll V8 back to 3.9.24.31 * Roll V8 back to 3.9.24.31


Expand Down
3 changes: 2 additions & 1 deletion doc/index.html
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -80,14 +80,15 @@ <h2>Node.js in the Industry</h2>
<a href="#" id="download-close">X</a> <a href="#" id="download-close">X</a>
<img id="download-logo" src="http://nodejs.org/images/download-logo.png" alt="node.js"> <img id="download-logo" src="http://nodejs.org/images/download-logo.png" alt="node.js">
<ul id="installers" class="clearfix"> <ul id="installers" class="clearfix">
<li><a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__.msi">Windows Installer</a><br>node-__VERSION__.msi</li> <li><a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__-x86.msi">Windows Installer</a><br>node-__VERSION__-x86.msi</li>
<li><a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__.pkg">Macintosh Installer</a><br>node-__VERSION__.pkg</li> <li><a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__.pkg">Macintosh Installer</a><br>node-__VERSION__.pkg</li>
<li id="source"><a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__.tar.gz">Source Code</a><br>node-__VERSION__.tar.gz</li> <li id="source"><a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__.tar.gz">Source Code</a><br>node-__VERSION__.tar.gz</li>
</ul> </ul>
<ul id="documentation"> <ul id="documentation">
<li><a href="https://raw.github.com/joyent/node/__VERSION__/ChangeLog">Change Log</a></li> <li><a href="https://raw.github.com/joyent/node/__VERSION__/ChangeLog">Change Log</a></li>
<li><a href="http://nodejs.org/docs/__VERSION__/api/">Documentation</a></li> <li><a href="http://nodejs.org/docs/__VERSION__/api/">Documentation</a></li>
<li><a href="http://nodejs.org/dist/__VERSION__">Other release files</a></li> <li><a href="http://nodejs.org/dist/__VERSION__">Other release files</a></li>
<li><a href="http://nodejs.org/dist/__VERSION__/x64/node-__VERSION__-x64.msi">Windows x64 Installer</a></li>
<li><a href="https://raw.github.com/joyent/node/__VERSION__/LICENSE">License</a></li> <li><a href="https://raw.github.com/joyent/node/__VERSION__/LICENSE">License</a></li>
<li><a href="https://github.com/joyent/node">Git Repository</a></li> <li><a href="https://github.com/joyent/node">Git Repository</a></li>
<li><a href="https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager">Installing <li><a href="https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager">Installing
Expand Down
2 changes: 1 addition & 1 deletion lib/child_process.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ function maybeClose(subprocess) {


function ChildProcess() { function ChildProcess() {
EventEmitter.call(this); EventEmitter.call(this);

var self = this; var self = this;


this._closesNeeded = 1; this._closesNeeded = 1;
Expand Down
2 changes: 1 addition & 1 deletion src/node_version.h
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#define NODE_MAJOR_VERSION 0 #define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 7 #define NODE_MINOR_VERSION 7
#define NODE_PATCH_VERSION 11 #define NODE_PATCH_VERSION 11
#define NODE_VERSION_IS_RELEASE 0 #define NODE_VERSION_IS_RELEASE 1


#ifndef NODE_STRINGIFY #ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit 1f93aa5

Please sign in to comment.