Skip to content

Commit d841147

Browse files
Merge pull request #84 from alexanderjordanbaker/v3.0.0
Release version 3.0.0
2 parents 69db5bf + 65cf458 commit d841147

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## Version 3.0.0
4+
- 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]
5+
- Add verified chain caching to improve performance [https://github.com/apple/app-store-server-library-swift/pull/80]
6+
- Rename Environment -> AppStoreEnvironment [https://github.com/apple/app-store-server-library-swift/pull/81]
7+
- This change is a breaking change
8+
- Rename Data -> NotificationData to deconflict with Foundation.Data [https://github.com/apple/app-store-server-library-swift/pull/79]
9+
- This change is a breaking change
10+
- Move to Swift and Swift Tools Version 6 [https://github.com/apple/app-store-server-library-swift/pull/78]
11+
- This change is a breaking change
12+
- Update to JWTKit5 [https://github.com/apple/app-store-server-library-swift/pull/68] from @dimitribouniol
13+
- Make data models conform to Sendable [https://github.com/apple/app-store-server-library-swift/pull/64] from @shimastripe
14+
315
## Version 2.3.0
416
- 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]
517
- 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]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The Swift server library for the [App Store Server API](https://developer.apple.
1616
### Swift Package Manager
1717
Add the following dependency
1818
```swift
19-
.package(url: "https://github.com/apple/app-store-server-library-swift.git", .upToNextMinor(from: "2.3.0")),
19+
.package(url: "https://github.com/apple/app-store-server-library-swift.git", .upToNextMinor(from: "3.0.0")),
2020
```
2121

2222
## Documentation

Sources/AppStoreServerLibrary/AppStoreServerAPIClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class AppStoreServerAPIClient {
1414
case invalidEnvironment
1515
}
1616

17-
private static let userAgent = "app-store-server-library/swift/2.3.0"
17+
private static let userAgent = "app-store-server-library/swift/3.0.0"
1818
private static let productionUrl = "https://api.storekit.itunes.apple.com"
1919
private static let sandboxUrl = "https://api.storekit-sandbox.itunes.apple.com"
2020
private static let localTestingUrl = "https://local-testing-base-url"

0 commit comments

Comments
 (0)