Skip to content

Commit

Permalink
Merge pull request #108 from alexanderjordanbaker/Releasev1.1.0
Browse files Browse the repository at this point in the history
Release 1.1.0
  • Loading branch information
alexanderjordanbaker committed Mar 16, 2024
2 parents 578b0d5 + 87973f8 commit 57a9316
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
20 changes: 12 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
# Changelog

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

## Version 1.0.1
- Bump jsrsasign package version [#62]
- Bump jsrsasign package version [https://github.com/apple/app-store-server-library-node/pull/62]

## Version 1.0.0
- Add error message to APIException [#48]
- Add error message to APIException [https://github.com/apple/app-store-server-library-node/pull/48]

## Version 0.2.0
- Add support for reading unknown enum values [#35]
- Add support for Xcode and LocalTesting environments [#34]
- Add error codes from App Store Server API v1.9 [#33]
- Add new fields from App Store Server API v1.10 [#27]
- Document error codes [#23]
- Correct naming of SignedDataVerifier to match other libraries [#40]
- Add support for reading unknown enum values [https://github.com/apple/app-store-server-library-node/pull/35]
- Add support for Xcode and LocalTesting environments [https://github.com/apple/app-store-server-library-node/pull/34]
- Add error codes from App Store Server API v1.9 [https://github.com/apple/app-store-server-library-node/pull/33]
- Add new fields from App Store Server API v1.10 [https://github.com/apple/app-store-server-library-node/pull/27]
- Document error codes [https://github.com/apple/app-store-server-library-node/pull/23]
- Correct naming of SignedDataVerifier to match other libraries [https://github.com/apple/app-store-server-library-node/pull/40]
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ import { URLSearchParams } from 'url';
export class AppStoreServerAPIClient {
private static PRODUCTION_URL = "https://api.storekit.itunes.apple.com";
private static SANDBOX_URL = "https://api.storekit-sandbox.itunes.apple.com";
private static USER_AGENT = "app-store-server-library/node/1.0.1";
private static USER_AGENT = "app-store-server-library/node/1.1.0";

private issuerId: string
private keyId: string
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apple/app-store-server-library",
"version": "1.0.1",
"version": "1.1.0",
"description": "The App Store Server Library",
"main": "dist/index.js",
"keywords": [],
Expand Down

0 comments on commit 57a9316

Please sign in to comment.