@sentry/vercel-edge
Advanced tools
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!
Changelog
8.44.0
feat: Deprecate autoSessionTracking
(#14640)
Deprecates autoSessionTracking
.
To enable session tracking, it is recommended to unset autoSessionTracking
and ensure that either, in browser environments
the browserSessionIntegration
is added, or in server environments the httpIntegration
is added.
To disable session tracking, it is recommended to unset autoSessionTracking
and to remove the browserSessionIntegration
in
browser environments, or in server environments configure the httpIntegration
with the trackIncomingRequestsAsSessions
option set to false
.
response
context for http.server spans (#14634)Work in this release was contributed by @robinvw1. Thank you for your contribution!