Skip to content

1.0.0

Choose a tag to compare

@sentry-release-bot sentry-release-bot released this 29 Aug 18:02

After several months of work we're finally shipping the Sentry SDK for Unreal Engine version 1.0.0.
If you are upgrading from a version 0.x, please refer to the migration guide on our docs.

This release also includes compatibility with plugin extensions for PlayStation, Xbox and Nintendo Switch.
Access to the source code of these console extensions require components that exist in private GitHub repositories. Invites are sent to licensed developers after a middleware verification. Please follow the steps on our docs.

Note that the diff from the latest experimental release 0.22.0 and this 1.0.0 release include several alpha and beta releases.
We have not combined all of them in this header but instead, left each incremental change in their own version below.

If you're migrating from 0.22.0 and want to read through all the changes, we recommend starting from ## 1.0.0-alpha.1 on the full changelog on GitHub.

In case you encounter any issues, please create a ticket on our GitHub repository.

Breaking Changes

  • User feedback API reworked:
    • Feedback no longer needs to be associated with a specific event - the only required parameter is the user message
    • SentryUserFeedback class replaced with SentryFeedback
    • CaptureUserFeedback function in SentrySubsystem replaced with CaptureFeedback
    • CreateSentryUserFeedback function in SentryLibrary replaced with CreateSentryFeedback
  • On Windows and Linux, ToString function of SentryId class now returns the ID without dashes
  • StartTransactionWithContextAndOptions function in SentrySubsystem now accepts FSentryTransactionOptions struct instead of string map
  • GetCustomSamplingContext function in SentrySamplingContext now returns TMap<FString, FSentryVariant> instead of string map

Features

  • Add functionality to give/revoke user consent for crash uploads (#1053)
  • Add new API for capturing user feedback (#1051)
  • Add Traces sampling function support for Windows and Linux (#1057)
  • Read DSN, Environment and Release options from environment variables (#1054)

Dependencies