@wiscale/velesdb-sdk 1.14.3 → 1.14.4

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/README.md +11 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Official TypeScript SDK for [VelesDB](https://github.com/cyberlife-coder/VelesDB) -- the local-first vector database for AI and RAG. Sub-millisecond semantic search in Browser and Node.js.
4
4
 
5
- **v1.14.3** | Node.js >= 18 | Browser (WASM) | MIT License
5
+ **v1.14.4** | Node.js >= 18 | Browser (WASM) | MIT License
6
6
 
7
7
  ## What's New in v1.14.2
8
8
 
@@ -82,6 +82,16 @@ Official TypeScript SDK for [VelesDB](https://github.com/cyberlife-coder/VelesDB
82
82
  npm install @wiscale/velesdb-sdk
83
83
  ```
84
84
 
85
+ ### Supported Node.js versions
86
+
87
+ | Node.js | TS SDK | Browser (WASM) | Notes |
88
+ |---------|--------|----------------|-------|
89
+ | 18 LTS | ✅ | ✅ | minimum supported |
90
+ | 20 LTS | ✅ (CI) | ✅ | tested matrix on every PR |
91
+ | 22 LTS | ✅ | ✅ | latest LTS |
92
+
93
+ The Node.js WASM `init()` path was fixed in v1.13.7 to read `velesdb_wasm_bg.wasm` bytes from disk via `fs.readFile` instead of the broken `fetch('file://')` URL — Node ≥ 18 now works out-of-the-box. Browsers were never affected.
94
+
85
95
  ## Quick Start
86
96
 
87
97
  ### WASM Backend (Browser / Node.js)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wiscale/velesdb-sdk",
3
- "version": "1.14.3",
3
+ "version": "1.14.4",
4
4
  "description": "VelesDB TypeScript SDK: The Local Vector Database for AI & RAG. Microsecond semantic search in Browser & Node.js.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",