Skip to content

Commit 79789bb

Browse files
committed
Merge branch 'feature/mem-search-enhancements' for v7.3.0 release
2 parents 2e919df + e5aa60b commit 79789bb

File tree

7 files changed

+30
-29
lines changed

7 files changed

+30
-29
lines changed

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"plugins": [
1111
{
1212
"name": "claude-mem",
13-
"version": "7.2.4",
13+
"version": "7.3.0",
1414
"source": "./plugin",
1515
"description": "Persistent memory system for Claude Code - context compression across sessions"
1616
}

CHANGELOG.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7+
## [7.3.0] - 2025-12-15
8+
9+
## Features
10+
11+
- **Table-based search output**: Unified timeline formatting with cleaner, more organized presentation of search results grouped by date and file
12+
- **Simplified API**: Removed unused format parameter from MCP search tools for cleaner interface
13+
- **Shared formatting utilities**: Extracted common timeline formatting logic into reusable module
14+
15+
## Changes
16+
17+
- **Default model upgrade**: Changed default model from Haiku to Sonnet for better observation quality
18+
- **Removed fake URIs**: Replaced claude-mem:// pseudo-protocol with actual HTTP API endpoints for citations
19+
20+
## Bug Fixes
21+
22+
- Fixed undefined debug function calls in MCP server
23+
- Fixed skillPath variable scoping bug in instructions endpoint
24+
- Extracted magic numbers to named constants for better code maintainability
25+
726
## [7.2.4] - 2025-12-15
827

928
## What's Changed
@@ -35,25 +54,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
3554
- Update docs with correct MCP tool list and new download path
3655
- Single source of truth for Claude Desktop skill
3756

38-
## [7.3.0] - 2025-12-15
39-
40-
## Features
41-
42-
- **Table-based search output**: Unified timeline formatting with cleaner, more organized presentation of search results grouped by date and file
43-
- **Simplified API**: Removed unused format parameter from MCP search tools for cleaner interface
44-
- **Shared formatting utilities**: Extracted common timeline formatting logic into reusable module
45-
46-
## Changes
47-
48-
- **Default model upgrade**: Changed default model from Haiku to Sonnet for better observation quality
49-
- **Removed fake URIs**: Replaced claude-mem:// pseudo-protocol with actual HTTP API endpoints for citations
50-
51-
## Bug Fixes
52-
53-
- Fixed undefined debug function calls in MCP server
54-
- Fixed skillPath variable scoping bug in instructions endpoint
55-
- Extracted magic numbers to named constants for better code maintainability
56-
5757
## [7.2.1] - 2025-12-14
5858

5959
## Translation Script Enhancements
@@ -2442,12 +2442,12 @@ None (patch version)
24422442

24432443
## [4.3.0] - 2025-10-25
24442444

2445-
## What's Changed
2446-
* feat: Enhanced context hook with session observations and cross-platform improvements by @thedotmack in https://github.com/thedotmack/claude-mem/pull/25
2447-
2448-
## New Contributors
2449-
* @thedotmack made their first contribution in https://github.com/thedotmack/claude-mem/pull/25
2450-
2445+
## What's Changed
2446+
* feat: Enhanced context hook with session observations and cross-platform improvements by @thedotmack in https://github.com/thedotmack/claude-mem/pull/25
2447+
2448+
## New Contributors
2449+
* @thedotmack made their first contribution in https://github.com/thedotmack/claude-mem/pull/25
2450+
24512451
**Full Changelog**: https://github.com/thedotmack/claude-mem/compare/v4.2.11...v4.3.0
24522452

24532453
## [4.2.10] - 2025-10-25

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ Restart Claude Code. Context from previous sessions will automatically appear in
8686
- ⚙️ **Context Configuration** - Fine-grained control over what context gets injected
8787
- 🤖 **Automatic Operation** - No manual intervention required
8888
- 🔗 **Citations** - Reference past observations with IDs (access via http://localhost:37777/api/observation/{id} or view all in the web viewer at http://localhost:37777)
89+
- 🧪 **Beta Channel** - Try experimental features like Endless Mode via version switching
8990

9091
---
9192

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "claude-mem",
3-
"version": "7.2.4",
3+
"version": "7.3.0",
44
"description": "Memory compression system for Claude Code - persist context across sessions",
55
"keywords": [
66
"claude",

plugin/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "claude-mem",
3-
"version": "7.2.4",
3+
"version": "7.3.0",
44
"description": "Persistent memory system for Claude Code - seamlessly preserve context across sessions",
55
"author": {
66
"name": "Alex Newman"

plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "claude-mem-plugin",
3-
"version": "7.2.4",
3+
"version": "7.3.0",
44
"private": true,
55
"description": "Runtime dependencies for claude-mem bundled hooks",
66
"type": "module",

plugin/skills/mem-search.zip

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)