Release 0.7.8

This commit is contained in:
Guillermo Rauch
2011-08-08 08:06:30 -07:00
parent d86ffcf06d
commit 65f1399a44
3 changed files with 21 additions and 3 deletions

View File

@@ -1,4 +1,22 @@
0.7.8 / 2011-08-08
==================
* Changed; make sure sio#listen passes options to both HTTP server and socket.io manager.
* Added docs for sio#listen.
* Added options parameter support for Manager constructor.
* Added memory leaks tests and test-leaks Makefile task.
* Removed auto npm-linking from make test.
* Make sure that you can disable heartbeats. [3rd-Eden]
* Fixed rooms memory leak [3rd-Eden]
* Send response once we got all POST data, not immediately [Pita]
* Fixed onLeave behavior with missing clientsk [3rd-Eden]
* Prevent duplicate references in rooms.
* Added alias for `to` to `in` and `in` to `to`.
* Fixed roomClients definition.
* Removed dependency on redis for installation without npm [3rd-Eden]
* Expose path and querystring in handshakeData [3rd-Eden]
0.7.7 / 2011-07-12
==================

View File

@@ -15,7 +15,7 @@ var client = require('socket.io-client');
* Version.
*/
exports.version = '0.7.7';
exports.version = '0.7.8';
/**
* Supported protocol version.

View File

@@ -1,6 +1,6 @@
{
"name": "socket.io"
, "version": "0.7.7"
, "version": "0.7.8"
, "description": "Real-time apps made cross-browser & easy with a WebSocket-like API"
, "homepage": "http://socket.io"
, "keywords": ["websocket", "socket", "realtime", "socket.io", "comet", "ajax"]
@@ -15,7 +15,7 @@
, "url": "https://github.com/LearnBoost/Socket.IO-node.git"
}
, "dependencies": {
"socket.io-client": "0.7.4"
"socket.io-client": "0.7.5"
, "policyfile": "0.0.4"
, "redis": "0.6.6"
}