Socket
Socket
Sign inDemoInstall

@sentry/react

Package Overview
Dependencies
Maintainers
11
Versions
371
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sentry/react - npm Package Compare versions

Comparing version 8.6.0 to 8.7.0

cjs/tanstackrouter.js

2

cjs/index.js

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

const reactrouterv3 = require('./reactrouterv3.js');
const tanstackrouter = require('./tanstackrouter.js');
const reactrouter = require('./reactrouter.js');

@@ -25,2 +26,3 @@ const reactrouterv6 = require('./reactrouterv6.js');

exports.reactRouterV3BrowserTracingIntegration = reactrouterv3.reactRouterV3BrowserTracingIntegration;
exports.tanstackRouterBrowserTracingIntegration = tanstackrouter.tanstackRouterBrowserTracingIntegration;
exports.reactRouterV4BrowserTracingIntegration = reactrouter.reactRouterV4BrowserTracingIntegration;

@@ -27,0 +29,0 @@ exports.reactRouterV5BrowserTracingIntegration = reactrouter.reactRouterV5BrowserTracingIntegration;

6

cjs/reactrouterv6.js

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

const CLIENTS_WITH_INSTRUMENT_NAVIGATION = [];
const CLIENTS_WITH_INSTRUMENT_NAVIGATION = new WeakSet();

@@ -75,3 +75,3 @@ /**

if (instrumentNavigation) {
CLIENTS_WITH_INSTRUMENT_NAVIGATION.push(client);
CLIENTS_WITH_INSTRUMENT_NAVIGATION.add(client);
}

@@ -190,3 +190,3 @@ },

const client = core.getClient();
if (!client || !CLIENTS_WITH_INSTRUMENT_NAVIGATION.includes(client)) {
if (!client || !CLIENTS_WITH_INSTRUMENT_NAVIGATION.has(client)) {
return;

@@ -193,0 +193,0 @@ }

@@ -8,4 +8,5 @@ export * from '@sentry/browser';

export { reactRouterV3BrowserTracingIntegration } from './reactrouterv3.js';
export { tanstackRouterBrowserTracingIntegration } from './tanstackrouter.js';
export { reactRouterV4BrowserTracingIntegration, reactRouterV5BrowserTracingIntegration, withSentryRouting } from './reactrouter.js';
export { reactRouterV6BrowserTracingIntegration, withSentryReactRouterV6Routing, wrapCreateBrowserRouter, wrapUseRoutes } from './reactrouterv6.js';
//# sourceMappingURL=index.js.map

@@ -16,3 +16,3 @@ import { jsx } from 'react/jsx-runtime';

const CLIENTS_WITH_INSTRUMENT_NAVIGATION = [];
const CLIENTS_WITH_INSTRUMENT_NAVIGATION = new WeakSet();

@@ -69,3 +69,3 @@ /**

if (instrumentNavigation) {
CLIENTS_WITH_INSTRUMENT_NAVIGATION.push(client);
CLIENTS_WITH_INSTRUMENT_NAVIGATION.add(client);
}

@@ -184,3 +184,3 @@ },

const client = getClient();
if (!client || !CLIENTS_WITH_INSTRUMENT_NAVIGATION.includes(client)) {
if (!client || !CLIENTS_WITH_INSTRUMENT_NAVIGATION.has(client)) {
return;

@@ -187,0 +187,0 @@ }

{
"name": "@sentry/react",
"version": "8.6.0",
"version": "8.7.0",
"description": "Official Sentry SDK for React.js",

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

"dependencies": {
"@sentry/browser": "8.6.0",
"@sentry/core": "8.6.0",
"@sentry/types": "8.6.0",
"@sentry/utils": "8.6.0",
"@sentry/browser": "8.7.0",
"@sentry/core": "8.7.0",
"@sentry/types": "8.7.0",
"@sentry/utils": "8.7.0",
"hoist-non-react-statics": "^3.3.2"

@@ -51,0 +51,0 @@ },

@@ -9,4 +9,5 @@ export * from '@sentry/browser';

export { reactRouterV3BrowserTracingIntegration } from './reactrouterv3';
export { tanstackRouterBrowserTracingIntegration } from './tanstackrouter';
export { withSentryRouting, reactRouterV4BrowserTracingIntegration, reactRouterV5BrowserTracingIntegration, } from './reactrouter';
export { reactRouterV6BrowserTracingIntegration, withSentryReactRouterV6Routing, wrapUseRoutes, wrapCreateBrowserRouter, } from './reactrouterv6';
//# sourceMappingURL=index.d.ts.map

@@ -9,4 +9,5 @@ export * from '@sentry/browser';

export { reactRouterV3BrowserTracingIntegration } from './reactrouterv3';
export { tanstackRouterBrowserTracingIntegration } from './tanstackrouter';
export { withSentryRouting, reactRouterV4BrowserTracingIntegration, reactRouterV5BrowserTracingIntegration, } from './reactrouter';
export { reactRouterV6BrowserTracingIntegration, withSentryReactRouterV6Routing, wrapUseRoutes, wrapCreateBrowserRouter, } from './reactrouterv6';
//# 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

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