diff --git a/CHANGELOG.md b/CHANGELOG.md index 5202598f..40bbe6de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ Version 0.54.3 ------------- +**Bugfixes** +- Support device class `APPLE_SILICON_MAC` on App Store Connect API [`Device`](https://developer.apple.com/documentation/appstoreconnectapi/device) responses. [PR #437](https://github.com/codemagic-ci-cd/cli-tools/pull/437) + **Improvements** - Fail action `app-store-connect fetch-signing-files` early with descriptive error message if bundle ID identifier is not given. [PR #438](https://github.com/codemagic-ci-cd/cli-tools/pull/438) diff --git a/src/codemagic/apple/resources/enums.py b/src/codemagic/apple/resources/enums.py index ae858ecd..5c925390 100644 --- a/src/codemagic/apple/resources/enums.py +++ b/src/codemagic/apple/resources/enums.py @@ -259,6 +259,7 @@ class ContentRightsDeclaration(ResourceEnum): class DeviceClass(ResourceEnum): + APPLE_SILICON_MAC = "APPLE_SILICON_MAC" APPLE_TV = "APPLE_TV" APPLE_VISION_PRO = "APPLE_VISION_PRO" APPLE_WATCH = "APPLE_WATCH"