@sentry/types
Advanced tools
Changelog
8.51.0
feat(v8/node): Add prismaInstrumentation
option to Prisma integration as escape hatch for all Prisma versions (#15128)
This release adds a compatibility API to add support for Prisma version 6. To capture performance data for Prisma version 6:
Install the @prisma/instrumentation
package on version 6.
Pass a new PrismaInstrumentation()
instance as exported from @prisma/instrumentation
to the prismaInstrumentation
option:
import { PrismaInstrumentation } from '@prisma/instrumentation';
Sentry.init({
integrations: [
prismaIntegration({
// Override the default instrumentation that Sentry uses
prismaInstrumentation: new PrismaInstrumentation(),
}),
],
});
The passed instrumentation instance will override the default instrumentation instance the integration would use, while the prismaIntegration
will still ensure data compatibility for the various Prisma versions.
Remove the previewFeatures = ["tracing"]
option from the client generator block of your Prisma schema.
multiplexedtransport.js
CDN bundle (#15046)fetchProxyScriptNonce
option (#15011)fatal
events should set session as crashed (#15073)Work in this release was contributed by @tjhiggins, and @nwalters512. Thank you for your contributions!
Changelog
9.0.0-alpha.0
This is an alpha release of the upcoming major release of version 9. This release does not yet entail a comprehensive changelog as version 9 is not yet stable.
For this release's iteration of the migration guide, see the Migration Guide as per 9.0.0-alpha.0
.
Please note that the migration guide is work in progress and subject to change.
Changelog
8.49.0
handled
prop to ErrorBoundary (#14978)require
, __filename
and __dirname
on global object (#14952)Work in this release was contributed by @HHK1 and @mstrokin. Thank you for your contributions!
Changelog
8.48.0
feat(v8/core): Deprecate getDomElement
method (#14799)
Deprecates getDomElement
. There is no replacement.
continueTrace
implementation in core (#14819)NODE_OPTIONS
is not passed to worker threads (#14825)tagName
when name is not provided to TraceDirective
(#14828)openTelemetrySpanProcessors
option (#14853)Set
as the allRoutes
container. (#14878) (#14884)normalizedRequest
to samplingContext
(#14903)syncFeedbackIntegration
(#14918)Work in this release was contributed by @arturovt. Thank you for your contribution!
Changelog
8.47.0
updateSpanName
helper function (#14736)db.system
in newer Prisma versions (#14772)Work in this release was contributed by @aloisklink and @benjick. Thank you for your contributions!
Changelog
8.46.0
Work in this release was contributed by @conor-ob. Thank you for your contribution!
Changelog
8.45.0
handled
option to captureConsoleIntegration
(#14664)HttpClient
events (#14515)captureMessage
with attachStacktrace: true
as synthetic (#14668)captureMessage
with attatchStackTrace: true
as synthetic (#14670)level
in server runtime captureException
(#10587)Work in this release was contributed by @anonrig and @Zih0. Thank you for your contributions!