Skip to content

Commit f79fc89

Browse files
Review feedback
1 parent 10a178c commit f79fc89

File tree

2 files changed

+3
-25
lines changed

2 files changed

+3
-25
lines changed

CHANGELOG.md

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,6 @@
3939

4040
See https://develop.sentry.dev/sdk/telemetry/traces/distributed-tracing/#w3c-trace-context-header for more details.
4141

42-
### Features
43-
44-
- The SDK now makes use of the new SessionEndStatus `Unhandled` when capturing an unhandled but non-terminal exception, i.e. through the UnobservedTaskExceptionIntegration ([#4633](https://github.com/getsentry/sentry-dotnet/pull/4633), [#4653](https://github.com/getsentry/sentry-dotnet/pull/4653))
45-
- The SDK now provides a `IsSessionActive` to allow checking the session state ([#4662](https://github.com/getsentry/sentry-dotnet/pull/4662))
46-
- The SDK now makes use of the new SessionEndStatus `Unhandled` when capturing an unhandled but non-terminal exception, i.e. through the UnobservedTaskExceptionIntegration ([#4633](https://github.com/getsentry/sentry-dotnet/pull/4633))
47-
4842
### Fixes
4943

5044
- The SDK avoids redundant scope sync after transaction finish ([#4623](https://github.com/getsentry/sentry-dotnet/pull/4623))
@@ -56,24 +50,6 @@
5650

5751
- This release adds support for .NET 10 and drops support for net8.0-android, net8.0-ios, net8.0-maccatalyst and net8.0-windows10.0.19041.0 ([#4461](https://github.com/getsentry/sentry-dotnet/pull/4461))
5852
- Added support for v3 of the Android AssemblyStore format that is used in .NET 10 and dropped support for v1 that was used in .NET 8 ([#4583](https://github.com/getsentry/sentry-dotnet/pull/4583))
59-
- Bump Cocoa SDK from v8.56.2 to v8.57.0 ([#4637](https://github.com/getsentry/sentry-dotnet/pull/4637))
60-
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8570)
61-
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.56.2...8.57.0)
62-
- Bump Native SDK from v0.11.2 to v0.11.3 ([#4636](https://github.com/getsentry/sentry-dotnet/pull/4636))
63-
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#0113)
64-
- [diff](https://github.com/getsentry/sentry-native/compare/0.11.2...0.11.3)
65-
- Bump Cocoa SDK from v8.56.2 to v8.57.1 ([#4637](https://github.com/getsentry/sentry-dotnet/pull/4637), [#4680](https://github.com/getsentry/sentry-dotnet/pull/4680))
66-
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8571)
67-
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.56.2...8.57.1)
68-
- Bump Native SDK from v0.11.2 to v0.12.0 ([#4636](https://github.com/getsentry/sentry-dotnet/pull/4636), [#4678](https://github.com/getsentry/sentry-dotnet/pull/4678))
69-
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#0120)
70-
- [diff](https://github.com/getsentry/sentry-native/compare/0.11.2...0.12.0)
71-
- Bump Java SDK from v8.23.0 to v8.24.0 ([#4667](https://github.com/getsentry/sentry-dotnet/pull/4667))
72-
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8240)
73-
- [diff](https://github.com/getsentry/sentry-java/compare/8.23.0...8.24.0)
74-
- Bump CLI from v2.56.1 to v2.57.0 ([#4668](https://github.com/getsentry/sentry-dotnet/pull/4668))
75-
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2570)
76-
- [diff](https://github.com/getsentry/sentry-cli/compare/2.56.1...2.57.0)
7753

7854
## 5.16.2
7955

src/Sentry/Platforms/Cocoa/SentrySdk.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ private static void InitSentryCocoaSdk(SentryOptions options)
148148
// Session Replay options for the Cocoa SDK
149149
if (options.Native.ExperimentalOptions.SessionReplay.IsSessionReplayEnabled)
150150
{
151-
// For replay to work on iOS, session tracking must be enabled in the Cocoa SDKt
151+
// For replay to work on iOS, session tracking must be enabled in the Cocoa SDK
152152
options.AutoSessionTracking = false;
153153
nativeOptions.EnableAutoSessionTracking = true;
154154

@@ -163,6 +163,8 @@ private static void InitSentryCocoaSdk(SentryOptions options)
163163
cocoaReplayOptions.OnErrorSampleRate = onErrorSampleRate;
164164
cocoaReplayOptions.MaskAllText = options.Native.ExperimentalOptions.SessionReplay.MaskAllText;
165165
cocoaReplayOptions.MaskAllImages = options.Native.ExperimentalOptions.SessionReplay.MaskAllImages;
166+
cocoaReplayOptions.EnableViewRendererV2 = options.Native.ExperimentalOptions.SessionReplay.EnableViewRendererV2;
167+
cocoaReplayOptions.EnableFastViewRendering = options.Native.ExperimentalOptions.SessionReplay.EnableFastViewRendering;
166168
nativeOptions.SessionReplay = cocoaReplayOptions;
167169
}
168170

0 commit comments

Comments
 (0)