@@ -157,46 +157,48 @@ integrations from the `Integrations.XXX` hash, is deprecated in favor of using t
157
157
158
158
The following list shows how integrations should be migrated:
159
159
160
- | Old | New | Packages |
161
- | ---------------------------- | ----------------------------------- | ------------------------------------------------------------------------------------------------------- |
162
- | ` new BrowserTracing() ` | ` browserTracingIntegration() ` | ` @sentry/browser ` |
163
- | ` new InboundFilters() ` | ` inboundFiltersIntegration() ` | ` @sentry/core ` , ` @sentry/browser ` , ` @sentry/node ` , ` @sentry/deno ` , ` @sentry/bun ` , ` @sentry/vercel-edge ` |
164
- | ` new FunctionToString() ` | ` functionToStringIntegration() ` | ` @sentry/core ` , ` @sentry/browser ` , ` @sentry/node ` , ` @sentry/deno ` , ` @sentry/bun ` , ` @sentry/vercel-edge ` |
165
- | ` new LinkedErrors() ` | ` linkedErrorsIntegration() ` | ` @sentry/core ` , ` @sentry/browser ` , ` @sentry/node ` , ` @sentry/deno ` , ` @sentry/bun ` , ` @sentry/vercel-edge ` |
166
- | ` new ModuleMetadata() ` | ` moduleMetadataIntegration() ` | ` @sentry/core ` , ` @sentry/browser ` |
167
- | ` new RequestData() ` | ` requestDataIntegration() ` | ` @sentry/core ` , ` @sentry/node ` , ` @sentry/deno ` , ` @sentry/bun ` , ` @sentry/vercel-edge ` |
168
- | ` new Wasm() ` | ` wasmIntegration() ` | ` @sentry/wasm ` |
169
- | ` new Replay() ` | ` replayIntegration() ` | ` @sentry/browser ` |
170
- | ` new ReplayCanvas() ` | ` replayCanvasIntegration() ` | ` @sentry/browser ` |
171
- | ` new Feedback() ` | ` feedbackIntegration() ` | ` @sentry/browser ` |
172
- | ` new CaptureConsole() ` | ` captureConsoleIntegration() ` | ` @sentry/integrations ` |
173
- | ` new Debug() ` | ` debugIntegration() ` | ` @sentry/integrations ` |
174
- | ` new Dedupe() ` | ` dedupeIntegration() ` | ` @sentry/browser ` , ` @sentry/integrations ` , ` @sentry/deno ` |
175
- | ` new ExtraErrorData() ` | ` extraErrorDataIntegration() ` | ` @sentry/integrations ` |
176
- | ` new ReportingObserver() ` | ` reportingObserverIntegration() ` | ` @sentry/integrations ` |
177
- | ` new RewriteFrames() ` | ` rewriteFramesIntegration() ` | ` @sentry/integrations ` |
178
- | ` new SessionTiming() ` | ` sessionTimingIntegration() ` | ` @sentry/integrations ` |
179
- | ` new HttpClient() ` | ` httpClientIntegration() ` | ` @sentry/integrations ` |
180
- | ` new ContextLines() ` | ` contextLinesIntegration() ` | ` @sentry/integrations ` , ` @sentry/node ` , ` @sentry/deno ` , ` @sentry/bun ` |
181
- | ` new Breadcrumbs() ` | ` breadcrumbsIntegration() ` | ` @sentry/browser ` , ` @sentry/deno ` |
182
- | ` new GlobalHandlers() ` | ` globalHandlersIntegration() ` | ` @sentry/browser ` , ` @sentry/deno ` |
183
- | ` new HttpContext() ` | ` httpContextIntegration() ` | ` @sentry/browser ` |
184
- | ` new TryCatch() ` | ` browserApiErrorsIntegration() ` | ` @sentry/browser ` , ` @sentry/deno ` |
185
- | ` new VueIntegration() ` | ` vueIntegration() ` | ` @sentry/vue ` |
186
- | ` new DenoContext() ` | ` denoContextIntegration() ` | ` @sentry/deno ` |
187
- | ` new DenoCron() ` | ` denoCronIntegration() ` | ` @sentry/deno ` |
188
- | ` new NormalizePaths() ` | ` normalizePathsIntegration() ` | ` @sentry/deno ` |
189
- | ` new Console() ` | ` consoleIntegration() ` | ` @sentry/node ` |
190
- | ` new Context() ` | ` nodeContextIntegration() ` | ` @sentry/node ` |
191
- | ` new Modules() ` | ` modulesIntegration() ` | ` @sentry/node ` |
192
- | ` new OnUncaughtException() ` | ` onUncaughtExceptionIntegration() ` | ` @sentry/node ` |
193
- | ` new OnUnhandledRejection() ` | ` onUnhandledRejectionIntegration() ` | ` @sentry/node ` |
194
- | ` new LocalVariables() ` | ` localVariablesIntegration() ` | ` @sentry/node ` |
195
- | ` new Spotlight() ` | ` spotlightIntegration() ` | ` @sentry/node ` |
196
- | ` new Anr() ` | ` anrIntegration() ` | ` @sentry/node ` |
197
- | ` new Hapi() ` | ` hapiIntegration() ` | ` @sentry/node ` |
198
- | ` new Undici() ` | ` nativeNodeFetchIntegration() ` | ` @sentry/node ` |
199
- | ` new Http() ` | ` httpIntegration() ` | ` @sentry/node ` |
160
+ | Old | New | Packages |
161
+ | ----------------------------------- | ----------------------------------- | ------------------------------------------------------------------------------------------------------- |
162
+ | ` new BrowserTracing() ` | ` browserTracingIntegration() ` | ` @sentry/browser ` |
163
+ | ` new InboundFilters() ` | ` inboundFiltersIntegration() ` | ` @sentry/core ` , ` @sentry/browser ` , ` @sentry/node ` , ` @sentry/deno ` , ` @sentry/bun ` , ` @sentry/vercel-edge ` |
164
+ | ` new FunctionToString() ` | ` functionToStringIntegration() ` | ` @sentry/core ` , ` @sentry/browser ` , ` @sentry/node ` , ` @sentry/deno ` , ` @sentry/bun ` , ` @sentry/vercel-edge ` |
165
+ | ` new LinkedErrors() ` | ` linkedErrorsIntegration() ` | ` @sentry/core ` , ` @sentry/browser ` , ` @sentry/node ` , ` @sentry/deno ` , ` @sentry/bun ` , ` @sentry/vercel-edge ` |
166
+ | ` new ModuleMetadata() ` | ` moduleMetadataIntegration() ` | ` @sentry/core ` , ` @sentry/browser ` |
167
+ | ` new RequestData() ` | ` requestDataIntegration() ` | ` @sentry/core ` , ` @sentry/node ` , ` @sentry/deno ` , ` @sentry/bun ` , ` @sentry/vercel-edge ` |
168
+ | ` new Wasm() ` | ` wasmIntegration() ` | ` @sentry/wasm ` |
169
+ | ` new Replay() ` | ` replayIntegration() ` | ` @sentry/browser ` |
170
+ | ` new ReplayCanvas() ` | ` replayCanvasIntegration() ` | ` @sentry/browser ` |
171
+ | ` new Feedback() ` | ` feedbackIntegration() ` | ` @sentry/browser ` |
172
+ | ` new CaptureConsole() ` | ` captureConsoleIntegration() ` | ` @sentry/integrations ` |
173
+ | ` new Debug() ` | ` debugIntegration() ` | ` @sentry/integrations ` |
174
+ | ` new Dedupe() ` | ` dedupeIntegration() ` | ` @sentry/browser ` , ` @sentry/integrations ` , ` @sentry/deno ` |
175
+ | ` new ExtraErrorData() ` | ` extraErrorDataIntegration() ` | ` @sentry/integrations ` |
176
+ | ` new ReportingObserver() ` | ` reportingObserverIntegration() ` | ` @sentry/integrations ` |
177
+ | ` new RewriteFrames() ` | ` rewriteFramesIntegration() ` | ` @sentry/integrations ` |
178
+ | ` new SessionTiming() ` | ` sessionTimingIntegration() ` | ` @sentry/integrations ` |
179
+ | ` new HttpClient() ` | ` httpClientIntegration() ` | ` @sentry/integrations ` |
180
+ | ` new ContextLines() ` | ` contextLinesIntegration() ` | ` @sentry/integrations ` , ` @sentry/node ` , ` @sentry/deno ` , ` @sentry/bun ` |
181
+ | ` new Breadcrumbs() ` | ` breadcrumbsIntegration() ` | ` @sentry/browser ` , ` @sentry/deno ` |
182
+ | ` new GlobalHandlers() ` | ` globalHandlersIntegration() ` | ` @sentry/browser ` , ` @sentry/deno ` |
183
+ | ` new HttpContext() ` | ` httpContextIntegration() ` | ` @sentry/browser ` |
184
+ | ` new TryCatch() ` | ` browserApiErrorsIntegration() ` | ` @sentry/browser ` , ` @sentry/deno ` |
185
+ | ` new VueIntegration() ` | ` vueIntegration() ` | ` @sentry/vue ` |
186
+ | ` new DenoContext() ` | ` denoContextIntegration() ` | ` @sentry/deno ` |
187
+ | ` new DenoCron() ` | ` denoCronIntegration() ` | ` @sentry/deno ` |
188
+ | ` new NormalizePaths() ` | ` normalizePathsIntegration() ` | ` @sentry/deno ` |
189
+ | ` new Console() ` | ` consoleIntegration() ` | ` @sentry/node ` |
190
+ | ` new Context() ` | ` nodeContextIntegration() ` | ` @sentry/node ` |
191
+ | ` new Modules() ` | ` modulesIntegration() ` | ` @sentry/node ` |
192
+ | ` new OnUncaughtException() ` | ` onUncaughtExceptionIntegration() ` | ` @sentry/node ` |
193
+ | ` new OnUnhandledRejection() ` | ` onUnhandledRejectionIntegration() ` | ` @sentry/node ` |
194
+ | ` new LocalVariables() ` | ` localVariablesIntegration() ` | ` @sentry/node ` |
195
+ | ` new Spotlight() ` | ` spotlightIntegration() ` | ` @sentry/node ` |
196
+ | ` new Anr() ` | ` anrIntegration() ` | ` @sentry/node ` |
197
+ | ` new Hapi() ` | ` hapiIntegration() ` | ` @sentry/node ` |
198
+ | ` new Undici() ` | ` nativeNodeFetchIntegration() ` | ` @sentry/node ` |
199
+ | ` new Http() ` | ` httpIntegration() ` | ` @sentry/node ` |
200
+ | ` new ProfilingIntegration() ` | ` nodeProfilingIntegration() ` | ` @sentry/profiling-node ` |
201
+ | ` new BrowserProfilingIntegration() ` | ` browserProfilingIntegration() ` | ` @sentry/browser ` |
200
202
201
203
## Deprecate ` hub.bindClient() ` and ` makeMain() `
202
204
0 commit comments