Skip to content

v6.2.14

Choose a tag to compare

@github-actions github-actions released this 13 Feb 09:06

Fixed

  • PostgreSQL migrations silently rolled back — The advisory lock used to serialize concurrent migrations was acquired before Alembic's context.configure(), triggering SQLAlchemy's autobegin. Alembic detected this as an external transaction and skipped its own transaction management, so DDL changes (new columns, tables) were never committed. Switched to pg_advisory_xact_lock() inside the transaction block so Alembic properly commits. Fixes #70.

📋 Full changelog: docs/CHANGELOG.md