mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-24 20:14:58 +08:00
* fix: update pydantic dependency to version 2.12.5 to silence fastapi pagination warning * fix: bump sqlmodel to 0.0.32 for pydantic 2.12 compatibility SQLModel 0.0.32 includes bug fix for Annotated field handling with Pydantic 2.12+ (PR #1607 by @vimota). Without this fix, runtime type- mapping errors occur when using Annotated type hints with SQLModel models. * fix: add model_config to TransactionReadResponse for pydantic 2.12 compat With pydantic 2.12+, model_validate with from_attributes=True requires populate_by_name=True when using field aliases. Without this config, pydantic looks for the alias name (transaction_id) on the source object instead of the actual field name (id). * fix: update pydantic version to 2.12.5 in starter project JSON files * [autofix.ci] apply automated fixes * [autofix.ci] apply automated fixes * [autofix.ci] apply automated fixes (attempt 2/3) * fix: update sqlmodel dependency version to 0.0.37 * fix: enhance migration validation tests and add schema verification * [autofix.ci] apply automated fixes * [autofix.ci] apply automated fixes (attempt 2/3) * [autofix.ci] apply automated fixes (attempt 3/3) * fix: update expected tables and refine SQLite diff filtering in migration tests --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>