File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed
src/main/java/com/apple/itunes/storekit/client Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## Version 2.0.0
4+ - Incorporate changes for App Store Server API v1.10.1 [ https://github.com/apple/app-store-server-library-java/pull/77 ]
5+ - This change is a breaking change, as the datatype of the price field has changed from Integer to Long
6+
37## Version 1.1.0
48- Support App Store Server Notifications v2.10 [ https://github.com/apple/app-store-server-library-java/pull/74 ]
59- Require appAppleId in SignedDataVerifier for the Production environment [ https://github.com/apple/app-store-server-library-java/pull/68 ]
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ The Java server library for the [App Store Server API](https://developer.apple.c
1515
1616### Gradle
1717``` groovy
18- implementation 'com.apple.itunes.storekit:app-store-server-library:1.1 .0'
18+ implementation 'com.apple.itunes.storekit:app-store-server-library:2.0 .0'
1919
2020```
2121
@@ -24,7 +24,7 @@ implementation 'com.apple.itunes.storekit:app-store-server-library:1.1.0'
2424<dependency >
2525 <groupId >com.apple.itunes.storekit</groupId >
2626 <artifactId >app-store-server-library</artifactId >
27- <version >1.1 .0</version >
27+ <version >2.0 .0</version >
2828</dependency >
2929```
3030
Original file line number Diff line number Diff line change 1- version =1.1 .0
1+ version =2.0 .0
22group =com.apple.itunes.storekit
Original file line number Diff line number Diff line change 4444public class AppStoreServerAPIClient {
4545 private static final String PRODUCTION_URL = "https://api.storekit.itunes.apple.com" ;
4646 private static final String SANDBOX_URL = "https://api.storekit-sandbox.itunes.apple.com" ;
47- private static final String USER_AGENT = "app-store-server-library/java/1.1 .0" ;
47+ private static final String USER_AGENT = "app-store-server-library/java/2.0 .0" ;
4848 private static final MediaType JSON = MediaType .parse ("application/json; charset=utf-8" );
4949
5050 private final OkHttpClient httpClient ;
You can’t perform that action at this time.
0 commit comments