Skip to content

Commit 02adcb5

Browse files
committed
meta: bump the storybook group with 4 updates
1 parent 4c7c5e0 commit 02adcb5

File tree

478 files changed

+74773
-430
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

478 files changed

+74773
-430
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
date: '2011-10-22T02:12:31.000Z'
3+
category: release
4+
title: Node.js v0.5.10
5+
layout: blog-post
6+
author: Ryan Dahl
7+
---
8+
9+
2011.10.21, Version 0.5.10 (unstable)
10+
11+
- Remove cmake build system, support for Cygwin, legacy code base, process.ENV, process.ARGV, process.memoryUsage().vsize, os.openOSHandle
12+
- Documentation improvements (Igor Zinkovsky, Bert Belder, Ilya Dmitrichenko, koichik, Maciej Małecki, Guglielmo Ferri, isaacs)
13+
- Performance improvements (Daniel Ennis, Bert Belder, Ben Noordhuis)
14+
- Long process.title support (Ben Noordhuis)
15+
- net: register net.Server callback only once (Simen Brekken)
16+
- net: fix connect queue bugs (Ben Noordhuis)
17+
- debugger: fix backtrace err handling (Fedor Indutny)
18+
- Use getaddrinfo instead of c-ares for dns.lookup
19+
- Emit 'end' from crypto streams on close
20+
- repl: print out `undefined` (Nathan Rajlich)
21+
- #1902 buffer: use NO_NULL_TERMINATION flag (koichik)
22+
- #1907 http: Added support for HTTP PATCH verb (Thomas Parslow)
23+
- #1644 add GetCPUInfo on windows (Karl Skomski)
24+
- #1484, #1834, #1482, #771 Don't use a separate context for the repl. (isaacs)
25+
- #1882 zlib Update 'availOutBefore' value, and test (isaacs)
26+
- #1888 child_process.fork: don't modify args (koichik)
27+
- #1516 tls: requestCert unusable with Firefox and Chrome (koichik)
28+
- #1467 tls: The TLS API is inconsistent with the TCP API (koichik)
29+
- #1894 net: fix error handling in listen() (koichik)
30+
- #1860 console.error now goes through uv_tty_t
31+
- Upgrade V8 to 3.7.0
32+
- Upgrade GYP to r1081
33+
34+
Download: [https://nodejs.org/dist/v0.5.10/node-v0.5.10.tar.gz](https://nodejs.org/dist/v0.5.10/node-v0.5.10.tar.gz)
35+
36+
Windows Executable: [https://nodejs.org/dist/v0.5.10/node.exe](https://nodejs.org/dist/v0.5.10/node.exe)
37+
38+
Website: [https://nodejs.org/docs/v0.5.10/](https://nodejs.org/docs/v0.5.10/)
39+
40+
Documentation: [https://nodejs.org/docs/v0.5.10/api/](https://nodejs.org/docs/v0.5.10/api/)
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
date: '2011-07-22T18:40:22.000Z'
3+
category: release
4+
title: Node.js v0.5.2
5+
layout: blog-post
6+
author: Ryan Dahl
7+
---
8+
9+
2011.07.22, Version 0.5.2 (unstable)
10+
11+
- libuv improvements; named pipe support
12+
- #1242 check for SSL_COMP_get_compression_methods() (Ben Noordhuis)
13+
- #1348 remove require.paths (isaacs)
14+
- #1349 Delimit NODE_PATH with ; on Windows (isaacs)
15+
- #1335 Remove EventEmitter from C++
16+
- #1357 Load json files with require() (isaacs)
17+
- #1374 fix setting ServerResponse.statusCode in writeHead (Trent Mick)
18+
- Fixed: GC was being run too often.
19+
- Upgrade V8 to 3.4.14
20+
- doc improvements
21+
22+
Download: [https://nodejs.org/dist/v0.5.2/node-v0.5.2.tar.gz](https://nodejs.org/dist/v0.5.2/node-v0.5.2.tar.gz)
23+
24+
Windows Executable: [https://nodejs.org/dist/v0.5.2/node.exe](https://nodejs.org/dist/v0.5.2/node.exe)
25+
26+
Website: [https://nodejs.org/dist/v0.5.2/docs/](https://nodejs.org/dist/v0.5.2/docs/)
27+
28+
Documentation: [https://nodejs.org/dist/v0.5.2/docs/api/](https://nodejs.org/dist/v0.5.2/docs/api/)
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
date: '2011-08-02T15:03:06.000Z'
3+
category: release
4+
title: Node.js v0.5.3
5+
layout: blog-post
6+
author: Ryan Dahl
7+
---
8+
9+
2011.08.01, Version 0.5.3 (unstable)
10+
11+
- Fix crypto encryption/decryption with Base64. (SAWADA Tadashi)
12+
- #243 Add an optional length argument to Buffer.write() (koichik)
13+
- #657 convert nonbuffer data to string in fs.writeFile/Sync (Daniel Pihlström)
14+
- Add process.features, remove process.useUV (Ben Noordhuis)
15+
- #324 Fix crypto hmac to accept binary keys + add test cases from rfc 2202 and 4231 (Stefan Bühler)
16+
- Add Socket::bytesRead, Socket::bytesWritten (Alexander Uvarov)
17+
- #572 Don't print result of --eval in CLI (Ben Noordhuis)
18+
- #1223 Fix http.ClientRequest crashes if end() was called twice (koichik)
19+
- #1383 Emit 'close' after all connections have closed (Felix Geisendörfer)
20+
- Add sprintf-like util.format() function (Ben Noordhuis)
21+
- Add support for TLS SNI (Fedor Indutny)
22+
- New http agent implementation. Off by default the command line flag `--use-http2` will enable it. `make test-http2` will run the tests for the new implementation. (Mikeal Rogers)
23+
- Revert AMD compatibility. (isaacs)
24+
- Windows: improvements, child_process support.
25+
- Remove pkg-config file.
26+
- Fix startup time regressions.
27+
- doc improvements
28+
29+
Download: [https://nodejs.org/dist/v0.5.3/node-v0.5.3.tar.gz](https://nodejs.org/dist/v0.5.3/node-v0.5.3.tar.gz)
30+
31+
Windows Executable: [https://nodejs.org/dist/v0.5.3/node.exe](https://nodejs.org/dist/v0.5.3/node.exe)
32+
33+
Website: [https://nodejs.org/dist/v0.5.3/docs](https://nodejs.org/dist/v0.5.3/docs)
34+
35+
Documentation: [https://nodejs.org/dist/v0.5.3/docs/api/](https://nodejs.org/dist/v0.5.3/docs/api/)
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
date: '2011-08-12T15:38:26.000Z'
3+
category: release
4+
title: Node.js v0.5.4
5+
layout: blog-post
6+
author: Ryan Dahl
7+
---
8+
9+
2011.08.12, Version 0.5.4 (unstable)
10+
11+
- libuv/Windows compatibility improvements
12+
- Build on Microsoft Visual Studio via GYP. Use generate-projects.bat in the to build sln files. (Peter Bright, Igor Zinkovsky)
13+
- Make Mikeal's HTTP agent client the default. Use old HTTP client with `--use-http1`
14+
- Fixes https host header default port handling. (Mikeal Rogers)
15+
- #1440 strip byte order marker when loading \*.js and \*.json files (Ben Noordhuis)
16+
- #1434 Improve util.format() compatibility with browser. (Koichi Kobayashi)
17+
- Provide unchecked uint entry points for integer Buffer.read/writeInt methods. (Robert Mustacchi)
18+
- CMake improvements (Tom Huges)
19+
- Upgrade V8 to 3.5.4.
20+
21+
Download: [https://nodejs.org/dist/v0.5.4/node-v0.5.4.tar.gz](https://nodejs.org/dist/v0.5.4/node-v0.5.4.tar.gz)
22+
23+
Windows Executable: [https://nodejs.org/dist/v0.5.4/node.exe](https://nodejs.org/dist/v0.5.4/node.exe)
24+
25+
Website: [https://nodejs.org/dist/v0.5.4/docs](https://nodejs.org/dist/v0.5.4/docs)
26+
27+
Documentation: [https://nodejs.org/dist/v0.5.4/docs/api/](https://nodejs.org/dist/v0.5.4/docs/api/)
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
date: '2011-08-27T06:20:10.000Z'
3+
category: release
4+
title: Node.js v0.5.5
5+
layout: blog-post
6+
author: Ben Noordhuis
7+
---
8+
9+
2011.08.26, Version 0.5.5 (unstable)
10+
11+
- typed arrays, implementation from Plesk
12+
- fix IP multicast on SmartOS
13+
- fix DNS lookup order: IPv4 first, IPv6 second (--use-uv only)
14+
- remove support for UNIX datagram sockets (--use-uv only)
15+
- UDP support for Windows (Bert Belder)
16+
- #1572 improve tab completion for objects in the REPL (Nathan Rajlich)
17+
- #1563 fix buffer overflow in child_process module (reported by Dean McNamee)
18+
- #1546 fix performance regression in http module (reported by Brian Geffon)
19+
- #1491 add PBKDF2 crypto support (Glen Low)
20+
- #1447 remove deprecated http.cat() function (Mikeal Rogers)
21+
- #1140 fix incorrect dispatch of vm.runInContext's filename argument (Antranig Basman)
22+
- #1140 document vm.runInContext() and vm.createContext() (Antranig Basman)
23+
- #1428 fix os.freemem() on 64 bits freebsd (Artem Zaytsev)
24+
- #1164 make all DNS lookups async, fixes uncatchable exceptions (Koichi Kobayashi)
25+
- fix incorrect ssl shutdown check (Tom Hughes)
26+
- various cmake fixes (Tom Hughes)
27+
- improved documentation (Koichi Kobayashi, Logan Smyth, Fedor Indutny, Mikeal Rogers, Maciej Małecki, Antranig Basman, Mickaël Delahaye)
28+
- upgrade libuv to commit 835782a
29+
- upgrade V8 to 3.5.8
30+
31+
Download: [https://nodejs.org/dist/node-v0.5.5.tar.gz](https://nodejs.org/dist/node-v0.5.5.tar.gz)
32+
33+
Windows Executable: [https://nodejs.org/dist/v0.5.5/node.exe](https://nodejs.org/dist/v0.5.5/node.exe)
34+
35+
Website: [https://nodejs.org/docs/v0.5.5/](https://nodejs.org/docs/v0.5.5/)
36+
37+
Documentation: [https://nodejs.org/docs/v0.5.5/api/](https://nodejs.org/docs/v0.5.5/api/)
38+
39+
**Update:** The `.exe` has a bug that results in incompatibility with Windows XP and Server 2003. This has been reported in [issue #1592](https://github.com/joyent/node/issues/1592) and fixed. A new binary was made that is compatible with the older Windows: [https://nodejs.org/dist/v0.5.5/node-186364e.exe](https://nodejs.org/dist/v0.5.5/node-186364e.exe).
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
date: '2011-09-09T23:30:39.000Z'
3+
category: release
4+
title: Node.js v0.5.6 (unstable)
5+
layout: blog-post
6+
author: piscisaureus
7+
---
8+
9+
2011.09.08, Version 0.5.6 (unstable)
10+
11+
- #345, #1635, #1648 Documentation improvements (Thomas Shinnick, Abimanyu Raja, AJ ONeal, Koichi Kobayashi, Michael Jackson, Logan Smyth, Ben Noordhuis)
12+
- #650 Improve path parsing on windows (Bert Belder)
13+
- #752 Remove headers sent check in OutgoingMessage.getHeader() (Peter Lyons)
14+
- #1236, #1438, #1506, #1513, #1621, #1640, #1647 Libuv-related bugs fixed (Jorge Chamorro Bieling, Peter Bright, Luis Lavena, Igor Zinkovsky)
15+
- #1296, #1612 crypto: Fix BIO's usage. (Koichi Kobayashi)
16+
- #1345 Correctly set socket.remoteAddress with libuv backend (Bert Belder)
17+
- #1429 Don't clobber quick edit mode on windows (Peter Bright)
18+
- #1503 Make libuv backend default on unix, override with `node --use-legacy`
19+
- #1565 Fix fs.stat for paths ending with \\ on windows (Igor Zinkovsky)
20+
- #1568 Fix x509 certificate subject parsing (Koichi Kobayashi)
21+
- #1586 Make socket write encoding case-insensitive (Koichi Kobayashi)
22+
- #1591, #1656, #1657 Implement fs in libuv, remove libeio and pthread-win32 dependency on windows (Igor Zinkovsky, Ben Noordhuis, Ryan Dahl, Isaac Schlueter)
23+
- #1592 Don't load-time link against CreateSymbolicLink on windows (Peter Bright)
24+
- #1601 Improve API consistency when dealing with the socket underlying a HTTP client request (Mikeal Rogers)
25+
- #1610 Remove DigiNotar CA from trusted list (Isaac Schlueter)
26+
- #1617 Added some win32 os functions (Karl Skomski)
27+
- #1624 avoid buffer overrun with 'binary' encoding (Koichi Kobayashi)
28+
- #1633 make Buffer.write() always set \_charsWritten (Koichi Kobayashi)
29+
- #1644 Windows: set executables to be console programs (Peter Bright)
30+
- #1651 improve inspection for sparse array (Koichi Kobayashi)
31+
- #1672 set .code='ECONNRESET' on socket hang up errors (Ben Noordhuis)
32+
- Add test case for foaf+ssl client certificate (Niclas Hoyer)
33+
- Added RPATH environment variable to override run-time library paths (Ashok Mudukutore)
34+
- Added TLS client-side session resumption support (Sean Cunningham)
35+
- Added additional properties to getPeerCertificate (Nathan Rixham, Niclas Hoyer)
36+
- Don't eval repl command twice when an error is thrown (Nathan Rajlich)
37+
- Improve util.isDate() (Nathan Rajlich)
38+
- Improvements in libuv backend and bindings, upgrade libuv to bd6066cb349a9b3a1b0d87b146ddaee06db31d10
39+
- Show warning when using lib/sys.js (Maciej Malecki)
40+
- Support plus sign in url protocol (Maciej Malecki)
41+
- Upgrade V8 to 3.6.2
42+
43+
Download: [https://nodejs.org/dist/v0.5.6/node-v0.5.6.tar.gz](https://nodejs.org/dist/v0.5.6/node-v0.5.6.tar.gz)
44+
45+
Windows Executable: [https://nodejs.org/dist/v0.5.6/node.exe](https://nodejs.org/dist/v0.5.6/node.exe)
46+
47+
Website: [https://nodejs.org/docs/v0.5.6/](https://nodejs.org/docs/v0.5.6/)
48+
49+
Documentation: [https://nodejs.org/docs/v0.5.6/api/](https://nodejs.org/docs/v0.5.6/api/)
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
date: '2011-09-17T01:57:03.000Z'
3+
category: release
4+
title: Node.js v0.5.7 (unstable)
5+
layout: blog-post
6+
author: Ryan Dahl
7+
---
8+
9+
2011.09.16, Version 0.5.7 (unstable)
10+
11+
- Upgrade V8 to 3.6.4
12+
- Improve Windows compatibility
13+
- Documentation improvements
14+
- Debugger and REPL improvements (Fedor Indutny)
15+
- Add legacy API support: net.Stream(fd), process.stdout.writable, process.stdout.fd
16+
- Fix mkdir EEXIST handling (isaacs)
17+
- Use net_uv instead of net_legacy for stdio
18+
- Do not load readline from util.inspect
19+
- #1673 Fix bug related to V8 context with accessors (Fedor Indutny)
20+
- #1634 util: Fix inspection for Error (koichik)
21+
- #1645 fs: Add positioned file writing feature to fs.WriteStream (Thomas Shinnick)
22+
- #1637 fs: Unguarded fs.watchFile cache statWatchers checking fixed (Thomas Shinnick)
23+
- #1695 Forward customFds to ChildProcess.spawn
24+
- #1707 Fix hasOwnProperty security problem in querystring (isaacs)
25+
- #1719 Drain OpenSSL error queue
26+
27+
Download: [https://nodejs.org/dist/v0.5.7/node-v0.5.7.tar.gz](https://nodejs.org/dist/v0.5.7/node-v0.5.7.tar.gz)
28+
29+
Windows Executable: [https://nodejs.org/dist/v0.5.7/node.exe](https://nodejs.org/dist/v0.5.7/node.exe)
30+
31+
Website: [https://nodejs.org/docs/v0.5.7/](https://nodejs.org/docs/v0.5.7/)
32+
33+
Documentation: [https://nodejs.org/docs/v0.5.7/api/](https://nodejs.org/docs/v0.5.7/api/)
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
date: '2011-09-30T23:47:11.000Z'
3+
category: release
4+
title: Node.js v0.5.8
5+
layout: blog-post
6+
author: Ryan Dahl
7+
---
8+
9+
2011.09.30, Version 0.5.8 (unstable)
10+
11+
- zlib bindings (isaacs)
12+
- Windows supports TTY ANSI escape codes (Bert Belder)
13+
- Debugger improvements (Fedor Indutny)
14+
- crypto: look up SSL errors with ERR_print_errors() (Ben Noordhuis)
15+
- dns callbacks go through MakeCallback now
16+
- Raise an error when a malformed package.json file is found. (Ben Leslie)
17+
- buffers: handle bad length argument in constructor (Ben Noordhuis)
18+
- #1726, unref process.stdout
19+
- Doc improvements (Ben Noordhuis, Fedor Indutny, koichik)
20+
- Upgrade libuv to fe18438
21+
22+
Download: [https://nodejs.org/dist/v0.5.8/node-v0.5.8.tar.gz](https://nodejs.org/dist/v0.5.8/node-v0.5.8.tar.gz)
23+
24+
Windows Executable: [https://nodejs.org/dist/v0.5.8/node.exe](https://nodejs.org/dist/v0.5.8/node.exe)
25+
26+
Website: [https://nodejs.org/docs/v0.5.8/](https://nodejs.org/docs/v0.5.8/)
27+
28+
Documentation: [https://nodejs.org/docs/v0.5.8/api/](https://nodejs.org/docs/v0.5.8/api/)
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
date: '2011-10-11T02:06:21.000Z'
3+
category: release
4+
title: Node.js v0.5.9
5+
layout: blog-post
6+
author: Ryan Dahl
7+
---
8+
9+
2011.10.10, Version 0.5.9 (unstable)
10+
11+
- fs.watch interface backed by kqueue, inotify, and ReadDirectoryChangesW (Igor Zinkovsky, Ben Noordhuis)
12+
- add dns.resolveTxt (Christian Tellnes)
13+
- Remove legacy http library (Ben Noordhuis)
14+
- child_process.fork returns and works on Windows. Allows passing handles. (Igor Zinkovsky, Bert Belder)
15+
- #1774 Lint and clean up for --harmony_block_scoping (Tyler Larson, Colton Baker)
16+
- #1813 Fix ctrl+c on Windows (Bert Belder)
17+
- #1844 unbreak --use-legacy (Ben Noordhuis)
18+
- process.stderr now goes through libuv. Both process.stdout and process.stderr are blocking when referencing a TTY.
19+
- net_uv performance improvements (Ben Noordhuis, Bert Belder)
20+
21+
Download: [https://nodejs.org/dist/v0.5.9/node-v0.5.9.tar.gz](https://nodejs.org/dist/v0.5.9/node-v0.5.9.tar.gz)
22+
23+
Windows Executable: [https://nodejs.org/dist/v0.5.9/node.exe](https://nodejs.org/dist/v0.5.9/node.exe)
24+
25+
Website: [https://nodejs.org/docs/v0.5.9/](https://nodejs.org/docs/v0.5.9/)
26+
27+
Documentation: [https://nodejs.org/docs/v0.5.9/api/](https://nodejs.org/docs/v0.5.9/api/)
Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
---
2+
date: '2011-11-05T09:07:10.000Z'
3+
category: release
4+
title: Node.js v0.6.0
5+
layout: blog-post
6+
author: Ryan Dahl
7+
---
8+
9+
We are happy to announce the third stable branch of Node v0.6. We will be freezing JavaScript, C++, and binary interfaces for all v0.6 releases.
10+
11+
The major differences between v0.4 and v0.6 are
12+
13+
- Native Windows support using I/O Completion Ports for sockets.
14+
- Integrated load balancing over multiple processes. [docs](https://nodejs.org/docs/v0.6.0/api/cluster.html)
15+
- Better support for IPC between Node instances [docs](https://nodejs.org/docs/v0.6.0/api/child_processes.html#child_process.fork)
16+
- Improved command line debugger [docs](https://nodejs.org/docs/v0.6.0/api/debugger.html)
17+
- Built-in binding to zlib for compression [docs](https://nodejs.org/docs/v0.6.0/api/zlib.html)
18+
- Upgrade v8 from 3.1 to 3.6
19+
20+
In order to support Windows we reworked much of the core architecture. There was some fear that our work would degrade performance on UNIX systems but this was not the case. Here is a Linux system we benched for demonstration:
21+
22+
| | v0.4.12 (linux) | v0.6.0 (linux) |
23+
| -------------------------- | --------------- | -------------- |
24+
| http_simple.js /bytes/1024 | 5461 r/s | 6263 r/s |
25+
| io.js read | 19.75 mB/s | 26.63 mB/s |
26+
| io.js write | 21.60 mB/s | 17.40 mB/s |
27+
| startup.js | 74.7 ms | 49.6 ms |
28+
29+
Bigger is better in http and io benchmarks, smaller is better in startup. The http benchmark was done with 600 clients on a 10GE network served from three load generation machines.
30+
31+
In the last version of Node, v0.4, we could only run Node on Windows with Cygwin. Therefore we've gotten massive improvements by targeting the native APIs. Benchmarks on the same machine:
32+
33+
| | v0.4.12 (windows) | v0.6.0 (windows) |
34+
| -------------------------- | ----------------- | ---------------- |
35+
| http_simple.js /bytes/1024 | 3858 r/s | 5823 r/s |
36+
| io.js read | 12.41 mB/s | 26.51 mB/s |
37+
| io.js write | 12.61 mB/s | 33.58 mB/s |
38+
| startup.js | 152.81 ms | 52.04 ms |
39+
40+
We consider this a good intermediate stage for the Windows port. There is still work to be done. For example, we are not yet providing users with a blessed path for building addon modules in MS Visual Studio. Work will continue in later releases.
41+
42+
For users upgrading code bases from v0.4 to v0.6 [we've documented](https://github.com/joyent/node/wiki/API-changes-between-v0.4-and-v0.6) most of the issues that you will run into. Most people find the change painless. Despite the long list of changes most core APIs remain untouched.
43+
44+
Our release cycle will be tightened dramatically now. Expect to see a new stable branch in January. We wish to eventually have our releases in sync with Chrome and V8's 6 week cycle.
45+
46+
Thank you to everyone who contributed code, tests, docs, or sent in bug reports.
47+
48+
Here are the changes between v0.5.12 and v0.6.0:
49+
50+
2011.11.04, Version 0.6.0 (stable)
51+
52+
- print undefined on undefined values in REPL (Nathan Rajlich)
53+
- doc improvements (koichik, seebees, bnoordhuis, Maciej Małecki, Jacob Kragh)
54+
- support native addon loading in windows (Bert Belder)
55+
- rename getNetworkInterfaces() to networkInterfaces() (bnoordhuis)
56+
- add pending accepts knob for windows (igorzi)
57+
- http.request(url.parse(x)) (seebees)
58+
- #1929 zlib Respond to 'resume' events properly (isaacs)
59+
- stream.pipe: Remove resume and pause events
60+
- test fixes for windows (igorzi)
61+
- build system improvements (bnoordhuis)
62+
- #1936 tls: does not emit 'end' from EncryptedStream (koichik)
63+
- #758 tls: add address(), remoteAddress/remotePort
64+
- #1399 http: emit Error object after .abort() (bnoordhuis)
65+
- #1999 fs: make mkdir() default to 0777 permissions (bnoordhuis)
66+
- #2001 fix pipe error codes
67+
- #2002 Socket.write should reset timeout timer
68+
- stdout and stderr are blocking when associated with file too.
69+
- remote debugger support on windows (Bert Belder)
70+
- convenience methods for zlib (Matt Robenolt)
71+
- process.kill support on windows (igorzi)
72+
- process.uptime() support on windows (igorzi)
73+
- Return IPv4 addresses before IPv6 addresses from getaddrinfo
74+
- util.inspect improvements (Nathan Rajlich)
75+
- cluster module api changes
76+
- Downgrade V8 to 3.6.6.6
77+
78+
Download: [https://nodejs.org/dist/v0.6.0/node-v0.6.0.tar.gz](https://nodejs.org/dist/v0.6.0/node-v0.6.0.tar.gz)
79+
80+
Windows Executable: [https://nodejs.org/dist/v0.6.0/node.exe](https://nodejs.org/dist/v0.6.0/node.exe)
81+
82+
Website: [https://nodejs.org/docs/v0.6.0/](https://nodejs.org/docs/v0.6.0/)
83+
84+
Documentation: [https://nodejs.org/docs/v0.6.0/api/](https://nodejs.org/docs/v0.6.0/api/)

0 commit comments

Comments
 (0)