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

Bump the pip group across 1 directory with 4 updates #3097

Merged
merged 6 commits into from
Aug 15, 2024
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
18 changes: 9 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
alembic==1.11.1
altair==4.1.0
celery==5.2.7
cryptography==41.0.6
cryptography==43.0.0
datasketch==1.5.0
dfir-unfurl==20230901
opensearch-py==2.3.1
Flask==2.3.2
opensearch-py==2.6.0
Flask==3.0.3
flask_bcrypt==1.0.1
flask_login==0.6.2
flask_login==0.6.3
flask_migrate==4.0.4
flask_restful==0.3.10
flask_sqlalchemy==3.0.3
flask_wtf==1.1.1
flask_wtf==1.2.1
google-auth==2.32.0
google_auth_oauthlib==0.4.1
gunicorn==19.10.0 # Note: Last version to support py2
gunicorn==22.0.0
numpy==1.23.4
oauthlib==3.1.0
pandas==1.5.0
PyJWT==2.4.0
python_dateutil==2.8.1
PyYAML==6.0.1
redis==4.4.4
requests==2.31.0
requests==2.32.3
sigmatools==0.19.1 ; python_version > '3.4'
six==1.12.0
SQLAlchemy==1.4.48
Werkzeug==2.3.4
Werkzeug==3.0.3
WTForms==3.0.1
xlrd==1.2.0
tabulate==0.9.0
Expand All @@ -35,5 +35,5 @@ networkx==2.5
prometheus-client==0.16.0
prometheus-flask-exporter==0.22.4
decorator==5.0.5
geoip2==4.2.0
geoip2==4.8.0
jsonschema==4.17.3
4 changes: 2 additions & 2 deletions timesketch/lib/google_auth_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import mock
import jwt

from cryptography.hazmat.backends.openssl.rsa import _RSAPublicKey
from cryptography.hazmat.primitives.asymmetric import rsa

from timesketch.lib.testlib import BaseTest
from timesketch.lib.google_auth import decode_jwt
Expand Down Expand Up @@ -399,7 +399,7 @@ def test_fetching_oidc_keys(self):
issuer=OIDC_VALID_ISSUER,
)
public_key = get_public_key_for_jwt(test_jwt, OIDC_PUBLIC_KEY_URL)
self.assertIsInstance(public_key, _RSAPublicKey)
self.assertIsInstance(public_key, rsa.RSAPublicKey)

def test_valid_oidc_jwt(self):
"""Test to validate a valid OpenID Connect JWT."""
Expand Down
Loading