Skip to content

Commit

Permalink
Merge tag '0.9.12'
Browse files Browse the repository at this point in the history
Release 0.9.12

Conflicts:
	package.json
  • Loading branch information
rauchg committed Dec 13, 2012
2 parents 7537e25 + b2a8ed1 commit 8daa713
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
11 changes: 11 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@

0.9.12 / 2012-12-13
===================

* manager: fix for latest node which is returning a clone with `listeners` [viirya]

0.9.11 / 2012-11-02
===================

* package: move redis to optionalDependenices [3rd-Eden]
* bumped client

0.9.10 / 2012-08-10
===================

Expand Down
1 change: 1 addition & 0 deletions lib/manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ function Manager (server, options) {

// reset listeners
this.oldListeners = server.listeners('request').splice(0);
server.removeAllListeners('request');

server.on('request', function (req, res) {
self.handleRequest(req, res);
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.9.10';
exports.version = '0.9.11';

/**
* Supported protocol version.
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "socket.io"
, "version": "0.9.10"
, "version": "0.9.12"
, "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 @@ -16,10 +16,8 @@
, "url": "https://github.com/LearnBoost/socket.io.git"
}
, "dependencies": {
"socket.io-client": "0.9.10"
"socket.io-client": "0.9.11"
, "policyfile": "0.0.4"
, "ws": "~0.4.21"
, "base64id": "0.1.0"
}
, "devDependencies": {
"expresso": "0.9.2"
Expand All @@ -29,6 +27,9 @@
, "colors": "0.5.1"
, "redis": "0.7.2"
}
, "optionalDependencies": {
"redis": "0.7.3"
}
, "main": "index"
, "engines": { "node": ">= 0.4.0" }
, "scripts": {
Expand Down

0 comments on commit 8daa713

Please sign in to comment.