Skip to content

Releases: getsentry/sentry-fullstory

3.0.0

31 May 16:51
Compare
Choose a tag to compare

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

05 Jan 13:43
Compare
Choose a tag to compare

Add support for @fullstory/browser v2 (#86)

Thanks @seanparmelee for the contribution!

2.0.0

16 Feb 13:47
Compare
Choose a tag to compare

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

21 Jan 19:48
Compare
Choose a tag to compare

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

09 Dec 21:16
Compare
Choose a tag to compare

Ensures Fullstory client is initalized before accessing it

1.1.6

02 Nov 17:45
Compare
Choose a tag to compare

Ignores Sentry's performance monitoring transactions when creating FullStory events

1.1.5

10 Aug 17:41
Compare
Choose a tag to compare

Adds the index.d.ts file that was accidentally removed in the previous version

1.1.4

03 Aug 18:00
Compare
Choose a tag to compare

Adds better type checking and fixes error when hint.originalException is null

1.1.3

08 Jul 22:01
Compare
Choose a tag to compare

Add check for undefined error

1.1.2

07 Apr 18:35
Compare
Choose a tag to compare

Fixed typo in Readme and updated instructions for new Security and Privacy page.