Skip to content

Commit ed5a551

Browse files
Feature/update versions for release 1.4.4 (#73)
* Fix github action build fail due to: https://stackoverflow.com/questions/71673404/importerror-cannot-import-name-unicodefun-from-click * Added partner setting to force canonicalize binary. * Formatted with black * Updating versions, changelog * Update setup.py, allow any version greater than 23.2 for pyopenssl --------- Co-authored-by: Abhishek Ram <[email protected]>
1 parent 426572d commit ed5a551

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

AUTHORS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
- Abhishek Ram <[email protected]> @abhishek-ram
2-
- Chad Gates @chadgates
2+
- Wassilios Lytras @chadgates
33
- Bruno Ribeiro da Silva <[email protected]> @loop0
44
- Robin C Samuel @robincsamuel
55
- Brandon Joyce @brandonjoyce

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
# Release History
22

3+
## 1.4.4 - 2024-05-18
4+
5+
* feat: add callback option to find partnerships (organization and partner combinations)
6+
* fix: add specific error when MDN received but original message was not found
7+
* feat: add key encryption algorithm parameters to partners with additional support for rsaes_oaep
8+
* feat: add signature algorithm parameter to partners with additional support for rsassa_pss
9+
* feat: add message id parameter to allow user provided message id
10+
* fix: bump pyOpenSSL version to 23.2.0, which bumps cryptography version to 41.0.x which fixes CVE-2023-2650
11+
312
## 1.4.3 - 2023-01-25
413

5-
* fix: update pyopenssl version to resovle pyca/cryptography#7959
14+
* fix: update pyopenssl version to resolve pyca/cryptography#7959
615

716
## 1.4.2 - 2022-12-11
817

pyas2lib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from pyas2lib.as2 import Organization
1010
from pyas2lib.as2 import Partner
1111

12-
__version__ = "1.4.3"
12+
__version__ = "1.4.4"
1313

1414

1515
__all__ = [

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
install_requires = [
44
"asn1crypto==1.5.1",
55
"oscrypto==1.3.0",
6-
"pyOpenSSL==23.2.0",
6+
"pyOpenSSL>=23.2.0",
77
]
88

99
tests_require = [
@@ -27,7 +27,7 @@
2727
long_description="Docs for this project are maintained at "
2828
"https://github.com/abhishek-ram/pyas2-lib/blob/"
2929
"master/README.md",
30-
version="1.4.3",
30+
version="1.4.4",
3131
author="Abhishek Ram",
3232
author_email="[email protected]",
3333
packages=find_packages(where=".", exclude=("test*",)),

0 commit comments

Comments
 (0)