| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| EverOS 1.1.3 source code.tar.gz | 2026-07-10 | 1.6 MB | |
| EverOS 1.1.3 source code.zip | 2026-07-10 | 2.1 MB | |
| README.md | 2026-07-10 | 1.4 kB | |
| Totals: 3 Items | 3.7 MB | 0 | |
EverOS 1.1.3
Patch release — fixes unbounded index growth from a LanceDB FTS regression.
Fixed
- LanceDB FTS
with_positioncrashesoptimize(), bloating the index until the disk fills. On lancedb ≥ 0.32, FTS indexes built withwith_position=Truecrash lance'soptimize()/ compaction when it merges an unindexed tail (Max offset exceeds length of values— an upstreamlance-encodingv4 → v6 regression, reported atlance-format/lance#7653). Because the crash abortedoptimize()including version cleanup, the index directory grew without bound.
The fix:
- FTS now defaults to
with_position=False— lossless for EverOS, since recall uses OR-mode BM25 and never runs phrase queries. - A marker-guarded startup migration rebuilds pre-fix indexes and reclaims the orphaned fragments automatically.
- Consecutive
optimize()failures now escalatewarning → errorinstead of being swallowed silently.
Upgrade
:::bash
pip install --upgrade everos # or: uv sync
Existing installations are migrated automatically on next startup — the pre-fix index is rebuilt once and the leaked fragments are reclaimed. No manual steps required.
Full changelog: https://github.com/EverMind-AI/EverOS/compare/v1.1.2...v1.1.3