Skip to content

Commit a2c5ce4

Browse files
authored
chore(ruvector): bump to 0.2.32 (ADR-256 release prep) (#578)
* chore(ruvector): bump to 0.2.32 (harness router + default-deny MCP policy) Release prep for the ADR-256 work merged in #575: - `ruvector harness status [--json]` unified routing surface - default-deny MCP tool policy (RUVECTOR_MCP_ALLOW/DENY/PROFILE) - stable memory namespace (RUVECTOR_MEMORY_NAMESPACE) - startup-budget CI guard Additive / non-breaking → patch bump. Tests green (73/0, 8/0, 2/0). Does NOT publish — `npm publish` left to a maintainer with npm auth. Co-Authored-By: claude-flow <ruv@ruv.net> * fix(ruvector): cross-platform build script (node fs.cpSync) The build copied ONNX assets with `mkdir -p`/`cp -r`, which fail on Windows cmd.exe and broke `npm publish` (prepack/prepublishOnly) off-Linux. Replace with node fs.cpSync(recursive) — works everywhere. Verified: build + verify-dist green on Windows (14 dist paths present). Co-Authored-By: claude-flow <ruv@ruv.net> --------- Co-authored-by: ruv <ruvnet@users.noreply.github.com>
1 parent d5347d5 commit a2c5ce4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

npm/packages/ruvector/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "ruvector",
3-
"version": "0.2.31",
3+
"version": "0.2.32",
44
"description": "Self-learning vector database for Node.js \u2014 hybrid search, Graph RAG, FlashAttention-3, HNSW, 50+ attention mechanisms",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"bin": {
88
"ruvector": "./bin/cli.js"
99
},
1010
"scripts": {
11-
"build": "tsc && mkdir -p dist/core/onnx && cp -r src/core/onnx/. dist/core/onnx/",
11+
"build": "tsc && node -e \"require('fs').cpSync('src/core/onnx','dist/core/onnx',{recursive:true})\"",
1212
"verify-dist": "node scripts/verify-dist.js",
1313
"prepack": "npm run build && npm run verify-dist",
1414
"prepublishOnly": "npm run build && npm run verify-dist",

0 commit comments

Comments
 (0)