-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
46 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,45 @@ | ||
2010.02.09, Version 0.1.28 | ||
2010.02.17, Version 0.1.29 | ||
|
||
* Major API Changes | ||
- Remove 'file' module | ||
- require('posix') -----------------> require('fs') | ||
- fs.cat ---------------------------> fs.readFile | ||
- file.write -----------------------> fs.writeFile | ||
- TCP 'receive' event --------------> 'data' | ||
- TCP 'eof' event ------------------> 'end' | ||
- TCP send() -----------------------> write() | ||
- HTTP sendBody() ------------------> write() | ||
- HTTP finish() --------------------> close() | ||
- HTTP 'body' event ----------------> 'data' | ||
- HTTP 'complete' event ------------> 'end' | ||
- http.Client.prototype.close() (formerly finish()) no longer | ||
takes an argument. Add the 'response' listener manually. | ||
- Allow strings for the flag argument to fs.open | ||
("r", "r+", "w", "w+", "a", "a+") | ||
|
||
* Added multiple arg support for sys.puts(), print(), etc. | ||
([email protected]) | ||
|
||
* sys.inspect(Date) now shows the date value (Mark Hansen) | ||
|
||
* Calculate page size with getpagesize for armel (Jérémy Lal) | ||
|
||
* Bugfix: stderr flushing. | ||
|
||
* Bugfix: Promise late chain (Yuichiro MASUI) | ||
|
||
* Bugfix: wait() on fired promises | ||
(Felix Geisendörfer, Jonas Pfenniger) | ||
|
||
* Bugfix: Use InstanceTemplate() instead of PrototypeTemplate() for | ||
accessor methods. Was causing a crash with Eclipse debugger. | ||
(Zoran Tomicic) | ||
|
||
* Bugfix: Throw from connection.connect if resolving. | ||
(Reported by James Golick) | ||
|
||
|
||
2010.02.09, Version 0.1.28, 49de41ef463292988ddacfb01a20543b963d9669 | ||
|
||
* Use Google's jsmin.py which can be used for evil. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
NODE(1) | ||
======= | ||
Ryan Dahl <ry@tinyclouds.org> | ||
Version, 0.1.28, 2010.02.09 | ||
Version, 0.1.29, 2010.02.17 | ||
|
||
|
||
== NAME | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters