-
Notifications
You must be signed in to change notification settings - Fork 255
Prepare release 3.5.0 #388
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prepare release 3.5.0
- Loading branch information
commit b682b243b0cd260a9219322e0cec5f1a638a49e2
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,22 @@ | ||
| # Changelog # | ||
|
|
||
| ## 3.5.0 -- 2025-05-28 ## | ||
|
|
||
| ### News ### | ||
|
|
||
| * Remove support for Python 3.8 | ||
| * Added support for Python 3.12 & 3.13 | ||
| * Upgrade to pyasn1 0.5.1+ | ||
| * Upgrade to pytest and other dependencies | ||
| * Add RTD config file to silence emailed deprecation warnings | ||
|
|
||
| ### Bug fixes and Improvements ### | ||
|
|
||
| * Remove get_random_bytes from cryptography backend | ||
| * Do not use `utc_now` on module level | ||
| * Remove key data (sensitive information) from JWKError exceptions | ||
| * Added possibility to call jwk.construct() with a private RSA key | ||
|
|
||
| ## 3.4.0 -- 2025-02-14 ## | ||
|
|
||
| ### News ### | ||
|
|
@@ -8,12 +25,13 @@ | |
| * Added support for Python 3.10 and 3.11 | ||
|
|
||
| ### Bug fixes and Improvements ### | ||
|
|
||
| * Updating `CryptographyAESKey::encrypt` to generate 96 bit IVs for GCM block | ||
| cipher mode | ||
| * Fix for PEM key comparisons caused by line lengths and new lines | ||
| * Fix for CVE-2024-33664 - JWE limited to 250KiB | ||
| * Fix for CVE-2024-33663 - signing JWT with public key is now forbidden | ||
| * Replace usage of deprecated datetime.utcnow() with datetime.now(UTC) | ||
| * Replace usage of deprecated datetime.utcnow() with datetime.now(UTC) | ||
|
|
||
| ### Housekeeping ### | ||
|
|
||
|
|
@@ -69,14 +87,14 @@ This is a greatly overdue release. | |
| * Improve `JWT.decode()` #76 (fixes #75) | ||
| * Sort headers when serializing to allow for headless JWT #136 (fixes #80) | ||
| * Adjust dependency handling | ||
| - Use PyCryptodome instead of PyCrypto #83 | ||
| - Update package dependencies #124 (fixes #158) | ||
| * Use PyCryptodome instead of PyCrypto #83 | ||
| * Update package dependencies #124 (fixes #158) | ||
|
||
| * Avoid using deprecated methods #85 | ||
| * Support X509 certificates #107 | ||
| * Isolate and flesh out cryptographic backends to enable independent operation #129 (fixes #114) | ||
| - Remove pyca/cryptography backend's dependency on python-ecdsa #117 | ||
| - Remove pycrypto/dome backends' dependency on python-rsa #121 | ||
| - Make pyca/cryptography backend the preferred backend if multiple backends are present #122 | ||
| * Remove pyca/cryptography backend's dependency on python-ecdsa #117 | ||
| * Remove pycrypto/dome backends' dependency on python-rsa #121 | ||
| * Make pyca/cryptography backend the preferred backend if multiple backends are present #122 | ||
|
|
||
| ### Bugfixes/Improvements ### | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This entry duplicates the existing '- - Use PyCryptodome instead of PyCrypto #83' under the 3.4.0 section; consider removing the outdated indented entry to avoid redundancy.