Skip to content

Commit be91e3c

Browse files
Claudeclaude
authored andcommitted
chore: bump version to v1.2.0
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 9511071 commit be91e3c

4 files changed

Lines changed: 14 additions & 3 deletions

File tree

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.2.0] - 2026-02-20
11+
12+
### Added
13+
- **Telemetry CLI**: `npx gitmem-mcp telemetry` command for viewing scar effectiveness metrics and recall statistics.
14+
- **Confirm-scars prefix matching**: `confirm_scars` now accepts 8-character ID prefixes instead of requiring full UUIDs — faster agent workflows.
15+
- **Session-close timing**: `session_close` now tracks and reports ceremony duration for performance visibility.
16+
17+
### Fixed
18+
- **Test assertion alignment**: Updated smoke and E2E test assertions to match current CLI output format (branded `((●))` display, lowercase identifiers).
19+
- **No-console-log allowlist**: CLI commands correctly excluded from console.log lint rule.
20+
1021
## [1.1.4] - 2026-02-20
1122

1223
### Changed

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.1.4",
3+
"version": "1.2.0",
44
"description": "Institutional memory for AI coding agents. Memory that compounds.",
55
"type": "module",
66
"main": "dist/index.js",

tests/e2e/cli-fresh-install.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ describe("Fresh Install: Output Sanitization", () => {
620620

621621
expect(content.toLowerCase()).not.toContain("orchestra");
622622
// Template includes reflection questions in session end section
623-
expect(content.toLowerCase()).toContain("answer these reflection questions");
623+
expect(content.toLowerCase()).toContain("answer these 9 questions");
624624
});
625625

626626
it("starter-scars.json has no orchestra references", () => {

tests/smoke/smoke-free.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,6 @@ describe("Smoke: Free Tier", () => {
134134

135135
expect(isToolError(result)).toBe(false);
136136
const closeText = getToolResultText(result);
137-
expect(closeText).toContain("CLOSE");
137+
expect(closeText.toLowerCase()).toContain("close");
138138
});
139139
});

0 commit comments

Comments
 (0)