Skip to content
Open
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
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ dist/
downloads/
eggs/
.eggs/
lib/
lib64/
/lib/
/lib64/
parts/
sdist/
var/
Expand Down
10 changes: 5 additions & 5 deletions chatbot-backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ dependencies = [
"openai==2.6.0",
"google-genai==1.46.0",
"firecrawl-py==4.5.0",
"python-dotenv==1.0.1",
"python-dotenv==1.2.2",
"sqlalchemy==2.0.35",
"alembic==1.13.3",
"redis[hiredis]==5.2.0",
"python-multipart==0.0.12",
"python-multipart==0.0.27",
"aiofiles==24.1.0",
"httpx==0.28.1",
"structlog==25.4.0",
"python-jose[cryptography]==3.3.0",
"cryptography==46.0.3",
"python-jose[cryptography]==3.4.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The python-jose package is officially unmaintained and has been deprecated for several years. While version 3.4.0 was released as a community-driven security patch to address algorithm confusion vulnerabilities, it is strongly recommended to migrate to a modern, actively maintained library such as Authlib, PyJWT, or the Python port of jose (e.g., python-jose's successor or alternatives) for long-term security and compatibility.

"cryptography==46.0.7",
"passlib[bcrypt]==1.7.4",
"pydantic[email]==2.12.3",
"slowapi==0.1.9",
Expand All @@ -31,7 +31,7 @@ dependencies = [
"opentelemetry-instrumentation-requests==0.59b0",
"opentelemetry-instrumentation-sqlalchemy==0.59b0",
"opentelemetry-exporter-otlp==1.38.0",
"gunicorn==21.2.0",
"gunicorn==23.0.0",
"pyodbc==5.0.1",
]
dynamic = ["readme"]
Expand Down
10 changes: 5 additions & 5 deletions chatbot-backend/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ uvicorn[standard]==0.34.0
openai==2.6.0
google-genai==1.46.0
firecrawl-py==4.5.0
python-dotenv==1.0.1
python-dotenv==1.2.2
sqlalchemy==2.0.35
alembic==1.13.3
redis[hiredis]==5.2.0
python-multipart==0.0.12
python-multipart==0.0.27
aiofiles==24.1.0
httpx==0.28.1
structlog==25.4.0
python-jose[cryptography]==3.3.0
cryptography==46.0.3
python-jose[cryptography]==3.4.0
cryptography==46.0.7
passlib[bcrypt]==1.7.4
pydantic[email]==2.12.3
slowapi==0.1.9
Expand All @@ -21,5 +21,5 @@ opentelemetry-instrumentation-httpx==0.59b0
opentelemetry-instrumentation-requests==0.59b0
opentelemetry-instrumentation-sqlalchemy==0.59b0
opentelemetry-exporter-otlp==1.38.0
gunicorn==21.2.0
gunicorn==23.0.0
pyodbc==5.0.1
Loading
Loading