claude-mem 3.6.0 → 3.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +35 -0
- package/dist/claude-mem.min.js +428 -306
- package/hooks/pre-compact.js +4 -1
- package/hooks/shared/path-resolver.js +10 -1
- package/package.json +3 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## [3.6.2] - 2025-09-10
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Visual feedback to changelog command showing current version, next version, and number of overviews being processed
|
|
12
|
+
- Generate changelog for specific versions using `--generate` flag with npm publish time boundaries
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Changelog regeneration automatically removes old entries from JSONL file when using `--generate` or `--historical` flags
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Changelog command now uses npm publish timestamps exclusively for accurate version time ranges
|
|
19
|
+
- Resolved timestamp filtering issues with Chroma database by leveraging semantic search with embedded dates
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [3.6.1] - 2025-09-10
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
- Refactored pre-compact hook to work independently without status line updates
|
|
26
|
+
|
|
27
|
+
### Removed
|
|
28
|
+
- Removed status line integration and ccstatusline configuration support
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
## [3.5.5] - 2025-09-10
|
|
32
|
+
|
|
33
|
+
### Changed
|
|
34
|
+
- Standardized GitHub release naming to lowercase 'claude-mem vX.X.X' format for consistent branding
|
|
35
|
+
|