Skip to content

Commit

Permalink
Release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderjordanbaker committed Mar 16, 2024
1 parent 86458b9 commit d73e4cd
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 33 deletions.
29 changes: 0 additions & 29 deletions CHANGELOG

This file was deleted.

33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Changelog

## Version 1.1.0
- Support App Store Server Notifications v2.10 [https://github.com/apple/app-store-server-library-java/pull/74]
- Require appAppleId in SignedDataVerifier for the Production environment [https://github.com/apple/app-store-server-library-java/pull/68]

## Version 1.0.0
- Switch from GSON to Jackson for parsing [https://github.com/apple/app-store-server-library-java/pull/58]
- Rename Status to VerificationStatus [https://github.com/apple/app-store-server-library-java/pull/59]
- Add message to APIException and update JavaDocs [https://github.com/apple/app-store-server-library-java/pull/60]

## Version 0.2.0
- Significantly increase unit test coverage [https://github.com/apple/app-store-server-library-java/pull/51]
- Add support for Xcode and LocalTesting environments [https://github.com/apple/app-store-server-library-java/pull/49]
- Allow parsing unknown Enum values [https://github.com/apple/app-store-server-library-java/pull/50]
- Add support for testing in Java 21 [https://github.com/apple/app-store-server-library-java/pull/48]
- Add error codes from App Store Server API v1.9 [https://github.com/apple/app-store-server-library-java/pull/43]
- Add new fields from App Store Server API v1.10 [https://github.com/apple/app-store-server-library-java/pull/53]
- Fix private key parsing on Windows from @vpavic [https://github.com/apple/app-store-server-library-java/pull/41]

## Version 0.1.3

- Add status field to Data [https://github.com/apple/app-store-server-library-java/pull/59]
- Publish JavaDocs

## Version 0.1.2

- Make SignedDataVerifier::decodeSignedObject protected

## Version 0.1.1

- Move release to Maven Central
- The additional repository is no longer needed in a Gradle/Maven config
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:1.0.0'
implementation 'com.apple.itunes.storekit:app-store-server-library:1.1.0'
```

Expand All @@ -24,7 +24,7 @@ implementation 'com.apple.itunes.storekit:app-store-server-library:1.0.0'
<dependency>
<groupId>com.apple.itunes.storekit</groupId>
<artifactId>app-store-server-library</artifactId>
<version>1.0.0</version>
<version>1.1.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=1.0.0
version=1.1.0
group=com.apple.itunes.storekit
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
public class AppStoreServerAPIClient {
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 USER_AGENT = "app-store-server-library/java/1.0.0";
private static final String USER_AGENT = "app-store-server-library/java/1.1.0";
private static final MediaType JSON = MediaType.parse("application/json; charset=utf-8");

private final OkHttpClient httpClient;
Expand Down

0 comments on commit d73e4cd

Please sign in to comment.