chore(compat): support macOS 14 (Sonoma) and later#78
Merged
Conversation
The app uses no macOS-26-only APIs (verified: builds clean against a 15.0 target, zero availability errors; all frameworks support far older β Sparkle 2 macOS 10.11+, SMAppService 13+, SF Symbols all pre-15). The 26.3 target was just the dev machine's OS, not a real requirement. Lowering it widens support to Apple's currently-maintained releases (26/15/14). - Azimuth.xcodeproj: MACOSX_DEPLOYMENT_TARGET 26.3 -> 15.0 (Debug + Release). - README / docs (index.html, EN+KO): 'macOS 26.3 (Tahoe)+' -> 'macOS 15 (Sequoia)+'; rewrote the FAQ that falsely claimed it 'uses APIs introduced in [Tahoe]'. - AGENTS.md / CLAUDE.md / CONTRIBUTING.md: deployment-target references updated. - SettingsCard comment: drop the 'Tahoe' style reference. Verified: build OK (15.0 target), test 160, lint 0, coverage PASS. Runtime smoke test on a real macOS 15 machine still recommended.
Same static-audit basis as the macOS 15 lowering: no macOS-15+-only APIs are used. Builds clean against a 14.0 target (zero availability errors); binding dependencies all support older β SMAppService macOS 13+, Sparkle 10.11+, all SF Symbols are macOS 11-era, and LSMinimumSystemVersion tracks the target ($(MACOSX_DEPLOYMENT_TARGET)) so it becomes 14.0 automatically. - Azimuth.xcodeproj: MACOSX_DEPLOYMENT_TARGET 15.0 -> 14.0 (Debug + Release). - README / docs (index.html, EN+KO) / AGENTS.md / CLAUDE.md / CONTRIBUTING.md: 'macOS 15 (Sequoia)' -> 'macOS 14 (Sonoma)'. macOS 14 covers all three of Apple's currently-maintained releases (26/15/14). Verified: build OK (14.0 target), test 160, lint 0, coverage PASS. Runtime smoke test on a real macOS 14 machine still recommended.
The manual's Requirements section listed four cards but never stated the OS requirement (unlike README/landing). Add a 'macOS version' card (macOS 14 / Sonoma or later) and bump the section subtitle four -> five. Bilingual EN/KO.
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
Lower the deployment target from macOS 26.3 β 14.0, so Azimuth runs on all three of Apple's currently-maintained macOS releases (26 Tahoe / 15 Sequoia / 14 Sonoma). The 26.3 target was just the dev machine's OS, not a real requirement β the app uses no macOS-15+-only APIs.
Two commits: lower to 15 (Sequoia), then extend to 14 (Sonoma).
Static compatibility audit (the compiler alone isn't enough)
LSMinimumSystemVersion = $(MACOSX_DEPLOYMENT_TARGET)β a build variable, so it auto-becomes 14.0 (no hard-coded 26.3 gate). βSDKROOT=macosx), zero availability errors/warnings β the SDK's availability annotations gate anything newer than 14. β@available(macOS β¦)gates in the code.Changes
Azimuth.xcodeproj:MACOSX_DEPLOYMENT_TARGET26.3 β 14.0 (Debug + Release).Verification
build OK (14.0 target) Β· test 160 Β· lint 0 Β· coverage PASS Β· no 26.3/Tahoe/15/Sequoia refs remain.
Not covered here (follow-ups)
ai-screams/homebrew-tap): itsdepends_on macos: :sequoia(+ a stale "26.3" comment) must be lowered to:sonoma, otherwise macOS 14 users are blocked from installing via Homebrew despite app support. Tracked separately.