Skip to content

Commit c3fa1bf

Browse files
committed
Release 0.7.7
1 parent 8798cfb commit c3fa1bf

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

History.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,26 @@
11

2+
0.7.7 / 2011-07-12
3+
==================
4+
5+
* Fixed double dispatch handling with emit to closed clients.
6+
* Added test for emitting to closed clients to prevent regression.
7+
* Fixed race condition in redis test.
8+
* Changed Transport#end instrumentation.
9+
* Leveraged $emit instead of emit internally.
10+
* Made tests faster.
11+
* Fixed double disconnect events.
12+
* Fixed disconnect logic
13+
* Simplified remote events handling in Socket.
14+
* Increased testcase timeout.
15+
* Fixed unknown room emitting (GH-291). [3rd-Eden]
16+
* Fixed `address` in handshakeData. [3rd-Eden]
17+
* Removed transports definition in chat example.
18+
* Fixed room cleanup
19+
* Fixed; make sure the client is cleaned up after booting.
20+
* Make sure to mark the client as non-open if the connection is closed.
21+
* Removed unneeded `buffer` declarations.
22+
* Fixed; make sure to clear socket handlers and subscriptions upon transport close.
23+
224
0.7.6 / 2011-06-30
325
==================
426

lib/socket.io.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var client = require('socket.io-client');
1515
* Version.
1616
*/
1717

18-
exports.version = '0.7.6';
18+
exports.version = '0.7.7';
1919

2020
/**
2121
* Supported protocol version.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "socket.io"
3-
, "version": "0.7.6"
3+
, "version": "0.7.7"
44
, "description": "Real-time apps made cross-browser & easy with a WebSocket-like API"
55
, "homepage": "http://socket.io"
66
, "keywords": ["websocket", "socket", "realtime", "socket.io", "comet", "ajax"]
@@ -15,7 +15,7 @@
1515
, "url": "https://github.com/LearnBoost/Socket.IO-node.git"
1616
}
1717
, "dependencies": {
18-
"socket.io-client": "0.7.3"
18+
"socket.io-client": "0.7.4"
1919
, "policyfile": "0.0.3"
2020
, "redis": "0.6.0"
2121
}

0 commit comments

Comments
 (0)