mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
Merge branch 'v0.7.12-release'
This commit is contained in:
commit
fbc2ad5815
40
ChangeLog
40
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
|
||||
|
||||
|
@ -61,7 +61,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.
|
||||
|
@ -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));
|
||||
|
@ -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)
|
||||
|
@ -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/
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user