Comparing version 2.1.0-0 to 2.1.0
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 @@ |
@@ -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", |
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
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
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 v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
106875
33
1281
0
1