Skip to content

Commit

Permalink
Make deprecated relations on App resource optional (#439)
Browse files Browse the repository at this point in the history
  • Loading branch information
priitlatt authored Nov 7, 2024
1 parent 42fb60b commit 942b744
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ 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)
- Make undocumented `preOrder` and deprecated `inAppPurchases` relationships on App Store connect https://developer.apple.com/documentation/appstoreconnectapi/app/relationships-data.dictionary model optional . [PR #439](https://github.com/codemagic-ci-cd/cli-tools/pull/439)

**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)
Expand Down
4 changes: 2 additions & 2 deletions src/codemagic/apple/resources/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,6 @@ class Relationships(Resource.Relationships):
builds: Relationship
endUserLicenseAgreement: Relationship
gameCenterEnabledVersions: Relationship
inAppPurchases: Relationship
preOrder: Relationship
preReleaseVersions: Relationship

alternativeDistributionKey: Optional[Relationship] = None
Expand All @@ -98,9 +96,11 @@ class Relationships(Resource.Relationships):
ciProduct: Optional[Relationship] = None
customerReviews: Optional[Relationship] = None
gameCenterDetail: Optional[Relationship] = None
inAppPurchases: Optional[Relationship] = None
inAppPurchasesV2: Optional[Relationship] = None
marketplaceSearchDetail: Optional[Relationship] = None
perfPowerMetrics: Optional[Relationship] = None
preOrder: Optional[Relationship] = None
pricePoints: Optional[Relationship] = None
promotedPurchases: Optional[Relationship] = None
reviewSubmissions: Optional[Relationship] = None
Expand Down

0 comments on commit 942b744

Please sign in to comment.