Socket
Socket
Sign inDemoInstall

@sentry-internal/browser-utils

Package Overview
Dependencies
Maintainers
9
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sentry-internal/browser-utils - npm Package Compare versions

Comparing version 8.2.1 to 8.3.0

cjs/getNativeImplementation.js

5

cjs/index.js

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

const history = require('./instrument/history.js');
const getNativeImplementation = require('./getNativeImplementation.js');
const xhr = require('./instrument/xhr.js');

@@ -24,2 +25,6 @@ const inp = require('./metrics/inp.js');

exports.addHistoryInstrumentationHandler = history.addHistoryInstrumentationHandler;
exports.clearCachedImplementation = getNativeImplementation.clearCachedImplementation;
exports.fetch = getNativeImplementation.fetch;
exports.getNativeImplementation = getNativeImplementation.getNativeImplementation;
exports.setTimeout = getNativeImplementation.setTimeout;
exports.SENTRY_XHR_DATA_KEY = xhr.SENTRY_XHR_DATA_KEY;

@@ -26,0 +31,0 @@ exports.addXhrInstrumentationHandler = xhr.addXhrInstrumentationHandler;

2

cjs/instrument/dom.js
Object.defineProperty(exports, '__esModule', { value: true });
const utils = require('@sentry/utils');
const types = require('../metrics/types.js');
const types = require('../types.js');

@@ -6,0 +6,0 @@ const DEBOUNCE_DURATION = 1000;

Object.defineProperty(exports, '__esModule', { value: true });
const utils = require('@sentry/utils');
const types = require('../metrics/types.js');
const types = require('../types.js');

@@ -6,0 +6,0 @@ let lastHref;

Object.defineProperty(exports, '__esModule', { value: true });
const utils = require('@sentry/utils');
const types = require('../metrics/types.js');
const types = require('../types.js');

@@ -6,0 +6,0 @@ const SENTRY_XHR_DATA_KEY = '__sentry_xhr_v3__';

@@ -6,4 +6,4 @@ Object.defineProperty(exports, '__esModule', { value: true });

const debugBuild = require('../debug-build.js');
const types = require('../types.js');
const instrument = require('./instrument.js');
const types = require('./types.js');
const utils = require('./utils.js');

@@ -10,0 +10,0 @@ const getNavigationEntry = require('./web-vitals/lib/getNavigationEntry.js');

Object.defineProperty(exports, '__esModule', { value: true });
const core = require('@sentry/core');
const types = require('./types.js');
const types = require('../types.js');

@@ -6,0 +6,0 @@ /**

Object.defineProperty(exports, '__esModule', { value: true });
const types = require('../types.js');
const types = require('../../types.js');
const bindReporter = require('./lib/bindReporter.js');

@@ -5,0 +5,0 @@ const initMetric = require('./lib/initMetric.js');

Object.defineProperty(exports, '__esModule', { value: true });
const types = require('../types.js');
const types = require('../../types.js');
const bindReporter = require('./lib/bindReporter.js');

@@ -5,0 +5,0 @@ const getActivationStart = require('./lib/getActivationStart.js');

Object.defineProperty(exports, '__esModule', { value: true });
const types = require('../../types.js');
const types = require('../../../types.js');

@@ -5,0 +5,0 @@ /*

Object.defineProperty(exports, '__esModule', { value: true });
const types = require('../../types.js');
const types = require('../../../types.js');

@@ -5,0 +5,0 @@ /*

Object.defineProperty(exports, '__esModule', { value: true });
const types = require('../../types.js');
const types = require('../../../types.js');
const generateUniqueID = require('./generateUniqueID.js');

@@ -5,0 +5,0 @@ const getActivationStart = require('./getActivationStart.js');

Object.defineProperty(exports, '__esModule', { value: true });
const types = require('../../types.js');
const types = require('../../../types.js');

@@ -5,0 +5,0 @@ /*

Object.defineProperty(exports, '__esModule', { value: true });
const types = require('../../types.js');
const types = require('../../../types.js');

@@ -5,0 +5,0 @@ /*

Object.defineProperty(exports, '__esModule', { value: true });
const types = require('../types.js');
const types = require('../../types.js');
const bindReporter = require('./lib/bindReporter.js');

@@ -5,0 +5,0 @@ const getActivationStart = require('./lib/getActivationStart.js');

@@ -5,4 +5,5 @@ export { addClsInstrumentationHandler, addFidInstrumentationHandler, addLcpInstrumentationHandler, addPerformanceInstrumentationHandler, addTtfbInstrumentationHandler } from './metrics/instrument.js';

export { addHistoryInstrumentationHandler } from './instrument/history.js';
export { clearCachedImplementation, fetch, getNativeImplementation, setTimeout } from './getNativeImplementation.js';
export { SENTRY_XHR_DATA_KEY, addXhrInstrumentationHandler } from './instrument/xhr.js';
export { startTrackingINP } from './metrics/inp.js';
//# sourceMappingURL=index.js.map
import { addHandler, maybeInstrument, triggerHandlers, fill, addNonEnumerableProperty, uuid4 } from '@sentry/utils';
import { WINDOW } from '../metrics/types.js';
import { WINDOW } from '../types.js';

@@ -4,0 +4,0 @@ const DEBOUNCE_DURATION = 1000;

import { addHandler, maybeInstrument, supportsHistory, triggerHandlers, fill } from '@sentry/utils';
import { WINDOW } from '../metrics/types.js';
import { WINDOW } from '../types.js';

@@ -4,0 +4,0 @@ let lastHref;

import { addHandler, maybeInstrument, fill, timestampInSeconds, isString, triggerHandlers } from '@sentry/utils';
import { WINDOW } from '../metrics/types.js';
import { WINDOW } from '../types.js';

@@ -4,0 +4,0 @@ const SENTRY_XHR_DATA_KEY = '__sentry_xhr_v3__';

import { spanToJSON, setMeasurement, SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, getActiveSpan, startInactiveSpan } from '@sentry/core';
import { browserPerformanceTimeOrigin, logger, parseUrl, htmlTreeAsString, getComponentName } from '@sentry/utils';
import { DEBUG_BUILD } from '../debug-build.js';
import { WINDOW } from '../types.js';
import { addPerformanceInstrumentationHandler, addClsInstrumentationHandler, addLcpInstrumentationHandler, addFidInstrumentationHandler, addTtfbInstrumentationHandler } from './instrument.js';
import { WINDOW } from './types.js';
import { getBrowserPerformanceAPI, msToSec, startAndEndSpan, isMeasurementValue } from './utils.js';

@@ -7,0 +7,0 @@ import { getNavigationEntry } from './web-vitals/lib/getNavigationEntry.js';

import { spanToJSON, withActiveSpan, startInactiveSpan } from '@sentry/core';
import { WINDOW } from './types.js';
import { WINDOW } from '../types.js';

@@ -4,0 +4,0 @@ /**

@@ -1,2 +0,2 @@

import { WINDOW } from '../types.js';
import { WINDOW } from '../../types.js';
import { bindReporter } from './lib/bindReporter.js';

@@ -3,0 +3,0 @@ import { initMetric } from './lib/initMetric.js';

@@ -1,2 +0,2 @@

import { WINDOW } from '../types.js';
import { WINDOW } from '../../types.js';
import { bindReporter } from './lib/bindReporter.js';

@@ -3,0 +3,0 @@ import { getActivationStart } from './lib/getActivationStart.js';

@@ -1,2 +0,2 @@

import { WINDOW } from '../../types.js';
import { WINDOW } from '../../../types.js';

@@ -3,0 +3,0 @@ /*

@@ -1,2 +0,2 @@

import { WINDOW } from '../../types.js';
import { WINDOW } from '../../../types.js';

@@ -3,0 +3,0 @@ /*

@@ -1,2 +0,2 @@

import { WINDOW } from '../../types.js';
import { WINDOW } from '../../../types.js';
import { generateUniqueID } from './generateUniqueID.js';

@@ -3,0 +3,0 @@ import { getActivationStart } from './getActivationStart.js';

@@ -1,2 +0,2 @@

import { WINDOW } from '../../types.js';
import { WINDOW } from '../../../types.js';

@@ -3,0 +3,0 @@ /*

@@ -1,2 +0,2 @@

import { WINDOW } from '../../types.js';
import { WINDOW } from '../../../types.js';

@@ -3,0 +3,0 @@ /*

@@ -1,2 +0,2 @@

import { WINDOW } from '../types.js';
import { WINDOW } from '../../types.js';
import { bindReporter } from './lib/bindReporter.js';

@@ -3,0 +3,0 @@ import { getActivationStart } from './lib/getActivationStart.js';

{
"name": "@sentry-internal/browser-utils",
"version": "8.2.1",
"version": "8.3.0",
"description": "Browser Utilities for all Sentry JavaScript SDKs",

@@ -45,7 +45,7 @@ "repository": "git://github.com/getsentry/sentry-javascript.git",

"dependencies": {
"@sentry/core": "8.2.1",
"@sentry/types": "8.2.1",
"@sentry/utils": "8.2.1"
"@sentry/core": "8.3.0",
"@sentry/types": "8.3.0",
"@sentry/utils": "8.3.0"
},
"sideEffects": false
}

@@ -5,3 +5,4 @@ export { addPerformanceInstrumentationHandler, addClsInstrumentationHandler, addFidInstrumentationHandler, addTtfbInstrumentationHandler, addLcpInstrumentationHandler, } from './metrics/instrument';

export { addHistoryInstrumentationHandler } from './instrument/history';
export { addXhrInstrumentationHandler, SENTRY_XHR_DATA_KEY, } from './instrument/xhr';
export { fetch, setTimeout, clearCachedImplementation, getNativeImplementation } from './getNativeImplementation';
export { addXhrInstrumentationHandler, SENTRY_XHR_DATA_KEY } from './instrument/xhr';
//# sourceMappingURL=index.d.ts.map

@@ -5,3 +5,4 @@ export { addPerformanceInstrumentationHandler, addClsInstrumentationHandler, addFidInstrumentationHandler, addTtfbInstrumentationHandler, addLcpInstrumentationHandler, } from './metrics/instrument';

export { addHistoryInstrumentationHandler } from './instrument/history';
export { addXhrInstrumentationHandler, SENTRY_XHR_DATA_KEY, } from './instrument/xhr';
export { fetch, setTimeout, clearCachedImplementation, getNativeImplementation } from './getNativeImplementation';
export { addXhrInstrumentationHandler, SENTRY_XHR_DATA_KEY } from './instrument/xhr';
//# sourceMappingURL=index.d.ts.map

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

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

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

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

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