Skip to content

Commit

Permalink
Merge pull request #128 from alexanderjordanbaker/Release3.2.0
Browse files Browse the repository at this point in the history
Release version 3.2.0
  • Loading branch information
alexanderjordanbaker authored Oct 25, 2024
2 parents c9e6d60 + eaf9d6b commit 7c8b5c2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## Version 3.2.0
- Incorporate caching of validated certificate chains to prevent repetitive OCSP fetches [https://github.com/apple/app-store-server-library-java/pull/127]

## Version 3.1.0
- 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]
- 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]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The Java server library for the [App Store Server API](https://developer.apple.c

### Gradle
```groovy
implementation 'com.apple.itunes.storekit:app-store-server-library:3.1.0'
implementation 'com.apple.itunes.storekit:app-store-server-library:3.2.0'
```

Expand All @@ -24,7 +24,7 @@ implementation 'com.apple.itunes.storekit:app-store-server-library:3.1.0'
<dependency>
<groupId>com.apple.itunes.storekit</groupId>
<artifactId>app-store-server-library</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=3.1.0
version=3.2.0
group=com.apple.itunes.storekit
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public abstract class BaseAppStoreServerAPIClient {
private static final String PRODUCTION_URL = "https://api.storekit.itunes.apple.com";
private static final String SANDBOX_URL = "https://api.storekit-sandbox.itunes.apple.com";
private static final String LOCAL_TESTING_URL = "https://local-testing-base-url";
private static final String USER_AGENT = "app-store-server-library/java/3.1.0";
private static final String USER_AGENT = "app-store-server-library/java/3.2.0";
private static final String JSON = "application/json; charset=utf-8";

private final BearerTokenAuthenticatorInterface bearerTokenAuthenticator;
Expand Down

0 comments on commit 7c8b5c2

Please sign in to comment.