Skip to content

Commit 0a23af7

Browse files
Release v3.0.0
1 parent 4dc69af commit 0a23af7

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

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.0.0
4+
- Incorporate changes for App Store Server API v1.19 [https://github.com/apple/app-store-server-library-node/pull/365] from @riyazpanjwani
5+
- This changes ConsumptionRequest and several dependent types to the V2 variant, while the V1 version was created as a new type, to align with documentation, which is a breaking change
6+
37
## Version 2.0.0
48
- Support Retention Messaging API [https://github.com/apple/app-store-server-library-node/pull/341]
59
- This changes internal details of AppStoreServerAPIClient, which is a breaking change for subclassing clients

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export class AppStoreServerAPIClient {
117117
private static PRODUCTION_URL = "https://api.storekit.itunes.apple.com";
118118
private static SANDBOX_URL = "https://api.storekit-sandbox.itunes.apple.com";
119119
private static LOCAL_TESTING_URL = "https://local-testing-base-url";
120-
private static USER_AGENT = "app-store-server-library/node/2.0.0";
120+
private static USER_AGENT = "app-store-server-library/node/3.0.0";
121121

122122
private issuerId: string
123123
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": "2.0.0",
3+
"version": "3.0.0",
44
"description": "The App Store Server Library",
55
"main": "dist/index.js",
66
"keywords": [],

0 commit comments

Comments
 (0)