@sentry/vercel-edge
Advanced tools
Comparing version 8.0.0-alpha.7 to 8.0.0-alpha.8
@@ -54,2 +54,3 @@ Object.defineProperty(exports, '__esModule', { value: true }); | ||
exports.startSpanManual = core.startSpanManual; | ||
exports.trpcMiddleware = core.trpcMiddleware; | ||
exports.withActiveSpan = core.withActiveSpan; | ||
@@ -56,0 +57,0 @@ exports.withIsolationScope = core.withIsolationScope; |
@@ -1,2 +0,2 @@ | ||
export { Hub, SDK_VERSION, SEMANTIC_ATTRIBUTE_SENTRY_OP, SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE, SEMANTIC_ATTRIBUTE_SENTRY_SOURCE, Scope, addBreadcrumb, addEventProcessor, addIntegration, captureCheckIn, captureEvent, captureException, captureMessage, close, continueTrace, createTransport, flush, functionToStringIntegration, getActiveSpan, getClient, getCurrentScope, getGlobalScope, getIsolationScope, getRootSpan, getSpanDescendants, getSpanStatusFromHttpCode, inboundFiltersIntegration, isInitialized, linkedErrorsIntegration, metrics, requestDataIntegration, setContext, setCurrentClient, setExtra, setExtras, setHttpStatus, setMeasurement, setTag, setTags, setUser, startInactiveSpan, startSpan, startSpanManual, withActiveSpan, withIsolationScope, withMonitor, withScope } from '@sentry/core'; | ||
export { Hub, SDK_VERSION, SEMANTIC_ATTRIBUTE_SENTRY_OP, SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE, SEMANTIC_ATTRIBUTE_SENTRY_SOURCE, Scope, addBreadcrumb, addEventProcessor, addIntegration, captureCheckIn, captureEvent, captureException, captureMessage, close, continueTrace, createTransport, flush, functionToStringIntegration, getActiveSpan, getClient, getCurrentScope, getGlobalScope, getIsolationScope, getRootSpan, getSpanDescendants, getSpanStatusFromHttpCode, inboundFiltersIntegration, isInitialized, linkedErrorsIntegration, metrics, requestDataIntegration, setContext, setCurrentClient, setExtra, setExtras, setHttpStatus, setMeasurement, setTag, setTags, setUser, startInactiveSpan, startSpan, startSpanManual, trpcMiddleware, withActiveSpan, withIsolationScope, withMonitor, withScope } from '@sentry/core'; | ||
export { VercelEdgeClient } from './client.js'; | ||
@@ -3,0 +3,0 @@ export { getDefaultIntegrations, init } from './sdk.js'; |
{ | ||
"name": "@sentry/vercel-edge", | ||
"version": "8.0.0-alpha.7", | ||
"version": "8.0.0-alpha.8", | ||
"description": "Offical Sentry SDK for the Vercel Edge Runtime", | ||
@@ -45,5 +45,5 @@ "repository": "git://github.com/getsentry/sentry-javascript.git", | ||
"dependencies": { | ||
"@sentry/core": "8.0.0-alpha.7", | ||
"@sentry/types": "8.0.0-alpha.7", | ||
"@sentry/utils": "8.0.0-alpha.7" | ||
"@sentry/core": "8.0.0-alpha.8", | ||
"@sentry/types": "8.0.0-alpha.8", | ||
"@sentry/utils": "8.0.0-alpha.8" | ||
}, | ||
@@ -50,0 +50,0 @@ "devDependencies": { |
@@ -1,5 +0,5 @@ | ||
export { Breadcrumb, BreadcrumbHint, PolymorphicRequest, Request, SdkInfo, Event, EventHint, Exception, Session, SeverityLevel, Span, StackFrame, Stacktrace, Thread, Transaction, User, } from '@sentry/types'; | ||
export { Breadcrumb, BreadcrumbHint, PolymorphicRequest, Request, SdkInfo, Event, EventHint, Exception, Session, SeverityLevel, Span, StackFrame, Stacktrace, Thread, User, } from '@sentry/types'; | ||
export { AddRequestDataToEventOptions } from '@sentry/utils'; | ||
export { VercelEdgeOptions } from './types'; | ||
export { addEventProcessor, addBreadcrumb, addIntegration, captureException, captureEvent, captureMessage, close, createTransport, flush, getClient, isInitialized, getCurrentScope, getGlobalScope, getIsolationScope, Hub, setCurrentClient, Scope, SDK_VERSION, setContext, setExtra, setExtras, setTag, setTags, setUser, getSpanStatusFromHttpCode, setHttpStatus, withScope, withIsolationScope, captureCheckIn, withMonitor, setMeasurement, getActiveSpan, getRootSpan, startSpan, startInactiveSpan, startSpanManual, withActiveSpan, getSpanDescendants, continueTrace, metrics, functionToStringIntegration, inboundFiltersIntegration, linkedErrorsIntegration, requestDataIntegration, SEMANTIC_ATTRIBUTE_SENTRY_OP, SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, SEMANTIC_ATTRIBUTE_SENTRY_SOURCE, SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE, } from '@sentry/core'; | ||
export { addEventProcessor, addBreadcrumb, addIntegration, captureException, captureEvent, captureMessage, close, createTransport, flush, getClient, isInitialized, getCurrentScope, getGlobalScope, getIsolationScope, Hub, setCurrentClient, Scope, SDK_VERSION, setContext, setExtra, setExtras, setTag, setTags, setUser, getSpanStatusFromHttpCode, setHttpStatus, withScope, withIsolationScope, captureCheckIn, withMonitor, setMeasurement, getActiveSpan, getRootSpan, startSpan, startInactiveSpan, startSpanManual, withActiveSpan, getSpanDescendants, continueTrace, metrics, functionToStringIntegration, inboundFiltersIntegration, linkedErrorsIntegration, requestDataIntegration, SEMANTIC_ATTRIBUTE_SENTRY_OP, SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, SEMANTIC_ATTRIBUTE_SENTRY_SOURCE, SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE, trpcMiddleware, } from '@sentry/core'; | ||
export { VercelEdgeClient } from './client'; | ||
@@ -6,0 +6,0 @@ export { getDefaultIntegrations, init, } from './sdk'; |
@@ -31,18 +31,2 @@ import { ClientOptions, Options, TracePropagationTargets } from '@sentry/types'; | ||
clientClass?: typeof VercelEdgeClient; | ||
/** | ||
* @deprecated Moved to constructor options of the `Http` and `Undici` integration. | ||
* @example | ||
* ```js | ||
* Sentry.init({ | ||
* integrations: [ | ||
* new Sentry.Integrations.Http({ | ||
* tracing: { | ||
* shouldCreateSpanForRequest: (url: string) => false, | ||
* } | ||
* }); | ||
* ], | ||
* }); | ||
* ``` | ||
*/ | ||
shouldCreateSpanForRequest?(this: void, url: string): boolean; | ||
/** Callback that is executed when a fatal global error occurs. */ | ||
@@ -49,0 +33,0 @@ onFatalError?(this: void, error: Error): void; |
@@ -1,5 +0,5 @@ | ||
export type { Breadcrumb, BreadcrumbHint, PolymorphicRequest, Request, SdkInfo, Event, EventHint, Exception, Session, SeverityLevel, Span, StackFrame, Stacktrace, Thread, Transaction, User, } from '@sentry/types'; | ||
export type { Breadcrumb, BreadcrumbHint, PolymorphicRequest, Request, SdkInfo, Event, EventHint, Exception, Session, SeverityLevel, Span, StackFrame, Stacktrace, Thread, User, } from '@sentry/types'; | ||
export type { AddRequestDataToEventOptions } from '@sentry/utils'; | ||
export type { VercelEdgeOptions } from './types'; | ||
export { addEventProcessor, addBreadcrumb, addIntegration, captureException, captureEvent, captureMessage, close, createTransport, flush, getClient, isInitialized, getCurrentScope, getGlobalScope, getIsolationScope, Hub, setCurrentClient, Scope, SDK_VERSION, setContext, setExtra, setExtras, setTag, setTags, setUser, getSpanStatusFromHttpCode, setHttpStatus, withScope, withIsolationScope, captureCheckIn, withMonitor, setMeasurement, getActiveSpan, getRootSpan, startSpan, startInactiveSpan, startSpanManual, withActiveSpan, getSpanDescendants, continueTrace, metrics, functionToStringIntegration, inboundFiltersIntegration, linkedErrorsIntegration, requestDataIntegration, SEMANTIC_ATTRIBUTE_SENTRY_OP, SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, SEMANTIC_ATTRIBUTE_SENTRY_SOURCE, SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE, } from '@sentry/core'; | ||
export { addEventProcessor, addBreadcrumb, addIntegration, captureException, captureEvent, captureMessage, close, createTransport, flush, getClient, isInitialized, getCurrentScope, getGlobalScope, getIsolationScope, Hub, setCurrentClient, Scope, SDK_VERSION, setContext, setExtra, setExtras, setTag, setTags, setUser, getSpanStatusFromHttpCode, setHttpStatus, withScope, withIsolationScope, captureCheckIn, withMonitor, setMeasurement, getActiveSpan, getRootSpan, startSpan, startInactiveSpan, startSpanManual, withActiveSpan, getSpanDescendants, continueTrace, metrics, functionToStringIntegration, inboundFiltersIntegration, linkedErrorsIntegration, requestDataIntegration, SEMANTIC_ATTRIBUTE_SENTRY_OP, SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, SEMANTIC_ATTRIBUTE_SENTRY_SOURCE, SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE, trpcMiddleware, } from '@sentry/core'; | ||
export { VercelEdgeClient } from './client'; | ||
@@ -6,0 +6,0 @@ export { getDefaultIntegrations, init, } from './sdk'; |
@@ -31,18 +31,2 @@ import type { ClientOptions, Options, TracePropagationTargets } from '@sentry/types'; | ||
clientClass?: typeof VercelEdgeClient; | ||
/** | ||
* @deprecated Moved to constructor options of the `Http` and `Undici` integration. | ||
* @example | ||
* ```js | ||
* Sentry.init({ | ||
* integrations: [ | ||
* new Sentry.Integrations.Http({ | ||
* tracing: { | ||
* shouldCreateSpanForRequest: (url: string) => false, | ||
* } | ||
* }); | ||
* ], | ||
* }); | ||
* ``` | ||
*/ | ||
shouldCreateSpanForRequest?(this: void, url: string): boolean; | ||
/** Callback that is executed when a fatal global error occurs. */ | ||
@@ -49,0 +33,0 @@ onFatalError?(this: void, error: Error): void; |
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
119495
1233
+ Added@sentry/core@8.0.0-alpha.8(transitive)
+ Added@sentry/types@8.0.0-alpha.8(transitive)
+ Added@sentry/utils@8.0.0-alpha.8(transitive)
- Removed@sentry/core@8.0.0-alpha.7(transitive)
- Removed@sentry/types@8.0.0-alpha.7(transitive)
- Removed@sentry/utils@8.0.0-alpha.7(transitive)
Updated@sentry/core@8.0.0-alpha.8
Updated@sentry/types@8.0.0-alpha.8
Updated@sentry/utils@8.0.0-alpha.8