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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## Version 3.0.0
- Incorporate changes for App Store Server API v1.15 and App Store Server Notifications v2.15 [https://github.com/apple/app-store-server-library-swift/pull/82]
- Add verified chain caching to improve performance [https://github.com/apple/app-store-server-library-swift/pull/80]
- Rename Environment -> AppStoreEnvironment [https://github.com/apple/app-store-server-library-swift/pull/81]
- This change is a breaking change
- Rename Data -> NotificationData to deconflict with Foundation.Data [https://github.com/apple/app-store-server-library-swift/pull/79]
- This change is a breaking change
- Move to Swift and Swift Tools Version 6 [https://github.com/apple/app-store-server-library-swift/pull/78]
- This change is a breaking change
- Update to JWTKit5 [https://github.com/apple/app-store-server-library-swift/pull/68] from @dimitribouniol
- Make data models conform to Sendable [https://github.com/apple/app-store-server-library-swift/pull/64] from @shimastripe

## Version 2.3.0
- Incorporate changes for App Store Server API v1.13 and App Store Server Notifications v2.13 [https://github.com/apple/app-store-server-library-swift/pull/61]
- Resolve issue where a Date passed as an input that contained a microsecond portiion would cause an API exception [https://github.com/apple/app-store-server-library-swift/pull/62]
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: "2.3.0")),
.package(url: "https://github.com/apple/app-store-server-library-swift.git", .upToNextMinor(from: "3.0.0")),
```

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

private static let userAgent = "app-store-server-library/swift/2.3.0"
private static let userAgent = "app-store-server-library/swift/3.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