🗑️ Remove Alembic migration system completely
- Remove alembic/ directory and alembic.ini file - Remove Alembic references from pyproject.toml, mypy.ini - Remove migration logic from main.py - Update CHANGELOG.md with removal details - Clean up all configuration files from Alembic settings
This commit is contained in:
@@ -2,6 +2,13 @@
|
||||
|
||||
## [0.9.13] - 2025-08-27
|
||||
|
||||
### 🗑️ Удалено
|
||||
- **Удален Alembic**: Полностью удалена система миграций Alembic и вся связанная логика
|
||||
- Удалена папка `alembic/` и файл `alembic.ini`
|
||||
- Убраны упоминания Alembic из конфигурации (pyproject.toml, mypy.ini)
|
||||
- Удалена логика запуска миграций из main.py
|
||||
- Очищены конфигурационные файлы от настроек Alembic
|
||||
|
||||
### 🚨 Исправлено
|
||||
- **Удалено поле username из модели Author**: Поле `username` больше не является частью модели `Author`
|
||||
- Убрано свойство `@property def username` из `orm/author.py`
|
||||
|
||||
@@ -370,14 +370,12 @@ strict_equality = true
|
||||
exclude = [
|
||||
"venv/",
|
||||
".venv/",
|
||||
"tests/",
|
||||
"*/migrations/*",
|
||||
"tests/"
|
||||
]
|
||||
|
||||
# Настройки для конкретных модулей
|
||||
[[tool.mypy.overrides]]
|
||||
module = [
|
||||
|
||||
"tests.*",
|
||||
]
|
||||
ignore_missing_imports = true
|
||||
|
||||
Reference in New Issue
Block a user