Critical Bugfix Release
Fixed
- Database Migration: Fixed critical bug where
discovery_tokensmigration logic trustedschema_versionstable without verifying actual column existence (#121) - Migration now always checks if columns exist before queries, preventing "no such column" errors
- Safe for all users - auto-migrates on next Claude Code session without data loss
Technical Details
- Removed early return based on
schema_versionscheck that could skip actual column verification - Migration now uses
PRAGMA table_info()to verify column existence before every query - Ensures idempotent, safe schema migrations for SQLite databases
Impact
- Users experiencing "SqliteError: no such column: discovery_tokens" will be automatically fixed
- No manual intervention or database backup required
- Update to v6.0.6 via marketplace or
git pulland restart Claude Code
Affected Users: All users who upgraded to v6.0.5 and experienced the migration error
🤖 Generated with Claude Code