docs: update changelog for database foundation

This commit is contained in:
agatha 2026-03-14 14:03:59 -04:00
parent 78735594cf
commit 1a6544a7cb
2 changed files with 8 additions and 2 deletions

View File

@ -9,4 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ### Added
- Project scaffold with uv, pre-commit, ruff, and conventional commits - Project scaffold with uv, pre-commit, ruff, and conventional commits
- Database infrastructure: async SQLAlchemy 2.0 with asyncpg driver
- Proxy domain models: ProxySource, Proxy, ProxyCheck, ProxyTag
- Accounts domain models: User, ApiKey, CreditLedger, ProxyLease
- Alembic async migration setup with initial schema
- Pydantic-settings configuration module
- Integration test infrastructure with per-test rollback

View File

@ -47,7 +47,7 @@ asyncio_mode = "auto"
[tool.ruff] [tool.ruff]
src = ["src"] src = ["src"]
target-version = "py312" target-version = "py312"
extend-exclude = ["alembic"] extend-exclude = ["alembic", "tests"]
[tool.ruff.lint] [tool.ruff.lint]
select = ["E", "F", "I", "N", "UP", "B", "A", "SIM"] select = ["E", "F", "I", "N", "UP", "B", "A", "SIM"]