File tree 5 files changed +37
-33
lines changed
src/main/java/com/apple/itunes/storekit/client
5 files changed +37
-33
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ ## Version 1.1.0
4
+ - Support App Store Server Notifications v2.10 [ https://github.com/apple/app-store-server-library-java/pull/74 ]
5
+ - Require appAppleId in SignedDataVerifier for the Production environment [ https://github.com/apple/app-store-server-library-java/pull/68 ]
6
+
7
+ ## Version 1.0.0
8
+ - Switch from GSON to Jackson for parsing [ https://github.com/apple/app-store-server-library-java/pull/58 ]
9
+ - Rename Status to VerificationStatus [ https://github.com/apple/app-store-server-library-java/pull/59 ]
10
+ - Add message to APIException and update JavaDocs [ https://github.com/apple/app-store-server-library-java/pull/60 ]
11
+
12
+ ## Version 0.2.0
13
+ - Significantly increase unit test coverage [ https://github.com/apple/app-store-server-library-java/pull/51 ]
14
+ - Add support for Xcode and LocalTesting environments [ https://github.com/apple/app-store-server-library-java/pull/49 ]
15
+ - Allow parsing unknown Enum values [ https://github.com/apple/app-store-server-library-java/pull/50 ]
16
+ - Add support for testing in Java 21 [ https://github.com/apple/app-store-server-library-java/pull/48 ]
17
+ - Add error codes from App Store Server API v1.9 [ https://github.com/apple/app-store-server-library-java/pull/43 ]
18
+ - Add new fields from App Store Server API v1.10 [ https://github.com/apple/app-store-server-library-java/pull/53 ]
19
+ - Fix private key parsing on Windows from @vpavic [ https://github.com/apple/app-store-server-library-java/pull/41 ]
20
+
21
+ ## Version 0.1.3
22
+
23
+ - Add status field to Data [ https://github.com/apple/app-store-server-library-java/pull/34 ]
24
+ - Publish JavaDocs
25
+
26
+ ## Version 0.1.2
27
+
28
+ - Make SignedDataVerifier::decodeSignedObject protected
29
+
30
+ ## Version 0.1.1
31
+
32
+ - Move release to Maven Central
33
+ - The additional repository is no longer needed in a Gradle/Maven config
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
15
15
16
16
### Gradle
17
17
``` groovy
18
- implementation 'com.apple.itunes.storekit:app-store-server-library:1.0 .0'
18
+ implementation 'com.apple.itunes.storekit:app-store-server-library:1.1 .0'
19
19
20
20
```
21
21
@@ -24,7 +24,7 @@ implementation 'com.apple.itunes.storekit:app-store-server-library:1.0.0'
24
24
<dependency >
25
25
<groupId >com.apple.itunes.storekit</groupId >
26
26
<artifactId >app-store-server-library</artifactId >
27
- <version >1.0 .0</version >
27
+ <version >1.1 .0</version >
28
28
</dependency >
29
29
```
30
30
Original file line number Diff line number Diff line change 1
- version =1.0 .0
1
+ version =1.1 .0
2
2
group =com.apple.itunes.storekit
Original file line number Diff line number Diff line change 44
44
public class AppStoreServerAPIClient {
45
45
private static final String PRODUCTION_URL = "https://api.storekit.itunes.apple.com" ;
46
46
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.0 .0" ;
47
+ private static final String USER_AGENT = "app-store-server-library/java/1.1 .0" ;
48
48
private static final MediaType JSON = MediaType .parse ("application/json; charset=utf-8" );
49
49
50
50
private final OkHttpClient httpClient ;
You can’t perform that action at this time.
0 commit comments