server-v0.0.8

anomalyco/opentuiserver-v0.0.8Aug 17, 2026by Dhravya

AI Summary

Emergency patch addressing a critical migration bug where upgrading from 0.0.7 RC silently wiped search vectors, introducing automatic repair and fixing migration tests.

Key Highlights

  • Automatic repair on boot detects and re-embeds missing vectors for damaged stores.
  • Fixed migration steps that incorrectly pruned pgvector embedding columns.
  • Updated test matrix to seed real vectors into legacy fixtures to prevent regression.

New Features

  • Automatic background vector re-embedding for stores with missing vectors.
  • Healing mechanism for stores damaged by the 0.0.7 upgrade.

Full Release Notes

Emergency patch for stores upgraded from a 0.0.7 release candidate.

- **Upgrading an rc store to 0.0.7 silently wiped search vectors** (#1524): the migration adoption step pruned the pgvector embedding columns, so pre-existing documents stayed listed but returned no search results while new documents worked. The adoption heal no longer touches columns.
- **Automatic repair**: on boot, 0.0.8 detects rows whose vectors are missing while their text survives and re-embeds them in the background — stores already damaged by the 0.0.7 upgrade heal themselves on the first start, no manual steps.
- The migration test matrix now seeds real vectors into its legacy-store fixtures and asserts they survive upgrades.

If you upgraded from 0.0.7-rc.x to 0.0.7 and lost search results: install 0.0.8 and start the server — you should see `[vector-backfill] Restored search vectors …` once it finishes.