Skip to content

Commit

Permalink
Merge pull request #66 from alexanderjordanbaker/Releasev1.1.0
Browse files Browse the repository at this point in the history
Release v1.1.0
  • Loading branch information
alexanderjordanbaker authored Mar 16, 2024
2 parents f742126 + 56c7ec2 commit 0be1f03
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
25 changes: 15 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
- 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]
2 changes: 1 addition & 1 deletion appstoreserverlibrary/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 0be1f03

Please sign in to comment.