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

@bugsnag/delivery-x-domain-request

Package Overview
Dependencies
Maintainers
9
Versions
106
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bugsnag/delivery-x-domain-request - npm Package Compare versions

Comparing version 7.19.0 to 8.0.0-alpha.0

10

delivery.js

@@ -5,2 +5,7 @@ const payload = require('@bugsnag/core/lib/json-payload')

sendEvent: (event, cb = () => {}) => {
if (client._config.endpoints.notify === null) {
const err = new Error('Event not sent due to incomplete endpoint configuration')
return cb(err)
}
const url = getApiUrl(client._config, 'notify', '4', win)

@@ -32,2 +37,7 @@ const body = payload.event(event, client._config.redactedKeys)

sendSession: (session, cb = () => {}) => {
if (client._config.endpoints.sessions === null) {
const err = new Error('Session not sent due to incomplete endpoint configuration')
return cb(err)
}
const url = getApiUrl(client._config, 'sessions', '1', win)

@@ -34,0 +44,0 @@ const req = new win.XDomainRequest()

6

package.json
{
"name": "@bugsnag/delivery-x-domain-request",
"version": "7.19.0",
"version": "8.0.0-alpha.0",
"main": "delivery.js",

@@ -20,3 +20,3 @@ "description": "@bugsnag/js delivery mechanism for IE 8, 9 and 10",

"devDependencies": {
"@bugsnag/core": "^7.19.0"
"@bugsnag/core": "^8.0.0-alpha.0"
},

@@ -26,3 +26,3 @@ "peerDependencies": {

},
"gitHead": "95d2c3dd978e7dc5a6fda5664cfa9cf437b03b76"
"gitHead": "82e2b730b6228deaebcfe512a2fce3ce7d4dee1b"
}
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