Skip to content

Commit 57a9316

Browse files
Merge pull request #108 from alexanderjordanbaker/Releasev1.1.0
Release 1.1.0
2 parents 578b0d5 + 87973f8 commit 57a9316

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
# Changelog
22

3+
## Version 1.1.0
4+
- Support App Store Server Notifications v2.10 [https://github.com/apple/app-store-server-library-node/pull/107]
5+
- Require appAppleId in SignedDataVerifier for the Production environment [https://github.com/apple/app-store-server-library-node/pull/86]
6+
37
## Version 1.0.1
4-
- Bump jsrsasign package version [#62]
8+
- Bump jsrsasign package version [https://github.com/apple/app-store-server-library-node/pull/62]
59

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

913
## Version 0.2.0
10-
- Add support for reading unknown enum values [#35]
11-
- Add support for Xcode and LocalTesting environments [#34]
12-
- Add error codes from App Store Server API v1.9 [#33]
13-
- Add new fields from App Store Server API v1.10 [#27]
14-
- Document error codes [#23]
15-
- Correct naming of SignedDataVerifier to match other libraries [#40]
14+
- Add support for reading unknown enum values [https://github.com/apple/app-store-server-library-node/pull/35]
15+
- Add support for Xcode and LocalTesting environments [https://github.com/apple/app-store-server-library-node/pull/34]
16+
- Add error codes from App Store Server API v1.9 [https://github.com/apple/app-store-server-library-node/pull/33]
17+
- Add new fields from App Store Server API v1.10 [https://github.com/apple/app-store-server-library-node/pull/27]
18+
- Document error codes [https://github.com/apple/app-store-server-library-node/pull/23]
19+
- Correct naming of SignedDataVerifier to match other libraries [https://github.com/apple/app-store-server-library-node/pull/40]

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ import { URLSearchParams } from 'url';
8181
export class AppStoreServerAPIClient {
8282
private static PRODUCTION_URL = "https://api.storekit.itunes.apple.com";
8383
private static SANDBOX_URL = "https://api.storekit-sandbox.itunes.apple.com";
84-
private static USER_AGENT = "app-store-server-library/node/1.0.1";
84+
private static USER_AGENT = "app-store-server-library/node/1.1.0";
8585

8686
private issuerId: string
8787
private keyId: string

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apple/app-store-server-library",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "The App Store Server Library",
55
"main": "dist/index.js",
66
"keywords": [],

0 commit comments

Comments
 (0)