@wiscale/velesdb-sdk 1.13.8 → 1.14.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.
- package/README.md +13 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,9 +2,20 @@
|
|
|
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.
|
|
5
|
+
**v1.14.0** | Node.js >= 18 | Browser (WASM) | MIT License
|
|
6
6
|
|
|
7
|
-
## What's New in v1.
|
|
7
|
+
## What's New in v1.14.0
|
|
8
|
+
|
|
9
|
+
- **MSRV Rust 1.89** -- workspace and CI now align with the actual SIMD path (`avx512vpopcntdq` target feature). No source change for the SDK; bumps in lock-step with the workspace.
|
|
10
|
+
- **Dockerfile auto-sync** -- release tooling now keeps `LABEL version=` in lock-step across all Dockerfiles. Indirectly improves anyone running `docker build` against a checkout.
|
|
11
|
+
|
|
12
|
+
### Previous (v1.13.7)
|
|
13
|
+
|
|
14
|
+
- **Node.js WASM init fix** -- `new VelesDB({ backend: 'wasm' }).init()` now reads `velesdb_wasm_bg.wasm` bytes from disk via `fs.readFile` so Node 20+ no longer crashes on the broken `fetch('file://')` path. Browsers are unchanged.
|
|
15
|
+
- **Lifecycle hardening** -- memoised in-flight init promise + generation token make `close()` race-free.
|
|
16
|
+
- **Dual ESM + CJS bundles** -- TS SDK build emits both formats with `import.meta.url`/`__filename` polyfilled correctly.
|
|
17
|
+
|
|
18
|
+
### Previous (v1.13.0)
|
|
8
19
|
|
|
9
20
|
- **WASM VelesQL executor** -- full browser-side VelesQL execution: SELECT/INSERT/UPDATE/DELETE/DDL + aggregations (COUNT/SUM/AVG/MIN/MAX) + GROUP BY/HAVING/UNION/INTERSECT/EXCEPT/JOIN/FUSION/MATCH 1-2 hops + NOT De Morgan distribution
|
|
10
21
|
- **TS SDK coverage raised to 94%** -- 423 tests, per-file thresholds codified in `vitest.config.ts`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wiscale/velesdb-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.1",
|
|
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",
|