File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Sources/Swift/Core/Tools/ViewCapture Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 3737 - Detects missing or disabled `UIDesignRequiresCompatibility`
3838 - Uses defensive approach: assumes unsafe unless proven safe
3939- Add `options.experimental.enableSessionReplayInUnreliableEnvironment` to allow overriding the automatic disabling (#6389)
40+ - Fixes warnings about minimum OS version being lower than Xcode supported version (#5591)
41+ - Fix rendering method for fast view rendering (#6360)
4042
4143## 8.56.2
4244
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import UIKit
1515 let scale = ( view as? UIWindow ?? view. window) ? . screen. scale ?? 1
1616 let image = SentryGraphicsImageRenderer ( size: view. bounds. size, scale: scale) . image { context in
1717 if enableFastViewRendering {
18- view. layer. draw ( in: context. cgContext)
18+ view. layer. render ( in: context. cgContext)
1919 } else {
2020 view. drawHierarchy ( in: view. bounds, afterScreenUpdates: false )
2121 }
You can’t perform that action at this time.
0 commit comments