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
1,970 changes: 1,037 additions & 933 deletions src/backend/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dependencies = [
"celery[redis]==5.5.2",
"cryptography==45.0.5",
"dj-database-url==2.3.0",
"django==5.1.13",
"django==5.1.15",
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical

Upgrade to Django 5.1.15 addresses critical SQL injection and DoS vulnerabilities.

The patch version bump from 5.1.13 to 5.1.15 fixes a high-severity SQL injection vulnerability in FilteredRelation on PostgreSQL and a moderate-severity XML deserialization DoS vulnerability. Additionally, intermediate version 5.1.14 fixes Windows-specific DoS issues in redirect handling. The upgrade is security-critical.

🤖 Prompt for AI Agents
In src/backend/pyproject.toml at line 32, the Django dependency should be
upgraded to 5.1.15; update the version string from "django==5.1.13" (or current
minor pin) to "django==5.1.15", then regenerate/refresh your lockfile (poetry
lock / pip-tools compile / update dependency manager) and run the test suite to
ensure compatibility; commit the updated pyproject.toml and lockfile together.

"django-celery-beat==2.8.0",
"django-celery-results==2.6.0",
"django-configurations==2.5.1",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-slim AS frontend-deps
FROM node:22-alpine AS frontend-deps

ENV npm_config_cache=/tmp/npm-cache
RUN npm install -g [email protected] && npm cache clean -f
Expand Down
Loading
Loading