[HomeKit] Ignore HMError.QuotaExceeded removed by Apple in Xcode 26.4#25024
[HomeKit] Ignore HMError.QuotaExceeded removed by Apple in Xcode 26.4#25024
Conversation
Apple removed the QuotaExceeded (106) enum value from native HomeKit headers in Xcode 26.4. Since error enum members cannot have availability attributes (enforced by cecil NoAvailabilityOnError test), keep the value for backward compatibility and add platform-specific xtro ignore entries. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
✅ [CI Build #6b25270] Build passed (Build packages) ✅Pipeline on Agent |
✅ [PR Build #6b25270] Build passed (Detect API changes) ✅Pipeline on Agent |
✅ API diff for current PR / commitNET (empty diffs)✅ API diff vs stableNET (empty diffs)ℹ️ Generator diffGenerator Diff: vsdrops (html) vsdrops (raw diff) gist (raw diff) - Please review changes) Pipeline on Agent |
✅ [CI Build #6b25270] Build passed (Build macOS tests) ✅Pipeline on Agent |
| HomeUpgradeRequired = 105, | ||
| // iOS 26.1 | ||
| #if !XAMCORE_5_0 | ||
| // iOS 26.1 - Apple removed this enum value from native headers in Xcode 26.4 |
There was a problem hiding this comment.
You won't need the xtro entries if you obsolete the enum value.
🚀 [CI Build #6b25270] Test results 🚀Test results✅ All tests passed on VSTS: test results. 🎉 All 156 tests passed 🎉 Tests counts✅ cecil: All 1 tests passed. Html Report (VSDrops) Download macOS tests✅ Tests on macOS Monterey (12): All 5 tests passed. Html Report (VSDrops) Download Linux Build VerificationPipeline on Agent |
Apple removed the QuotaExceeded (106) enum value from native HomeKit headers in Xcode 26.4. Since error enum members cannot have availability attributes (enforced by cecil NoAvailabilityOnError test), keep the value for backward compatibility and add platform-specific xtro ignore entries.