From 252f034b30b3bf9b0c38d683725868d899209870 Mon Sep 17 00:00:00 2001 From: isaacs Date: Mon, 18 Jun 2012 18:22:34 -0700 Subject: [PATCH 1/3] email-footer: Label Windows x64 installer properly --- tools/email-footer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/email-footer.md b/tools/email-footer.md index aafe6bf74ad..e6115c9dd5d 100644 --- a/tools/email-footer.md +++ b/tools/email-footer.md @@ -4,7 +4,7 @@ Macintosh Installer (Universal): http://nodejs.org/dist/__VERSION__/node-__VERSI Windows Installer: http://nodejs.org/dist/__VERSION__/node-__VERSION__-x86.msi -Windows Installer: http://nodejs.org/dist/__VERSION__/x64/node-__VERSION__-x64.msi +Windows x64 Installer: http://nodejs.org/dist/__VERSION__/x64/node-__VERSION__-x64.msi Windows x64 Files: http://nodejs.org/dist/__VERSION__/x64/ From f105f2f2fd105a28e56f112bf759ae7f18743c4c Mon Sep 17 00:00:00 2001 From: isaacs Date: Tue, 19 Jun 2012 11:07:59 -0700 Subject: [PATCH 2/3] trivial: Doc typo and lint fix --- doc/api/cluster.markdown | 2 +- lib/querystring.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/cluster.markdown b/doc/api/cluster.markdown index 7af04ec05ca..d0e4de3c6f2 100644 --- a/doc/api/cluster.markdown +++ b/doc/api/cluster.markdown @@ -58,7 +58,7 @@ create one, and pass the handle to the child. This causes potentially surprising behavior in three edge cases: -1. `server.listen({fd: 7})` Because the message is passed to the worker, +1. `server.listen({fd: 7})` Because the message is passed to the master, file descriptor 7 **in the parent** will be listened on, and the handle passed to the worker, rather than listening to the worker's idea of what the number 7 file descriptor references. diff --git a/lib/querystring.js b/lib/querystring.js index 7ccd8cf49ad..12b6013d525 100644 --- a/lib/querystring.js +++ b/lib/querystring.js @@ -151,7 +151,7 @@ QueryString.stringify = QueryString.encode = function(obj, sep, eq, name) { }).join(sep); } - + if (!name) return ''; return QueryString.escape(stringifyPrimitive(name)) + eq + QueryString.escape(stringifyPrimitive(obj)); From a72120190a8ffdbcd3d6ad2a2e6ceecd2087111e Mon Sep 17 00:00:00 2001 From: isaacs Date: Mon, 18 Jun 2012 18:28:31 -0700 Subject: [PATCH 3/3] 2012.06.19, Version 0.7.12 (unstable) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * npm: Upgrade to 1.1.30 - Improved 'npm init' - Fix the 'cb never called' error from 'oudated' and 'update' - Add --save-bundle|-B config - Fix isaacs/npm#2465: Make npm script and windows shims cygwin-aware - Fix isaacs/npm#2452 Use --save(-dev|-optional) in npm rm - `logstream` option to replace removed `logfd` (Rod Vagg) - Read default descriptions from README.md files * Shims to support deprecated ev_* and eio_* methods (Ben Noordhuis) * #3118 net.Socket: Delay pause/resume until after connect (isaacs) * #3465 Add ./configure --no-ifaddrs flag (isaacs) * child_process: add .stdin stream to forks (Fedor Indutny) * build: fix `make install DESTDIR=/path` (Ben Noordhuis) * tls: fix off-by-one error in renegotiation check (Ben Noordhuis) * crypto: Fix diffie-hellman key generation UTF-8 errors (Fedor Indutny) * node: change the constructor name of process from EventEmitter to process (Andreas Madsen) * net: Prevent property access throws during close (Reid Burke) * querystring: improved speed and code cleanup (Felix Böhm) * sunos: fix assertion errors breaking fs.watch() (Fedor Indutny) * unix: stat: detect sub-second changes (Ben Noordhuis) * add stat() based file watcher (Ben Noordhuis) --- ChangeLog | 40 +++++++++++++++++++++++++++++++++++++++- src/node_version.h | 2 +- 2 files changed, 40 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1af23f9949c..fe2adce59ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,42 @@ -2012.06.15, Version 0.7.11 (unstable) +2012.06.19, Version 0.7.12 (unstable) + +* npm: Upgrade to 1.1.30 + - Improved 'npm init' + - Fix the 'cb never called' error from 'oudated' and 'update' + - Add --save-bundle|-B config + - Fix isaacs/npm#2465: Make npm script and windows shims cygwin-aware + - Fix isaacs/npm#2452 Use --save(-dev|-optional) in npm rm + - `logstream` option to replace removed `logfd` (Rod Vagg) + - Read default descriptions from README.md files + +* Shims to support deprecated ev_* and eio_* methods (Ben Noordhuis) + +* #3118 net.Socket: Delay pause/resume until after connect (isaacs) + +* #3465 Add ./configure --no-ifaddrs flag (isaacs) + +* child_process: add .stdin stream to forks (Fedor Indutny) + +* build: fix `make install DESTDIR=/path` (Ben Noordhuis) + +* tls: fix off-by-one error in renegotiation check (Ben Noordhuis) + +* crypto: Fix diffie-hellman key generation UTF-8 errors (Fedor Indutny) + +* node: change the constructor name of process from EventEmitter to process (Andreas Madsen) + +* net: Prevent property access throws during close (Reid Burke) + +* querystring: improved speed and code cleanup (Felix Böhm) + +* sunos: fix assertion errors breaking fs.watch() (Fedor Indutny) + +* unix: stat: detect sub-second changes (Ben Noordhuis) + +* add stat() based file watcher (Ben Noordhuis) + + +2012.06.15, Version 0.7.11 (unstable), 5cfe0b86d5be266ef51bbba369c39e412ee51944 * V8: Upgrade to v3.11.10 diff --git a/src/node_version.h b/src/node_version.h index 9e5014ce9eb..ca306f0e6ff 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -25,7 +25,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 7 #define NODE_PATCH_VERSION 12 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)