-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade the project to use Xcode 15.4 #3027
Conversation
Generated by 🚫 Danger Swift against 14580ba |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #3027 +/- ##
===========================================
+ Coverage 77.88% 77.93% +0.04%
===========================================
Files 695 695
Lines 53993 53997 +4
===========================================
+ Hits 42052 42080 +28
+ Misses 11941 11917 -24
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Quality Gate passedIssues Measures |
The main change is (as always) snapshot related:
Preview snapshots were failing whenever a
MessageText
instance had more than 5 lines of text. Tracked it down to pointfreeco/swift-snapshot-testing#871 which turns out to be caused by the library snapshotting at an origin of(10000, 10000)
whenever the safe area is set to.zero
. Because of this I've tweaked the stencil to use a value of.one
and now we're using an iPhone SE to generate them as it has the smallest safe area of all the supported devices.This seems to have helped with a handful of issues we were seeing anyway such as the below:
That said I caveat it with the fact it has introduced the following rendering issue with the use of our
searchController
modifier. However this only presents itself on an iPhone, it looks fine on iPad.