Merge remote-tracking branch 'upstream/v0.10'

Conflicts:
	ChangeLog
	src/node_version.h
This commit is contained in:
Timothy J Fontaine 2013-09-04 15:34:32 -07:00
Родитель 5b1a0e6ef8 8b05206665
Коммит 8ee50cea40
4 изменённых файлов: 165 добавлений и 2 удалений

Просмотреть файл

@ -1,4 +1,4 @@
2013.08.21, Version 0.11.7 (Unstable)
2013.08.21, Version 0.11.7 (Unstable), be52549bfa5311208b5fcdb3ba09210460fa9ceb
* uv: upgrade to v0.11.13
@ -310,6 +310,15 @@
* console: `console.dir()` bypasses inspect() methods (Nathan Rajlich)
2013.09.04, Version 0.10.18 (Stable), 67a1f0c52e0708e2596f3f2134b8386d6112561e
* uv: Upgrade to v0.10.15
* stream: Don't crash on unset _events property (isaacs)
* stream: Pass 'buffer' encoding with decoded writable chunks (isaacs)
2013.08.21, Version 0.10.17 (Stable), 469a4a5091a677df62be319675056b869c31b35c
* uv: Upgrade v0.10.14

Просмотреть файл

@ -1513,7 +1513,7 @@ modify them.
[`_read(size)`]: #stream_readable_read_size_1
[`_read()`]: #stream_readable_read_size_1
[_read]: #stream_readable_read_size_1
[`writable.write(chunk)`]
[`writable.write(chunk)`]: #stream_writable_write_chunk_encoding_callback
[`write(chunk, encoding, callback)`]: #stream_writable_write_chunk_encoding_callback
[`write()`]: #stream_writable_write_chunk_encoding_callback
[`stream.write(chunk)`]: #stream_writable_write_chunk_encoding_callback

Просмотреть файл

@ -0,0 +1,62 @@
date: Wed Sep 4 11:24:48 PDT 2013
version: 0.10.18
category: release
title: Node v0.10.18 (Stable)
slug: node-v0-10-18-stable
2013.09.04, Version 0.10.18 (Stable)
* uv: Upgrade to v0.10.15
* stream: Don't crash on unset _events property (isaacs)
* stream: Pass 'buffer' encoding with decoded writable chunks (isaacs)
Source Code: http://nodejs.org/dist/v0.10.18/node-v0.10.18.tar.gz
Macintosh Installer (Universal): http://nodejs.org/dist/v0.10.18/node-v0.10.18.pkg
Windows Installer: http://nodejs.org/dist/v0.10.18/node-v0.10.18-x86.msi
Windows x64 Installer: http://nodejs.org/dist/v0.10.18/x64/node-v0.10.18-x64.msi
Windows x64 Files: http://nodejs.org/dist/v0.10.18/x64/
Linux 32-bit Binary: http://nodejs.org/dist/v0.10.18/node-v0.10.18-linux-x86.tar.gz
Linux 64-bit Binary: http://nodejs.org/dist/v0.10.18/node-v0.10.18-linux-x64.tar.gz
Solaris 32-bit Binary: http://nodejs.org/dist/v0.10.18/node-v0.10.18-sunos-x86.tar.gz
Solaris 64-bit Binary: http://nodejs.org/dist/v0.10.18/node-v0.10.18-sunos-x64.tar.gz
Other release files: http://nodejs.org/dist/v0.10.18/
Website: http://nodejs.org/docs/v0.10.18/
Documentation: http://nodejs.org/docs/v0.10.18/api/
Shasums:
```
c0219a68aa25369f4c83c5bdbb5ccc0db2cb8230 node-v0.10.18-darwin-x64.tar.gz
32261191c3b9f0988d4f132e442969714da3281f node-v0.10.18-darwin-x86.tar.gz
07923fa9613b2976b3be3a1bbe36d21b9f69f3c9 node-v0.10.18-linux-x64.tar.gz
4d4c6f485a110bf28e273020c20987c6045d2c57 node-v0.10.18-linux-x86.tar.gz
7b61c0c12fa99f8d0ab6ed0153359ed1c914e224 node-v0.10.18-sunos-x64.tar.gz
9f57be4b041058ea941b7f4c6f0a2ad9f431d46f node-v0.10.18-sunos-x86.tar.gz
fd50e0563e1ccf3efc903a33df40f86b6bfe2e62 node-v0.10.18-x86.msi
ff71d0e8003fc1b4674f98ceb912fba2161c8224 node-v0.10.18.pkg
0bc3c544ca1707ea4b8bd601706304e9c0609fe5 node-v0.10.18.tar.gz
ed35cc393d930fa05f4e1fbcadfa53e2837d59cb node.exe
5bb6f7af79fefa21ce936bdd60355d8d097c6cb6 node.exp
3581c8563d475642d07657fd639f48e595d2693d node.lib
7eb7f20b9e4dfb7d866b6d84916931630159230c node.pdb
192d7996c413e72a7f525039eca75ebdf0d5bc1f pkgsrc/nodejs-ia32-0.10.18.tgz
6c508f63bd76627ece633d04957a29bce52521c7 pkgsrc/nodejs-x64-0.10.18.tgz
8b845fe8723480f740d2efbfac3da11cb712ce66 x64/node-v0.10.18-x64.msi
dab63ee4c72612392cfa26c48808d45859cf6b4a x64/node.exe
90e37b4c9c7ea0e96a7035aa6473405da245006c x64/node.exp
1c19d9d5c6e7ced70742875a43085306b91d402d x64/node.lib
4e90849c7c96c4d2caffb64f062d91d14d152261 x64/node.pdb
```

Просмотреть файл

@ -0,0 +1,92 @@
date: Wed Sep 4 15:18:08 PDT 2013
version: 0.11.7
category: release
title: Node v0.11.7 (Unstable)
slug: node-v0-11-7-unstable
2013.08.21, Version 0.11.7 (Unstable)
* uv: upgrade to v0.11.13
* v8: upgrade to 3.20.17
* buffer: adhere to INSPECT_MAX_BYTES (Timothy J Fontaine)
* buffer: fix regression for large buffer creation (Trevor Norris)
* buffer: don't throw if slice length too long (Trevor Norris)
* buffer: Buffer(buf) constructor copies into the proper buffer (Ben Noordhuis)
* cli: remove --max-stack-size (Ben Noordhuis)
* cli: unknown command line options are errors (Ben Noordhuis)
* child_process: exec accept buffer as an encoding (Seth Fitzsimmons)
* crypto: make randomBytes/pbkdf2 callbacks domain aware (Ben Noordhuis)
* domain: deprecate domain.dispose(). (Forrest L Norvell)
* fs: Expose birthtime on stat objects (isaacs)
* http: Only send connection:keep-alive if necessary (isaacs)
* repl: Catch syntax errors better (isaacs, Nathan Rajlich)
* stream: change default highWaterMark for objectMode to 16 (Mathias Buus)
* stream: make setEncoding/pause/resume chainable (Julian Gruber, isaacs)
* util: pass opts to custom inspect functions (Timothy J Fontaine)
* vm: rewritten to behave like Contextify (Domenic Denicola)
Source Code: http://nodejs.org/dist/v0.11.7/node-v0.11.7.tar.gz
Macintosh Installer (Universal): http://nodejs.org/dist/v0.11.7/node-v0.11.7.pkg
Windows Installer: http://nodejs.org/dist/v0.11.7/node-v0.11.7-x86.msi
Windows x64 Installer: http://nodejs.org/dist/v0.11.7/x64/node-v0.11.7-x64.msi
Windows x64 Files: http://nodejs.org/dist/v0.11.7/x64/
Linux 32-bit Binary: http://nodejs.org/dist/v0.11.7/node-v0.11.7-linux-x86.tar.gz
Linux 64-bit Binary: http://nodejs.org/dist/v0.11.7/node-v0.11.7-linux-x64.tar.gz
Solaris 32-bit Binary: http://nodejs.org/dist/v0.11.7/node-v0.11.7-sunos-x86.tar.gz
Solaris 64-bit Binary: http://nodejs.org/dist/v0.11.7/node-v0.11.7-sunos-x64.tar.gz
Other release files: http://nodejs.org/dist/v0.11.7/
Website: http://nodejs.org/docs/v0.11.7/
Documentation: http://nodejs.org/docs/v0.11.7/api/
Shasums:
```
7ce3cf1297b6a8cda2aa134424890dcc6eaacc12 node-v0.11.7-darwin-x64.tar.gz
183b4a29eb65dabb5de732f2ab15cdac8c5e5c94 node-v0.11.7-darwin-x86.tar.gz
7d39c046388e7ec6bb2d53a575a0c9ed1d4a9bcc node-v0.11.7-linux-x64.tar.gz
4cf9a367b614b76722324ec6a3beb3295412100c node-v0.11.7-linux-x86.tar.gz
1d98fa4117f3ac7c7f081eea22a016c8549b27c1 node-v0.11.7-sunos-x64.tar.gz
9c04eb5ca9485370d757b0be94b223b5a0180b7a node-v0.11.7-sunos-x86.tar.gz
f131bca701ad9dac61d8929362a3c8cde41845de node-v0.11.7-x86.msi
95c1ab2d08f3ba1bb514469ad8786af6ecb18f57 node-v0.11.7.pkg
a3b0d7fb818754ad55f06a02745d7ec53986de64 node-v0.11.7.tar.gz
33371cadab85e7c3864d5eafae4041a9ca0f3ca2 node.exe
823487bfaa44f10770ecc9c8deec1bbe63bc955e node.exp
194c286bf8ef6608a891dc2c27cd38471da780a3 node.lib
0491c4e8d45fe420cc065be4de05dbcff0d4223a node.pdb
d8b2d7e034d6031c083fb3c88c251f179b18b4ca pkgsrc/nodejs-ia32-0.11.7.tgz
a9e7822718212a22b5630057efcba174041db9ff pkgsrc/nodejs-x64-0.11.7.tgz
44e7eeafb0982f81778a15ece00c8f25cc4d00f5 x64/node-v0.11.7-x64.msi
88067c4d19af87f5645a3f8bc81ec7d1610580de x64/node.exe
d150573f7567a0da4418d5086410fecabcc1fae8 x64/node.exp
e0482e1cca25faacaa1111e2de647025bca5e7f5 x64/node.lib
e9a87b9b7aa1ff220ce4b4b5cb0758c9071c8ce2 x64/node.pdb
```