daftari 1.12.0 → 1.12.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.12.1] - 2026-05-26
11
+
12
+ ### Fixed
13
+
14
+ - **MCPB now runs on Node 24 hosts.** The v1.12.0 `.mcpb` only shipped
15
+ `better-sqlite3` binaries built against Node 22 (ABI v127); on a Node
16
+ 24 host (ABI v137) the loader failed with `NODE_MODULE_VERSION`
17
+ mismatch and the server never booted. `scripts/pack-mcpb.mjs` now
18
+ fetches both ABIs for both platforms (4 binaries total: darwin-arm64
19
+ × {v127, v137} + win32-x64 × {v127, v137}) and stages each under
20
+ `build/Release-${platform}-${arch}-${modules}/`. The loader patch in
21
+ `better-sqlite3`'s `lib/database.js` now includes
22
+ `process.versions.modules` in the path, so the right binary is
23
+ selected at runtime for the host's Node version. Sharp and
24
+ onnxruntime-node are NAPI-based (ABI-stable across Node versions)
25
+ and don't need this treatment.
26
+
10
27
  ## [1.12.0] - 2026-05-26
11
28
 
12
29
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "daftari",
3
- "version": "1.12.0",
3
+ "version": "1.12.1",
4
4
  "description": "An open-source, multi-user knowledge vault exposed to AI agents via an MCP server.",
5
5
  "license": "MIT",
6
6
  "author": "Mihir Wagle / mavaali",