Skip to content

Commit ef40730

Browse files
Merge pull request #120 from alexanderjordanbaker/v3.1.0
Release 3.1.0 of the Java library
2 parents 1b9f670 + c76b67e commit ef40730

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

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

3+
## Version 3.1.0
4+
- Incorporate changes for App Store Server API v1.13 and App Store Server Notifications v2.13 [https://github.com/apple/app-store-server-library-java/pull/116]
5+
- Handle parsing empty or unexpected bodies on API exceptions without throwing a caused-by exception [https://github.com/apple/app-store-server-library-java/pull/119]
6+
37
## Version 3.0.0
48
- Allow providing a custom bearer token provider and HTTP client implementation [https://github.com/apple/app-store-server-library-java/pull/109]
59
- This change refactors the internal implementation of the AppStoreServerAPIClient class. Users extending this class may see interface changes

README.md

Lines changed: 2 additions & 2 deletions
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:3.0.0'
18+
implementation 'com.apple.itunes.storekit:app-store-server-library:3.1.0'
1919
2020
```
2121

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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=3.0.0
1+
version=3.1.0
22
group=com.apple.itunes.storekit

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public abstract class BaseAppStoreServerAPIClient {
4141
private static final String PRODUCTION_URL = "https://api.storekit.itunes.apple.com";
4242
private static final String SANDBOX_URL = "https://api.storekit-sandbox.itunes.apple.com";
4343
private static final String LOCAL_TESTING_URL = "https://local-testing-base-url";
44-
private static final String USER_AGENT = "app-store-server-library/java/3.0.0";
44+
private static final String USER_AGENT = "app-store-server-library/java/3.1.0";
4545
private static final String JSON = "application/json; charset=utf-8";
4646

4747
private final BearerTokenAuthenticatorInterface bearerTokenAuthenticator;

0 commit comments

Comments
 (0)