Skip to content

Commit

Permalink
v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Aug 22, 2024
1 parent c12e70c commit 40a6674
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions Changes.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
Changes for v4.0.0 (2024-08-21)
===============================

- Replace PyOpenSSL with Cryptography (#260)

- This is a major infrastructure change that replaces core
certificate parsing, key processing, signature validation, and
certificate chain validation functions previously provided by
PyOpenSSL with those provided by Cryptography. Care was taken to
preserve the exisitng API, including exception types, but many
error messages raised in various error conditions have changed. If
you see unexpected behavior and you have reason to believe it is
incorrect, please file an issue.

- Breaking change: the ca_path parameter, previously used to specify
CA certificate stores, is no longer supported. Use the ca_pem_file
parameter instead.

- Raise error when invalid certificate string is passed as input to
signer

- Fix public key matching for ECDSA (#245)

Changes for v3.2.2 (2024-01-28)
===============================

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="signxml",
version="3.2.2",
version="4.0.0",
url="https://github.com/kislyuk/signxml",
license="Apache Software License",
author="Andrey Kislyuk",
Expand Down

0 comments on commit 40a6674

Please sign in to comment.