faye-websocket
Advanced tools
Comparing version 0.6.0 to 0.6.1
@@ -0,1 +1,7 @@ | ||
### 0.6.1 / 2013-07-05 | ||
* Add `ca` option to the client for specifying certificate authorities | ||
* Start the server driver asynchronously so that `onopen` handlers can be added | ||
### 0.6.0 / 2013-05-12 | ||
@@ -2,0 +8,0 @@ |
@@ -31,3 +31,5 @@ // API references: | ||
this._driver.start(); | ||
process.nextTick(function() { | ||
self._driver.start(); | ||
}); | ||
}; | ||
@@ -34,0 +36,0 @@ util.inherits(WebSocket, API); |
@@ -24,3 +24,3 @@ var util = require('util'), | ||
if (options && options.verify === false) tlsOptions.rejectUnauthorized = false; | ||
if (options && options.ca) tlsOptions.ca = options.ca; | ||
@@ -27,0 +27,0 @@ var connection = secure |
@@ -6,23 +6,18 @@ { "name" : "faye-websocket" | ||
, "keywords" : ["websocket", "eventsource"] | ||
, "license" : "MIT" | ||
, "version" : "0.6.0" | ||
, "version" : "0.6.1" | ||
, "engines" : {"node": ">=0.4.0"} | ||
, "main" : "./lib/faye/websocket" | ||
, "dependencies" : {"websocket-driver": ">=0.2.0"} | ||
, "devDependencies" : {"jsclass": "", "pace": ""} | ||
, "devDependencies" : {"jstest": "", "pace": ""} | ||
, "scripts" : {"test": "node spec/runner.js"} | ||
, "scripts" : {"test": "jstest spec/runner.js"} | ||
, "repository" : { "type" : "git" | ||
, "url" : "git://github.com/faye/faye-websocket-node.git" | ||
} | ||
, "bugs" : "http://github.com/faye/faye-websocket-node/issues" | ||
, "licenses" : [ { "type" : "MIT" | ||
, "url" : "http://www.opensource.org/licenses/mit-license.php" | ||
} | ||
] | ||
, "repositories" : [ { "type" : "git" | ||
, "url" : "git://github.com/faye/faye-websocket-node.git" | ||
} | ||
] | ||
} | ||
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
29572
401
1