From 453191bf927fe115db88655e14b1071596c128ae Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 23 Jul 2024 11:10:49 +0100
Subject: [PATCH] chore(deps): bump io.sentry:sentry-android from 7.11.0 to
7.12.0 (#790)
Bumps
[io.sentry:sentry-android](https://github.com/getsentry/sentry-java)
from 7.11.0 to 7.12.0.
Sourced from io.sentry:sentry-android's
releases. Session Replay Public Beta (#3339) To enable Replay use the SentryAndroid.init(context) { options -> // Currently under experimental options:
options.experimental.sessionReplay.sessionSampleRate = 1.0 // We suggest
0.1 in production (10% sessions sampled)
options.experimental.sessionReplay.errorSampleRate = 1.0 // To change default redaction behavior (defaults to true)
options.experimental.sessionReplay.redactAllImages = true
options.experimental.sessionReplay.redactAllText = true // To change quality of the recording (defaults to MEDIUM)
options.experimental.sessionReplay.quality =
SentryReplayOptions.SentryReplayQuality.MEDIUM // (LOW|MEDIUM|HIGH)
}
Release notes
7.12.0
Features
sessionReplay.sessionSampleRate
or sessionReplay.errorSampleRate
experimental options.import io.sentry.SentryReplayOptions
import io.sentry.android.core.SentryAndroid
To learn more visit Sentry's Mobile Session Replay documentation page.
We released our fifth Alpha version of the SDK with support. To get access, it requires adding your Sentry org to our feature flag. Please let us know on the waitlist if you're interested
We released our fourth Alpha version of the SDK with support. To get access, it requires adding your Sentry org to our feature flag. Please let us know on the waitlist if you're interested
Sourced from io.sentry:sentry-android's changelog.
7.12.0
Features
Session Replay Public Beta (#3339)
To enable Replay use the
sessionReplay.sessionSampleRate
orsessionReplay.errorSampleRate
experimental options.import io.sentry.SentryReplayOptions import io.sentry.android.core.SentryAndroid
SentryAndroid.init(context) { options ->
// Currently under experimental options: options.experimental.sessionReplay.sessionSampleRate = 1.0 options.experimental.sessionReplay.errorSampleRate = 1.0
// To change default redaction behavior (defaults to true) options.experimental.sessionReplay.redactAllImages = true options.experimental.sessionReplay.redactAllText = true
// To change quality of the recording (defaults to MEDIUM) options.experimental.sessionReplay.quality = SentryReplayOptions.SentryReplayQuality.MEDIUM // (LOW|MEDIUM|HIGH) }
To learn more visit Sentry's Mobile Session Replay documentation page.