New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

beseda

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

beseda - npm Package Compare versions

Comparing version 0.2.1 to 0.2.2

7

CHANGELOG.md
Changelog
======
Version 0.2.2
---
March 29, 2012
* Fix Opera cross-domain XHR
Version 0.2.1

@@ -5,0 +12,0 @@ ---

6

client/js/lib/beseda/transport/LongPolling.js

@@ -30,3 +30,7 @@ /**

BesedaPackage.transport.LongPolling.isAvailable = function(options) {
return !!+'\v1' || window.XDomainRequest;
if (/(opera)(?:.*version)?[ \/]([\w.]+)/.test(navigator.userAgent.toLowerCase())) {
return document.location.hostname == options.host && (document.location.port || 80) == options.port;
} else {
return !!+'\v1' || window.XDomainRequest;
}
};

@@ -33,0 +37,0 @@

2

package.json
{
"name": "beseda",
"version": "0.2.1",
"version": "0.2.2",
"description": "Beseda is fast, well designed and featured Pub/Sub server. Beseda offers multiple platform API to develop realtime web applications.",

@@ -5,0 +5,0 @@ "keywords" : ["pub/sub", "commet", "bayeux", "realtime", "push", "WebSocket"],

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc