github getsentry/sentry-dart 9.0.0-RC.3

latest releases: 9.8.0, 9.7.0, 9.7.0-beta.5...
pre-release5 months ago

Features

  • Sentry Structured Logs (#2919)
// Enable in `SentryOptions`:
options.enableLogs = true;

// Use `Sentry.logger`
Sentry.logger.info("This is a info log.");
Sentry.logger.warn("This is a warning log with attributes.", attributes: {
  'attribute1': SentryLogAttribute.string('string'),
  'attribute2': SentryLogAttribute.int(1),
  'attribute3': SentryLogAttribute.double(1.0),
  'attribute4': SentryLogAttribute.bool(true),
});

Enhancements

  • Align User Feedback API (#2949)
    • Don’t apply breadcrumbs and extras from scope to feedback events
    • Capture session replay when processing feedback events
    • Record feedback client report for dropped feedback events
    • Record feedback client report for errors when using HttpTransport
  • Truncate feedback message to max 4096 characters (#2954)

Dependencies

Don't miss a new sentry-dart release

NewReleases is sending notifications on new releases.