feat: Require iOS 27 across iOS targets - #318
Merged
Merged
Conversation
Set the shared iOS deployment target to 27.0 and remove the obsolete iOS 26.1 tab accessory availability branch. Keep snapshot settling needed on the iOS 27 renderer while updating its documentation.
kyleve
added this pull request to stack #320
September 17, 2026 19:43
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
MainTabs.Why
The supported iOS runtime is now 27.0. The old deployment minimum kept an unreachable iOS 26.0 presentation path and prevented the follow-on SwiftData HistoryObserver migration.
Compatibility
Devices on iOS 26 cannot install this app version. Persistence, CloudKit schema, and backup formats do not change.
Package.swiftuses.iOS("27.0")because the manifest's Swift tools version 6.2 does not provide the.v27shorthand.Review focus
Testing
./ide --no-open— passed../swiftformat --lint— passed.BUMPER_EVALUATION_TIMEOUT_SECONDS=300 ./test --architecture-only— passed; the default 60-second budget timed out on the initial run../test --everything --skip-architecture— 2,023 iOS unit tests and 50 snapshot suites passed.mise exec -- tuist test Ledger-macOS-Tests --no-selective-testing -- -destination 'platform=macOS'— passed.Stack
Base PR. PR #319 migrates WhereCore to HistoryObserver on top of this minimum-version change.