2 Commits

Author SHA1 Message Date
Luca Sacchi Ricciardi 711674fb31 fix: add opentelemetry-exporter-jaeger dependency
CI/CD - Build & Test / Backend Tests (push) Has been cancelled
CI/CD - Build & Test / Frontend Tests (push) Has been cancelled
CI/CD - Build & Test / Security Scans (push) Has been cancelled
CI/CD - Build & Test / Docker Build Test (push) Has been cancelled
CI/CD - Build & Test / Terraform Validate (push) Has been cancelled
Deploy to Production / Build & Test (push) Has been cancelled
Deploy to Production / Security Scan (push) Has been cancelled
Deploy to Production / Build Docker Images (push) Has been cancelled
Deploy to Production / Deploy to Staging (push) Has been cancelled
Deploy to Production / E2E Tests (push) Has been cancelled
Deploy to Production / Deploy to Production (push) Has been cancelled
Add missing opentelemetry-exporter-jaeger package required by tracing module.
This completes the Docker dependency fixes.
2026-04-07 23:16:23 +02:00
Luca Sacchi Ricciardi 1344ac1917 fix: add missing Python dependencies for Docker
Added missing packages required by backend code:
- redis>=5.0.0 (caching layer)
- celery>=5.4.0 (async tasks)
- prometheus-client>=0.20.0 (metrics)
- opentelemetry-* (distributed tracing)
- jaeger-client>=4.8.0 (tracing)
- python-json-logger>=2.0.7 (structured logging)

Also fixed IMMUTABLE function errors in migrations (already committed).

All dependencies now installed in Docker images.
2026-04-07 23:10:01 +02:00
+9
View File
@@ -20,6 +20,15 @@ dependencies = [
"python-jose[cryptography]>=3.3.0", "python-jose[cryptography]>=3.3.0",
"passlib[bcrypt]>=1.7.4", "passlib[bcrypt]>=1.7.4",
"email-validator>=2.0.0", "email-validator>=2.0.0",
"redis>=5.0.0",
"celery>=5.4.0",
"prometheus-client>=0.20.0",
"opentelemetry-api>=1.24.0",
"opentelemetry-sdk>=1.24.0",
"opentelemetry-instrumentation-fastapi>=0.45b0",
"opentelemetry-exporter-otlp>=1.24.0",
"opentelemetry-exporter-jaeger>=1.21.0",
"python-json-logger>=2.0.7",
] ]
[dependency-groups] [dependency-groups]