Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,35 @@ All notable changes to VecGrep are documented here.

---

## [1.6.0] — 2026-03-02

### Added

- **Merkle tree change detection** — incremental re-indexing now uses a Merkle
tree to detect file changes, reducing unnecessary re-embedding on large
codebases with many unchanged files.
- **Auto-reindex on startup** — when `watch=True`, VecGrep detects any files
that changed while the watcher was offline and re-indexes them automatically
on the next startup.
- **`stop_watching` MCP tool** — new tool to stop the background file watcher
for a project without restarting the server.
- **Watch state persistence** — watched project paths are persisted to disk so
the watcher can be restored after a server restart.

### Fixed

- Corrected `create_index` positional argument misuse in `VectorStore` that
could cause index builds to fail silently.
- Fixed a race condition in the Merkle tree watcher that could cause duplicate
re-index events on rapid file saves.

### Tests

- Added full test coverage for Merkle tree edge cases, watch persistence,
auto-reindex on startup, and `stop_watching` tool.

---

## [1.5.0] — 2026-02-28

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "vecgrep"
version = "1.5.0"
version = "1.6.0"
description = "Cursor-style vector search MCP plugin for Claude Code"
readme = "README.md"
license = { text = "MIT" }
Expand Down