Skip to content

Commit 821356c

Browse files
committed
chore(release): v2.5.0
1 parent 6bea0b0 commit 821356c

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

RELEASE_NOTE.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 2.5.0 - SQLite Deep Index & Middleware Coverage
2+
3+
### Highlights
4+
- Deep index now persists to SQLite via the new `SQLiteIndexStore`, replacing the legacy JSON cache while keeping build performance stable.
5+
- JavaScript strategy records middleware callbacks in the call graph, giving accurate `called_by` links for Express-style handlers.
6+
- TypeScript strategy captures limiter callbacks, closing gaps for `.ts` middleware exports and aligning coverage with JavaScript.
7+
- Added dedicated regression tests for the SQLite store/manager plus JavaScript and TypeScript call graph fixtures.
8+
9+
### Notes
10+
- Existing JSON deep index files are ignored; rebuilds transparently populate the SQLite database under `%TEMP%/code_indexer/<project_hash>/`.
11+
112
## 2.4.1 - Search Filtering Alignment
213

314
### Highlights

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "code-index-mcp"
7-
version = "2.4.1"
7+
version = "2.5.0"
88
description = "Code indexing and analysis tools for LLMs using MCP"
99
readme = "README.md"
1010
requires-python = ">=3.10"

src/code_index_mcp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
A Model Context Protocol server for code indexing, searching, and analysis.
44
"""
55

6-
__version__ = "2.4.1"
6+
__version__ = "2.5.0"
77

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)