claude-memory-hub 0.9.1 → 0.9.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 +16 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,21 @@
|
|
|
3
3
|
All notable changes to `claude-memory-hub` are documented here.
|
|
4
4
|
Format follows [Keep a Changelog](https://keepachangelog.com/).
|
|
5
5
|
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## [0.9.2] - 2026-04-02
|
|
9
|
+
|
|
10
|
+
Cross-platform hook reliability — Windows/WSL no longer fails with "bun: command not found".
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- **dist/hooks missing from npm package** — `.npmignore` pattern `hooks/` was matching `dist/hooks/` too, causing "Module not found" on Windows. Fixed to `/hooks/` (root-only match)
|
|
15
|
+
|
|
16
|
+
### Upgrade Note
|
|
17
|
+
|
|
18
|
+
After updating, run `bunx claude-memory-hub@latest install` to re-register hooks with the resolved bun path.
|
|
19
|
+
|
|
20
|
+
|
|
6
21
|
---
|
|
7
22
|
|
|
8
23
|
## [0.9.1] - 2026-04-02
|
|
@@ -13,6 +28,7 @@ Cross-platform hook reliability — Windows/WSL no longer fails with "bun: comma
|
|
|
13
28
|
|
|
14
29
|
- **Full bun path resolution** — `install` now resolves absolute path to `bun` binary via `which` (macOS/Linux) or `where` (Windows), with fallback to `~/.bun/bin/bun`. All hooks and MCP server commands are registered with the full path instead of relying on PATH inheritance
|
|
15
30
|
- **Windows/WSL compatibility** — fixes "bun: command not found" error caused by non-interactive shells (used by Claude Code to spawn hooks) not inheriting user's PATH where `bun` is installed
|
|
31
|
+
- **dist/hooks missing from npm package** — `.npmignore` pattern `hooks/` was matching `dist/hooks/` too, causing "Module not found" on Windows. Fixed to `/hooks/` (root-only match)
|
|
16
32
|
|
|
17
33
|
### Upgrade Note
|
|
18
34
|
|
package/package.json
CHANGED