Skip to content

chore(compat): support macOS 14 (Sonoma) and later#78

Merged
pignuante merged 3 commits into
mainfrom
chore/lower-deployment-target-macos14
Jul 7, 2026
Merged

chore(compat): support macOS 14 (Sonoma) and later#78
pignuante merged 3 commits into
mainfrom
chore/lower-deployment-target-macos14

Conversation

@pignuante

Copy link
Copy Markdown
Contributor

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)

  • Runtime min-version gate: LSMinimumSystemVersion = $(MACOSX_DEPLOYMENT_TARGET) β€” a build variable, so it auto-becomes 14.0 (no hard-coded 26.3 gate). βœ…
  • SF Symbols (string-based, not compile-checked): all 13 used symbols are macOS 11-era standard symbols β†’ available on 14. Worst case if any were missing is a nil image (cosmetic), not a crash. βœ…
  • Dependencies: Sparkle 2 = macOS 10.11+, SMAppService = macOS 13+ β€” both below 14. βœ…
  • Swift APIs: clean build against 14.0 (SDKROOT=macosx), zero availability errors/warnings β€” the SDK's availability annotations gate anything newer than 14. βœ…
  • No runtime @available(macOS …) gates in the code.

Changes

  • Azimuth.xcodeproj: MACOSX_DEPLOYMENT_TARGET 26.3 β†’ 14.0 (Debug + Release).
  • Docs (README badge + requirements, landing EN/KO incl. JSON-LD/meta/FAQ, AGENTS.md, CLAUDE.md, CONTRIBUTING.md): "macOS 26.3 (Tahoe)" β†’ "macOS 14 (Sonoma)". Also fixed the landing FAQ that falsely claimed the app "uses APIs introduced in [Tahoe]".

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)

  • Real macOS 14 device smoke test β€” recommended; couldn't run one (no device). Static risk is very low and any failure mode is cosmetic.
  • Homebrew cask (separate repo ai-screams/homebrew-tap): its depends_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.

pignuante added 3 commits July 6, 2026 18:05
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.
@pignuante pignuante self-assigned this Jul 6, 2026
@pignuante pignuante merged commit c587833 into main Jul 7, 2026
3 checks passed
@pignuante pignuante deleted the chore/lower-deployment-target-macos14 branch July 7, 2026 01:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant