Releases: getsentry/sentry-fullstory
3.0.0
The Sentry FullStory integration has been updated to be compatible with Sentry JavaScript SDK 8.x. If you need to support Sentry JavaScript SDK 7.x or lower, please use version 2.x of this integration.
Configuration for the SDK now looks like so:
import { fullStoryIntegration } from '@sentry/fullstory';
// ...
Sentry.init({
dsn: '__DSN__',
integrations: [
fullStoryIntegration('__SENTRY_ORG_SLUG__', { client: FullStory }),
],
// ...
});
- BREAKING CHANGES: feat: add support for sentry v8 (#92)
Thanks @seanparmelee for the contribution!
2.1.0
Add support for @fullstory/browser
v2 (#86)
Thanks @seanparmelee for the contribution!
2.0.0
Refactoring the whole integration so it's platform agnostic.
BREAKING CHANGES: users now must provide the FullStory
client as an option in the args.
1.1.8
Allow a custom FullStory Client to be passed as an option (e.g. from Segment)
Catch exceptions when accessing the client's API methods
1.1.7
Ensures Fullstory client is initalized before accessing it
1.1.6
Ignores Sentry's performance monitoring transactions when creating FullStory events