Files
aitbc/apps/api-gateway/pyproject.toml
aitbc bfcc8e3663
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Successful in 7s
Deploy to Testnet / deploy-testnet (push) Has started running
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Integration Tests / test-service-integration (push) Successful in 1m39s
Security Scanning / security-scan (push) Has been cancelled
security: update vulnerable dependencies in Python services
- Update FastAPI to >=0.115.6 across services (fixes starlette vulnerabilities)
- Update httpx to >=0.28.1 across services
- Update pytest to >=9.0.3 (fixes tmpdir handling vulnerability)
- Update pytest-asyncio to >=1.3.0
- Update black to >=26.3.1 (fixes high severity vulnerability)

Affected services:
- api-gateway
- ai-service
- monitoring-service
- openclaw-service
- plugin-service

Addresses GitHub dependabot alerts for:
- starlette (high/medium severity DoS vulnerabilities)
- pytest (medium severity tmpdir handling)
- black (high severity vulnerability)

Note: contracts uuid vulnerability deferred due to npm dependency conflicts
2026-05-02 16:23:28 +02:00

22 lines
504 B
TOML

[tool.poetry]
name = "api-gateway"
version = "0.1.0"
description = "AITBC API Gateway for routing to microservices"
authors = ["AITBC Team <team@aitbc.dev>"]
[tool.poetry.dependencies]
python = "^3.13"
fastapi = ">=0.115.6"
uvicorn = "^0.24.0"
httpx = ">=0.28.1"
aitbc-core = {path = "../../packages/py/aitbc-core", develop = true}
[tool.poetry.group.test.dependencies]
pytest = ">=9.0.3"
pytest-asyncio = ">=1.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"