Skip to content

Commit

Permalink
Bump the pip group across 1 directory with 4 updates (#3097)
Browse files Browse the repository at this point in the history
* ---
updated-dependencies:
- dependency-name: cryptography
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: gunicorn
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: requests
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: werkzeug
  dependency-type: direct:production
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update requirements.txt
* Fix google_auth_test.py

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Janosch <[email protected]>
  • Loading branch information
dependabot[bot] and jkppr authored Aug 15, 2024
1 parent 6a73173 commit e00b161
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
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

0 comments on commit e00b161

Please sign in to comment.