Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bugsnag

Package Overview
Dependencies
Maintainers
7
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bugsnag - npm Package Compare versions

Comparing version 2.1.0-0 to 2.1.0

scratch.js

10

CHANGELOG.md
Changelog
=========
## 2.1.0 (2018-01-08)
### Enhancements
* Support for tracking sessions and overall crash rate of web requests by setting `sessionTrackingEnabled` to `true`.
### Bug fixes
* Prevent duplicate logging when uncaught error report is not delivered (#124)
## 2.0.1 (2017-10-23)

@@ -5,0 +15,0 @@

8

lib/bugsnag.js

@@ -69,4 +69,8 @@ "use strict";

}
errorMsg.push("");
errorMsg.push(notifiedError.stack);
// only print caught errors at this point. uncaught errors get printed by
// the onUncaughtError function later so this prevents duplicate logs
if (!(Configuration.onUncaughtError && uncaughtError)) {
errorMsg.push("");
errorMsg.push(notifiedError.stack);
}
}

@@ -73,0 +77,0 @@ errorMsg.push("");

module.exports = {
name: "Bugsnag Node Notifier",
version: "2.1.0-0",
version: "2.1.0",
url: "https://github.com/bugsnag/bugsnag-node"
}
{
"name": "bugsnag",
"description": "Bugsnag notifier for node.js scripts",
"version": "2.1.0-0",
"version": "2.1.0",
"main": "./lib/bugsnag.js",

@@ -6,0 +6,0 @@ "typings": "./lib/bugsnag.d.ts",

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