Skip to content

Commit e0b9302

Browse files
Merge pull request #75 from alexanderjordanbaker/Releasev1.1.0
Release v1.1.0
2 parents 5c3c30a + 0178b18 commit e0b9302

File tree

5 files changed

+37
-33
lines changed

5 files changed

+37
-33
lines changed

CHANGELOG

-29
This file was deleted.

CHANGELOG.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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

README.md

+2-2
Original file line numberDiff line numberDiff 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.0.0'
18+
implementation 'com.apple.itunes.storekit:app-store-server-library:1.1.0'
1919
2020
```
2121

@@ -24,7 +24,7 @@ implementation 'com.apple.itunes.storekit:app-store-server-library:1.0.0'
2424
<dependency>
2525
<groupId>com.apple.itunes.storekit</groupId>
2626
<artifactId>app-store-server-library</artifactId>
27-
<version>1.0.0</version>
27+
<version>1.1.0</version>
2828
</dependency>
2929
```
3030

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=1.0.0
1+
version=1.1.0
22
group=com.apple.itunes.storekit

src/main/java/com/apple/itunes/storekit/client/AppStoreServerAPIClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
public 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.0.0";
47+
private static final String USER_AGENT = "app-store-server-library/java/1.1.0";
4848
private static final MediaType JSON = MediaType.parse("application/json; charset=utf-8");
4949

5050
private final OkHttpClient httpClient;

0 commit comments

Comments
 (0)