Skip to content

Commit

Permalink
Release 0.7.8
Browse files Browse the repository at this point in the history
  • Loading branch information
rauchg committed Aug 8, 2011
1 parent d86ffcf commit 65f1399
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -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
==================

Expand Down
2 changes: 1 addition & 1 deletion lib/socket.io.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ var client = require('socket.io-client');
* Version.
*/

exports.version = '0.7.7';
exports.version = '0.7.8';

/**
* Supported protocol version.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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"]
Expand All @@ -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"
}
Expand Down

0 comments on commit 65f1399

Please sign in to comment.