Skip to content
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

Update dcictuils to 8.16.1 for vulnerabilities #67

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ foursight-core
Change Log
----------

5.7.0
=====
* 2024-10-11/dmichaels
* Updated dcicutils version (8.16.1) for vulnerabilities.
Updated cryptography version (43.0.1) for vulnerabilities.


5.6.2
=====
* Minor changes to the foursight_core/scripts/local_check_execution.py script.
Expand Down
4 changes: 3 additions & 1 deletion foursight_core/react/api/cognito.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# AWS Cognito authentication support functions.

from cryptography.hazmat.backends.openssl.rsa import _RSAPublicKey as RSAPublicKey
# from cryptography.hazmat.backends.openssl.rsa import _RSAPublicKey as RSAPublicKey
# The above import no longer works with cryptography version 43.0.1; only used for type hint.
RSAPublicKey = object
import jwt as jwtlib
from jwt import PyJWKClient
import requests
Expand Down
Loading
Loading