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

@sentry/browser

Package Overview
Dependencies
Maintainers
9
Versions
536
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 4.5.3 to 4.5.4

2

dist/version.d.ts
export declare const SDK_NAME = "sentry.javascript.browser";
export declare const SDK_VERSION = "4.5.3";
export declare const SDK_VERSION = "4.5.4";

@@ -63,3 +63,3 @@ import { BaseBackend, SentryError } from '@sentry/core/esm';

const message = ex.message ? `${name}: ${ex.message}` : name;
event = await this.eventFromMessage(message, undefined, hint);
event = await this.eventFromMessage(message, Severity.Error, hint);
addExceptionTypeValue(event, message);

@@ -66,0 +66,0 @@ }

@@ -96,8 +96,20 @@ import { captureException, getCurrentHub, withScope } from '@sentry/core/esm';

catch (_oO) { } // tslint:disable-line:no-empty
fn.prototype = fn.prototype || {};
sentryWrapped.prototype = fn.prototype;
fn.__sentry_wrapped__ = sentryWrapped;
Object.defineProperty(fn, '__sentry_wrapped__', {
enumerable: false,
value: sentryWrapped,
});
// Signal that this function has been wrapped/filled already
// for both debugging and to prevent it to being wrapped/filled twice
sentryWrapped.__sentry__ = true;
sentryWrapped.__sentry_original__ = fn;
Object.defineProperties(sentryWrapped, {
__sentry__: {
enumerable: false,
value: true,
},
__sentry_original__: {
enumerable: false,
value: fn,
},
});
return sentryWrapped;

@@ -104,0 +116,0 @@ }

import { captureException, captureMessage, getCurrentHub, withScope } from '@sentry/core/esm';
import { logger } from '@sentry/utils/esm/logger';
import { getGlobalObject } from '@sentry/utils/esm/misc';

@@ -22,2 +23,3 @@ /** JSDoc */

if (!this.Ember) {
logger.error('EmberIntegration is missing an Ember instance');
return;

@@ -24,0 +26,0 @@ }

import { captureException, getCurrentHub, withScope } from '@sentry/core/esm';
import { isPlainObject, isUndefined } from '@sentry/utils/esm/is';
import { logger } from '@sentry/utils/esm/logger';
import { getGlobalObject } from '@sentry/utils/esm/misc';

@@ -32,2 +33,3 @@ /** JSDoc */

if (!this.Vue || !this.Vue.config) {
logger.error('VueIntegration is missing a Vue instance');
return;

@@ -34,0 +36,0 @@ }

export declare const SDK_NAME = "sentry.javascript.browser";
export declare const SDK_VERSION = "4.5.3";
export declare const SDK_VERSION = "4.5.4";
export const SDK_NAME = 'sentry.javascript.browser';
export const SDK_VERSION = '4.5.3';
export const SDK_VERSION = '4.5.4';
//# sourceMappingURL=version.js.map
{
"name": "@sentry/browser",
"version": "4.5.3",
"version": "4.5.4",
"description": "Offical Sentry SDK for browsers",

@@ -18,5 +18,5 @@ "repository": "git://github.com/getsentry/sentry-javascript.git",

"dependencies": {
"@sentry/core": "4.5.3",
"@sentry/core": "4.5.4",
"@sentry/types": "4.5.3",
"@sentry/utils": "4.5.3",
"@sentry/utils": "4.5.4",
"tslib": "^1.9.3"

@@ -23,0 +23,0 @@ },

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

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

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