github getsentry/sentry-cocoa 7.0.0-alpha.1

latest releases: 9.0.0-rc.1, 9.0.0-rc.0, 8.57.3...
pre-release4 years ago

Features and fixes:

  • ref: Add read-only scope property to Hub #975

Breaking Changes:

  • ref: Remove SentryException.userReported #974
  • ref: Replace SentryLogLevel with SentryLevel #978

Migrating from 6.x to 7.x

We replaced the SentryLogLevel with SentryLevel, renamed logLevel to diagnosticLevel
on SentryOptions to align with other Sentry SDKs, and set the default diagnosticLevel to
SentryLevel.debug. Furthermore, we removed setting the logLevel statically on the SentrySDK.
Please use the SentryOptions to set the diagnosticLevel instead.

6.x

SentrySDK.start { options in
  options.logLevel = SentryLogLevel.verbose
}

// Or

SentrySDK.logLevel = SentryLogLevel.verbose

7.x

SentrySDK.start { options in
  options.diagnosticLevel = SentryLevel.debug
}

Don't miss a new sentry-cocoa release

NewReleases is sending notifications on new releases.