Skip to content

Commit 76aca17

Browse files
Claudeclaude
authored andcommitted
fix: update smoke test tool counts for index_docs/search_docs (v1.5.1)
The 1.5.0 release added index_docs and search_docs but didn't bump EXPECTED_TOOL_COUNTS, causing CI smoke tests to fail and blocking npm publish. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7786fa9 commit 76aca17

3 files changed

Lines changed: 12 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.5.1] - 2026-05-13
11+
12+
### Fixed
13+
- **CI smoke test tool count**: Updated `EXPECTED_TOOL_COUNTS` to reflect `index_docs` and `search_docs` additions (+2 per tier). The 1.5.0 release failed to publish because the smoke test expected 23 free-tier tools but found 25.
14+
1015
## [1.5.0] - 2026-05-11
1116

1217
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gitmem-mcp",
3-
"version": "1.5.0",
3+
"version": "1.5.1",
44
"mcpName": "io.github.gitmem-dev/gitmem",
55
"description": "Persistent learning memory for AI coding agents. Memory that compounds.",
66
"type": "module",

tests/e2e/mcp-client.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -270,15 +270,15 @@ export const DEV_TOOLS = [
270270
* TRANSCRIPT_TOOL_NAMES (dev): 4
271271
* graph_traverse (pro+): 3
272272
*
273-
* free = 73 - 6 - 3 - 2 - 4 - 3 = 55
274-
* pro = 73 - 2 - 4 = 67
275-
* dev = 31
273+
* free = 75 - 6 - 3 - 2 - 4 - 3 = 57
274+
* pro = 75 - 2 - 4 = 69
275+
* dev = 34
276276
*
277277
* If these numbers change, a tool was added/removed from definitions.ts.
278278
* Note: Aliases are hidden by default. Set GITMEM_FULL_ALIASES=1 to show all.
279279
*/
280280
export const EXPECTED_TOOL_COUNTS = {
281-
free: 23,
282-
pro: 28,
283-
dev: 32,
281+
free: 25,
282+
pro: 30,
283+
dev: 34,
284284
} as const;

0 commit comments

Comments
 (0)