feat: update default version#1021
Conversation
There was a problem hiding this comment.
Bug: Docker Compose Commands Ignore Version Variable
The Makefile's docker-compose commands (compose-up, compose-infra, compose-down, compose-logs) hardcode VERSION=v0.5.0-alpha.30 instead of using the configurable $(VERSION) variable (which defaults to nightly). This inconsistency means make build uses nightly while make compose-* operations use v0.5.0-alpha.30, preventing users from customizing the version and potentially leading to mismatched image versions and deployment issues.
Makefile#L1-L134
Lines 1 to 134 in bb2cbb9
Bug: Alembic Migration Chain Broken by Revision ID Change
The Alembic migration chain is broken because an existing migration file's revision ID was changed from '850b2c5dc08f' to '0b274fcc91e2', and its down_revision was also altered. This prevents existing installations that have applied the original migration from correctly upgrading, as Alembic will not recognize the migration state and may attempt to recreate existing tables.
aperag/migration/versions/20250703133208-0b274fcc91e2.py#L14-L16
ApeRAG/aperag/migration/versions/20250703133208-0b274fcc91e2.py
Lines 14 to 16 in bb2cbb9
aperag/migration/versions/20250703133304-b598e645b2ba.py#L16-L18
ApeRAG/aperag/migration/versions/20250703133304-b598e645b2ba.py
Lines 16 to 18 in bb2cbb9
Was this report helpful? Give feedback by reacting with 👍 or 👎
No description provided.