diff --git a/CHANGELOG.md b/CHANGELOG.md index ad69d20..36999ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,20 +1,25 @@ # Changelog +## Version 1.1.0 +- Support App Store Server Notifications v2.10 [https://github.com/apple/app-store-server-library-python/pull/65] +- Bump cryptography and pyOpenSSL maximum versions [https://github.com/apple/app-store-server-library-python/pull/61]/[https://github.com/apple/app-store-server-library-python/pull/63] +- Require appAppleId in SignedDataVerifier for the Production environment [https://github.com/apple/app-store-server-library-python/pull/60] + ## 1.0.0 -- Add error message to APIException [#52] +- Add error message to APIException [https://github.com/apple/app-store-server-library-python/pull/52] ## 0.3.0 -- Add missing status field to the Data model [#33] -- Add error codes from App Store Server API v1.9 [#39] -- Add new fields from App Store Server API v1.10 [#46] -- Add support for reading unknown enum values [#45] -- Add support for Xcode and LocalTesting environments [#44] +- Add missing status field to the Data model [https://github.com/apple/app-store-server-library-python/pull/33] +- Add error codes from App Store Server API v1.9 [https://github.com/apple/app-store-server-library-python/pull/39] +- Add new fields from App Store Server API v1.10 [https://github.com/apple/app-store-server-library-python/pull/46] +- Add support for reading unknown enum values [https://github.com/apple/app-store-server-library-python/pull/45] +- Add support for Xcode and LocalTesting environments [https://github.com/apple/app-store-server-library-python/pull/44] ## 0.2.1 -- Add py.typed file [#19] (https://github.com/apple/app-store-server-library-python/pull/19) -- Correct type annotation in PromotionalOfferSignatureCreator [#17] (https://github.com/apple/app-store-server-library-python/pull/17) +- Add py.typed file [https://github.com/apple/app-store-server-library-python/pull/19] +- Correct type annotation in PromotionalOfferSignatureCreator [https://github.com/apple/app-store-server-library-python/pull/17] ## 0.2.0 -- Correct type in LastTransactionsItem's status field [#11] (https://github.com/apple/app-store-server-library-python/pull/11) -- Fix default value None for fields should require an Optional type [#6] (https://github.com/apple/app-store-server-library-python/pull/6) \ No newline at end of file +- Correct type in LastTransactionsItem's status field [https://github.com/apple/app-store-server-library-python/pull/11] +- Fix default value None for fields should require an Optional type [https://github.com/apple/app-store-server-library-python/pull/6] diff --git a/appstoreserverlibrary/api_client.py b/appstoreserverlibrary/api_client.py index bddcf10..f278c9b 100644 --- a/appstoreserverlibrary/api_client.py +++ b/appstoreserverlibrary/api_client.py @@ -471,7 +471,7 @@ def _make_request(self, path: str, method: str, queryParameters: Dict[str, Union c = _get_cattrs_converter(type(body)) if body != None else None json = c.unstructure(body) if body != None else None headers = { - 'User-Agent': "app-store-server-library/python/1.0.0", + 'User-Agent': "app-store-server-library/python/1.1.0", 'Authorization': 'Bearer ' + self._generate_token(), 'Accept': 'application/json' } diff --git a/setup.py b/setup.py index b1f7c43..2bd99ff 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name="app-store-server-library", - version="1.0.0", + version="1.1.0", description="The App Store Server Library", long_description=long_description, long_description_content_type="text/markdown",