sockjs-client
Advanced tools
Comparing version 1.0.0-beta.6 to 1.0.0-beta.7
@@ -0,1 +1,7 @@ | ||
1.0.0-beta.7 | ||
==== | ||
* Upgrade `url-parse` to 0.1.5 to fix #218 | ||
* Don't strip basic auth from url - #219 | ||
1.0.0-beta.6 | ||
@@ -2,0 +8,0 @@ ==== |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -93,4 +93,10 @@ 'use strict'; | ||
// basic authentication | ||
parsedUrl.auth = parsedUrl.username | ||
? parsedUrl.username + ':' + parsedUrl.password + '@' | ||
: ''; | ||
// store the sanitized url | ||
this.url = parsedUrl.protocol + '//' + parsedUrl.hostname + (parsedUrl.port ? (':' + parsedUrl.port) : '') + parsedUrl.path; | ||
this.url = parsedUrl.protocol + '//' + parsedUrl.auth + parsedUrl.hostname + | ||
(parsedUrl.port ? ':' + parsedUrl.port : '') + parsedUrl.path; | ||
debug('using url', this.url); | ||
@@ -97,0 +103,0 @@ |
@@ -0,0 +0,0 @@ /* eslint-disable */ |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
module.exports = global.EventSource; |
module.exports = global.WebSocket || global.MozWebSocket; |
module.exports = require('faye-websocket').Client; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -1,1 +0,1 @@ | ||
module.exports = '1.0.0-beta.6'; | ||
module.exports = '1.0.0-beta.7'; |
{ | ||
"name": "sockjs-client", | ||
"description": "SockJS-client is a browser JavaScript library that provides a WebSocket-like object. SockJS gives you a coherent, cross-browser, Javascript API which creates a low latency, full duplex, cross-domain communication channel between the browser and the web server.", | ||
"version": "1.0.0-beta.6", | ||
"version": "1.0.0-beta.7", | ||
"author": "Bryce Kahle", | ||
@@ -32,3 +32,3 @@ "browser": { | ||
"json3": "^3.3.2", | ||
"url-parse": "^0.1.3" | ||
"url-parse": "^0.1.5" | ||
}, | ||
@@ -68,4 +68,5 @@ "devDependencies": { | ||
"test_local": "./node_modules/.bin/zuul --local 9090 -- tests/browser.js", | ||
"zuul": "./node_modules/.bin/zuul -- tests/browser.js" | ||
"zuul": "./node_modules/.bin/zuul -- tests/browser.js", | ||
"gulp": "./node_modules/.bin/gulp" | ||
} | ||
} |
@@ -0,0 +0,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
129750
3037
Updatedurl-parse@^0.1.5