@bugsnag/browser-performance
Advanced tools
Comparing version 2.10.0 to 2.10.1
@@ -15,3 +15,3 @@ function toHex(value) { | ||
const randomValues = window.crypto.getRandomValues(bytes); | ||
return Array.from(randomValues, toHex).join(''); | ||
return Array.from(randomValues).map(toHex).join(''); | ||
} | ||
@@ -18,0 +18,0 @@ }; |
@@ -8,3 +8,3 @@ import cuid from '@bugsnag/cuid'; | ||
return function resourceAttributesSource(config) { | ||
const attributes = new ResourceAttributes(config.releaseStage, config.appVersion, config.serviceName, 'bugsnag.performance.browser', '2.10.0', config.logger); | ||
const attributes = new ResourceAttributes(config.releaseStage, config.appVersion, config.serviceName, 'bugsnag.performance.browser', '2.10.1', config.logger); | ||
attributes.set('browser.user_agent', navigator.userAgent); | ||
@@ -11,0 +11,0 @@ // chromium only |
{ | ||
"name": "@bugsnag/browser-performance", | ||
"version": "2.10.0", | ||
"version": "2.10.1", | ||
"description": "BugSnag performance monitoring for browsers", | ||
@@ -38,3 +38,3 @@ "homepage": "https://www.bugsnag.com/", | ||
], | ||
"gitHead": "6bf8145b62dc525c96884d2bcebaca2e168da198" | ||
"gitHead": "31fd693c5baaa72655281dade3c0ceb8295936bb" | ||
} |
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
84559