Skip to content

6.15.0

Compare
Choose a tag to compare
@sentry-release-bot sentry-release-bot released this 04 Jun 09:38

Features

  • User Feedback Widget Updates

    • FeedbackButton for easy access to the widget (#4378)
    • ScreenshotButton for capturing the application visuals (#4714)
    • Theming support to better align with the application styles (#4677)
    Sentry.init({
      integrations: [
        Sentry.feedbackIntegration({
          enableTakeScreenshot: true, // Enables `ScreenshotButton`
          themeDark: {
            // Add dark theme styles here
          },
          themeLight: {
            // Add light theme styles here
          },
        }),
      ],
    });
    
    Sentry.showFeedbackButton();
    Sentry.hideFeedbackButton();

    To learn more visit the documentation.

  • Re-export ErrorEvent and TransactionEvent types (#4859)

Fixes

  • crashedLastRun now returns the correct value (#4829)
  • Use engine-specific promise rejection tracking (#4826)
  • Fixes Feedback Widget accessibility issue on iOS (#4739)
  • Measuring TTID or TTFD could cause a crash when parentSpanId was removed (#4881)

Dependencies