Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## Version 4.0.0
- Support Retention Messaging API [https://github.com/apple/app-store-server-library-swift/pull/101]
- This changes internal details of AppStoreServerAPIClient, which is a breaking change for subclassing clients
- Incorporate changes for App Store Server API v1.17 [https://github.com/apple/app-store-server-library-swift/pull/102] from @riyazpanjwani
- Add a new VerificationError case for retryable OCSP network failures [https://github.com/apple/app-store-server-library-swift/pull/104]
- Incorporate changes for App Store Server API v1.18 [https://github.com/apple/app-store-server-library-swift/pull/106] from @izanger
- This changes OfferType's case subscriptionOfferCode to offerCode, which is a breaking change
- Fix Base64URL decoding [https://github.com/apple/app-store-server-library-swift/pull/107] from @shimastripe

## Version 3.1.0
- Incorporate changes for App Store Server API v1.16 [https://github.com/apple/app-store-server-library-swift/pull/89]
- Update Swift docs to v6 [https://github.com/apple/app-store-server-library-swift/pull/85]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The Swift server library for the [App Store Server API](https://developer.apple.
### Swift Package Manager
Add the following dependency
```swift
.package(url: "https://github.com/apple/app-store-server-library-swift.git", .upToNextMinor(from: "3.1.0")),
.package(url: "https://github.com/apple/app-store-server-library-swift.git", .upToNextMinor(from: "4.0.0")),
```

## Documentation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public actor AppStoreServerAPIClient: Sendable {
case invalidEnvironment
}

private static let userAgent = "app-store-server-library/swift/3.1.0"
private static let userAgent = "app-store-server-library/swift/4.0.0"
private static let productionUrl = "https://api.storekit.itunes.apple.com"
private static let sandboxUrl = "https://api.storekit-sandbox.itunes.apple.com"
private static let localTestingUrl = "https://local-testing-base-url"
Expand Down