aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2013-04-05 09:02:48 -0700
committerisaacs <i@izs.me>2013-04-05 09:02:48 -0700
commit2c9a38d059d5c744dd111f3a9bc1f850b0d6a078 (patch)
treec50b6bbef7281257dc3894ad136d762cb5d4aebb /doc
parentb9655fc75813fe452998cd41162bcac5dbceba25 (diff)
parent58f93ffc4a23aa7240808288acf8cf9f3022abea (diff)
downloadandroid-node-v8-2c9a38d059d5c744dd111f3a9bc1f850b0d6a078.tar.gz
android-node-v8-2c9a38d059d5c744dd111f3a9bc1f850b0d6a078.tar.bz2
android-node-v8-2c9a38d059d5c744dd111f3a9bc1f850b0d6a078.zip
Merge remote-tracking branch 'ry/v0.10'
Conflicts: AUTHORS ChangeLog deps/v8/src/json-parser.h lib/crypto.js src/node_version.h
Diffstat (limited to 'doc')
-rw-r--r--doc/api/domain.markdown8
-rw-r--r--doc/blog/release/v0.10.2.md4
-rw-r--r--doc/blog/release/v0.10.3.md77
-rw-r--r--doc/blog/release/v0.11.0.md86
4 files changed, 170 insertions, 5 deletions
diff --git a/doc/api/domain.markdown b/doc/api/domain.markdown
index 4a0ee67dbb..b93c3fcd62 100644
--- a/doc/api/domain.markdown
+++ b/doc/api/domain.markdown
@@ -48,9 +48,11 @@ d.on('error', function(er) {
// This is no better than process.on('uncaughtException')!
console.log('error, but oh well', er.message);
});
-require('http').createServer(function(req, res) {
- handleRequest(req, res);
-}).listen(PORT);
+d.run(function() {
+ require('http').createServer(function(req, res) {
+ handleRequest(req, res);
+ }).listen(PORT);
+});
```
By using the context of a domain, and the resilience of separating our
diff --git a/doc/blog/release/v0.10.2.md b/doc/blog/release/v0.10.2.md
index 92e834dfb6..67957dd547 100644
--- a/doc/blog/release/v0.10.2.md
+++ b/doc/blog/release/v0.10.2.md
@@ -68,8 +68,8 @@ Shasums:
```
860ed25d3e77d4676b5512f87f3f98b6783ee258 node-v0.10.2-darwin-x64.tar.gz
811eb3b66651dfffeaf928496e8eecab5c9304fb node-v0.10.2-darwin-x86.tar.gz
-0013be477da5d066471390c9964f796356b48948 node-v0.10.2-linux-x64.tar.gz
-97c3a052d833bfc799bc9b748520a15cfb189a58 node-v0.10.2-linux-x86.tar.gz
+2914731bdbe809483ed9da2578ce19121494e437 node-v0.10.2-linux-x64.tar.gz
+dbf039ee15e423738db4ffc9c498d6b0ad54da07 node-v0.10.2-linux-x86.tar.gz
17bc5bf26af7da790e6b0c4cbb2b73ea1c9f2ed5 node-v0.10.2-sunos-x64.tar.gz
5e02e35cc15ae56953921ad4c8e45b849c736e20 node-v0.10.2-sunos-x86.tar.gz
2adb1bf5919fb8adeaf96edd8a8ed16d71a3f8f8 node-v0.10.2-x86.msi
diff --git a/doc/blog/release/v0.10.3.md b/doc/blog/release/v0.10.3.md
new file mode 100644
index 0000000000..288eb26384
--- /dev/null
+++ b/doc/blog/release/v0.10.3.md
@@ -0,0 +1,77 @@
+date: Wed Apr 3 11:24:08 PDT 2013
+version: 0.10.3
+category: release
+title: Node v0.10.3 (Stable)
+slug: node-v0-10-3-stable
+
+2013.04.03, Version 0.10.3 (Stable)
+
+* npm: Upgrade to 1.2.17
+
+* child_process: acknowledge sent handles (Fedor Indutny)
+
+* etw: update prototypes to match dtrace provider (Timothy J Fontaine)
+
+* dtrace: pass more arguments to probes (Dave Pacheco)
+
+* build: allow building with dtrace on osx (Dave Pacheco)
+
+* http: Remove legacy ECONNRESET workaround code (isaacs)
+
+* http: Ensure socket cleanup on client response end (isaacs)
+
+* tls: Destroy socket when encrypted side closes (isaacs)
+
+* repl: isSyntaxError() catches "strict mode" errors (Nathan Rajlich)
+
+* crypto: Pass options to ctor calls (isaacs)
+
+* src: tie process.versions.uv to uv_version_string() (Ben Noordhuis)
+
+
+Source Code: http://nodejs.org/dist/v0.10.3/node-v0.10.3.tar.gz
+
+Macintosh Installer (Universal): http://nodejs.org/dist/v0.10.3/node-v0.10.3.pkg
+
+Windows Installer: http://nodejs.org/dist/v0.10.3/node-v0.10.3-x86.msi
+
+Windows x64 Installer: http://nodejs.org/dist/v0.10.3/x64/node-v0.10.3-x64.msi
+
+Windows x64 Files: http://nodejs.org/dist/v0.10.3/x64/
+
+Linux 32-bit Binary: http://nodejs.org/dist/v0.10.3/node-v0.10.3-linux-x86.tar.gz
+
+Linux 64-bit Binary: http://nodejs.org/dist/v0.10.3/node-v0.10.3-linux-x64.tar.gz
+
+Solaris 32-bit Binary: http://nodejs.org/dist/v0.10.3/node-v0.10.3-sunos-x86.tar.gz
+
+Solaris 64-bit Binary: http://nodejs.org/dist/v0.10.3/node-v0.10.3-sunos-x64.tar.gz
+
+Other release files: http://nodejs.org/dist/v0.10.3/
+
+Website: http://nodejs.org/docs/v0.10.3/
+
+Documentation: http://nodejs.org/docs/v0.10.3/api/
+
+Shasums:
+
+```
+9b2f0936ee60aa65f6a5053e82440508aa9be0a7 node-v0.10.3-darwin-x64.tar.gz
+f0392db831ca58c1f7b2d857d7e8cc601ea8b022 node-v0.10.3-darwin-x86.tar.gz
+9a375e77f9994fbd4afd741bae64c548f2a43a64 node-v0.10.3-linux-x64.tar.gz
+3323da517271e45a3850b169b10ef3d254a263a9 node-v0.10.3-linux-x86.tar.gz
+0026e2453a3940ed16b9569b8187943ccf0aeb45 node-v0.10.3-sunos-x64.tar.gz
+af88ad2dc98368b36f1aafc7b79f8378169fc56e node-v0.10.3-sunos-x86.tar.gz
+e057c8841ddbe4dc8bc155a28b7e07dbe3d108d1 node-v0.10.3-x86.msi
+a37575d47de5696b8abb2e12dc3e9d0cdb5d17f6 node-v0.10.3.pkg
+4a1feb4ac18ede9e7193921f59fc181c88b1c7ba node-v0.10.3.tar.gz
+9d9266d1e69bfe24837c67ff755f055fd049cd48 node.exe
+8762416a5e0d71e285215efde181c7242f3f2c6f node.exp
+5c05f332070a77900010f15c1074c4e86e20fa0d node.lib
+a8dc61535f6ae5fd13bce9cdca989ffc113a4080 node.pdb
+b834751b2e9f18e6ef38cf9fe5331e6073e3cab2 x64/node-v0.10.3-x64.msi
+932c30a53f546717f00de063ee09fc8ce603dd2a x64/node.exe
+a3e91038e027c91a555116d2c20742eea2e9378f x64/node.exp
+d60bb0f9026df9dcc17cff0267964032aaf46712 x64/node.lib
+f645a2d63179ae749defe13c653cf1777dd9021a x64/node.pdb
+```
diff --git a/doc/blog/release/v0.11.0.md b/doc/blog/release/v0.11.0.md
new file mode 100644
index 0000000000..7f917b4247
--- /dev/null
+++ b/doc/blog/release/v0.11.0.md
@@ -0,0 +1,86 @@
+date: Thu Mar 28 14:52:55 PDT 2013
+version: 0.11.0
+category: release
+title: Node v0.11.0 (Unstable)
+slug: node-v0-11-0-stable
+
+2013.03.28, Version 0.11.0 (Unstable)
+
+* V8: update to 3.17.13
+
+* os: use %SystemRoot% or %windir% in os.tmpdir() (Suwon Chae)
+
+* util: fix util.inspect() line width calculation (Marcin Kostrzewa)
+
+* buffer: remove _charsWritten (Trevor Norris)
+
+* fs: uv_[fl]stat now reports subsecond resolution (Timothy J Fontaine)
+
+* fs: Throw if error raised and missing callback (bnoordhuis)
+
+* tls: expose SSL_CTX_set_timeout via tls.createServer (Manav Rathi)
+
+* tls: remove harmful unnecessary bounds checking (Marcel Laverdet)
+
+* buffer: write ascii strings using WriteOneByte (Trevor Norris)
+
+* dtrace: fix generation of v8 constants on freebsd (Fedor Indutny)
+
+* dtrace: x64 ustack helper (Fedor Indutny)
+
+* readline: handle wide characters properly (Nao Iizuka)
+
+* repl: Use a domain to catch async errors safely (isaacs)
+
+* repl: emit 'reset' event when context is reset (Sami Samhuri)
+
+* util: custom `inspect()` method may return an Object (Nathan Rajlich)
+
+* console: `console.dir()` bypasses inspect() methods (Nathan Rajlich)
+
+
+Source Code: http://nodejs.org/dist/v0.11.0/node-v0.11.0.tar.gz
+
+Macintosh Installer (Universal): http://nodejs.org/dist/v0.11.0/node-v0.11.0.pkg
+
+Windows Installer: http://nodejs.org/dist/v0.11.0/node-v0.11.0-x86.msi
+
+Windows x64 Installer: http://nodejs.org/dist/v0.11.0/x64/node-v0.11.0-x64.msi
+
+Windows x64 Files: http://nodejs.org/dist/v0.11.0/x64/
+
+Linux 32-bit Binary: http://nodejs.org/dist/v0.11.0/node-v0.11.0-linux-x86.tar.gz
+
+Linux 64-bit Binary: http://nodejs.org/dist/v0.11.0/node-v0.11.0-linux-x64.tar.gz
+
+Solaris 32-bit Binary: http://nodejs.org/dist/v0.11.0/node-v0.11.0-sunos-x86.tar.gz
+
+Solaris 64-bit Binary: http://nodejs.org/dist/v0.11.0/node-v0.11.0-sunos-x64.tar.gz
+
+Other release files: http://nodejs.org/dist/v0.11.0/
+
+Website: http://nodejs.org/docs/v0.11.0/
+
+Documentation: http://nodejs.org/docs/v0.11.0/api/
+
+Shasums:
+```
+4889d63a4a08d146d59cd057b1c8b341ceac07cf node-v0.11.0-darwin-x64.tar.gz
+4ef64fa36c095edfa3c6da852ed1ec46c6f3cf23 node-v0.11.0-darwin-x86.tar.gz
+04c4d1fb71f98dfc921d9558667a727ca1aa6586 node-v0.11.0-linux-x64.tar.gz
+b1507837292e23464e2d184007f2567db3db1483 node-v0.11.0-linux-x86.tar.gz
+cd195da08ea5208a6c08b95511fa888d750f4cd7 node-v0.11.0-sunos-x64.tar.gz
+4698b9a6cb911cbea3deac38ea191cef3051b3ab node-v0.11.0-sunos-x86.tar.gz
+829649fe65133459c7fc231b8d048f19ae870c7b node-v0.11.0-x86.msi
+7958b8212aaa9787724c552197d37cf5602ff645 node-v0.11.0.pkg
+0402aae18f847238409e9d1a5ddd806beb5fe678 node-v0.11.0.tar.gz
+320778de3329437815daa4f86d1a89db33458126 node.exe
+1f4f509a9dc48c519064ca7f2deddeaff2b6b15b node.exp
+5f83864acae194c0652a61af71262bd1ba55a04c node.lib
+0d100a18ba569e5e9bb9e216355959261c4cd77b node.pdb
+b55553c83e12f253f23dec4d998b05bd673db83b x64/node-v0.11.0-x64.msi
+7100ef58f9a8428d2bdd9d4de8ffb679d0198b1e x64/node.exe
+12bf810852e7097bde1bf4bff6cd7f802603cdb9 x64/node.exp
+28f83178241353dc727ba6d8ff38f9b9177be79a x64/node.lib
+6c0f43db501facc3d9ed542a090f9ba2e84bdc41 x64/node.pdb
+```