Socket
Socket
Sign inDemoInstall

@sentry/browser

Package Overview
Dependencies
Maintainers
11
Versions
529
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sentry/browser - npm Package Compare versions

Comparing version 8.32.0 to 8.33.0

8

build/npm/cjs/helpers.js

@@ -61,3 +61,9 @@ Object.defineProperty(exports, '__esModule', { value: true });

if (wrapper) {
return wrapper;
if (typeof wrapper === 'function') {
return wrapper;
} else {
// If we find that the `__sentry_wrapped__` function is not a function at the time of accessing it, it means
// that something messed with it. In that case we want to return the originally passed function.
return fn;
}
}

@@ -64,0 +70,0 @@

@@ -59,3 +59,9 @@ import { withScope, captureException } from '@sentry/core';

if (wrapper) {
return wrapper;
if (typeof wrapper === 'function') {
return wrapper;
} else {
// If we find that the `__sentry_wrapped__` function is not a function at the time of accessing it, it means
// that something messed with it. In that case we want to return the originally passed function.
return fn;
}
}

@@ -62,0 +68,0 @@

18

package.json
{
"name": "@sentry/browser",
"version": "8.32.0",
"version": "8.33.0",
"description": "Official Sentry SDK for browsers",

@@ -42,12 +42,12 @@ "repository": "git://github.com/getsentry/sentry-javascript.git",

"dependencies": {
"@sentry-internal/browser-utils": "8.32.0",
"@sentry-internal/feedback": "8.32.0",
"@sentry-internal/replay": "8.32.0",
"@sentry-internal/replay-canvas": "8.32.0",
"@sentry/core": "8.32.0",
"@sentry/types": "8.32.0",
"@sentry/utils": "8.32.0"
"@sentry-internal/browser-utils": "8.33.0",
"@sentry-internal/feedback": "8.33.0",
"@sentry-internal/replay": "8.33.0",
"@sentry-internal/replay-canvas": "8.33.0",
"@sentry/core": "8.33.0",
"@sentry/types": "8.33.0",
"@sentry/utils": "8.33.0"
},
"devDependencies": {
"@sentry-internal/integration-shims": "8.32.0",
"@sentry-internal/integration-shims": "8.33.0",
"fake-indexeddb": "^4.0.1"

@@ -54,0 +54,0 @@ },

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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