chore(release): bump version to 0.25.0#33
Merged
Conversation
Tidy the docs for the release: prune shipped roadmap items and split the project-level config item into v1/v2, slim the README feature prose back into docs, move the rerank note out of the CLI flags section and the hybrid score note next to the MCP response schema, replace release-bound wording in configuration.md with a timeless cache-migration note, and fix a stale symbol reference in development.md. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this PR does
vexor/__init__.py, plugin manifest,server.json) — merging to main triggers the automated tag + PyPI publish + GitHub release..vexorignore, project-local cache, config/provider split); the P0 hybrid entry is now the pending default-flip gate with current benchmark status; project-level config split into a whitelisted v1 (existing Config fields only, credentials/endpoints rejected, directory-awareload_config) and a v2 (per-project scan defaults) that waits for v1 adoption.hybridneutrally, CLI Reference pointer mentions ignore files and--local.reranker/score note was stranded in the client-setup section — moved next to thevexor_searchresponse schema._label_for_path, which no longer exists; points at thevexor/modes.pystrategies instead.Tests
python -m pytest tests -q(.venv, offline): 549 passed. Docs + version metadata only; no runtime changes.Release notes for v0.25.0 (to attach to the GitHub release after the automated publish)
Highlights
vexor config --rerank hybridfuses full-corpus BM25 with dense ranking via weighted reciprocal rank fusion (0.7 dense / 0.3 BM25, k=60). BM25 term statistics are persisted in the index, so exact identifiers and lexical-only matches outside the dense candidate window become retrievable. Tokenization keeps whole identifiers (load_index_vectors) alongside sub-tokens. Scores under hybrid are normalized rank-fusion scores in [0, 1], not cosine similarities. A reproducible benchmark ships inscripts/eval_hybrid.py; the default ranking is unchanged (off)..vexorignore— per-project ignore rules with full gitignore semantics (per-directory files, ancestor chain,!negation). Always honored, including with--no-respect-gitignore; applied after.gitignoreso it can re-include gitignored paths.vexor index --local,index(..., local=True)(Python), the newlocalargument on thevexor_indexMCP tool, or simplymkdir .vexor; the project''s index (including its embedding/query caches) then lives in<project>/.vexor/index.db. Vexor writes a self-ignoring.gitignoreinside so the database cannot be committed by accident. Explicitcache_dir/data_diroverrides take precedence; config, FlashRank assets, and local models stay global.vexor/providers/capabilities.py;vexor.configre-exports everything, so imports are unchanged.Upgrade notes
reranker: "hybrid"thescorefield is a rank-fusion score in [0, 1], not a cosine similarity.🤖 Generated with Claude Code