@wiscale/velesdb-sdk 1.14.2 → 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 +20 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,9 +2,17 @@
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.0** | Node.js >= 18 | Browser (WASM) | MIT License
5
+ **v1.14.4** | Node.js >= 18 | Browser (WASM) | MIT License
6
6
 
7
- ## What's New in v1.14.0
7
+ ## What's New in v1.14.2
8
+
9
+ - **No SDK source change.** v1.14.2 is a workspace patch focused on the Python Haystack `DocumentStore` (`DuplicatePolicy.SKIP` contract fix) and seven version-drift gaps in the release tooling. The TS SDK ships in lock-step with the workspace and is functionally identical to v1.14.1; the version bump only ensures `npm install @wiscale/velesdb-sdk` resolves to the same release line as `pip install velesdb` and `cargo add velesdb-core@1.14.2`.
10
+
11
+ ### Previous (v1.14.1)
12
+
13
+ - **Pipeline fix only.** v1.14.0 added Haystack 2.x DocumentStore source code on the Python side but the release workflow forgot to publish `haystack-velesdb` to PyPI. v1.14.1 closes that gap. No TS SDK source change.
14
+
15
+ ### Previous (v1.14.0)
8
16
 
9
17
  - **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
18
  - **Dockerfile auto-sync** -- release tooling now keeps `LABEL version=` in lock-step across all Dockerfiles. Indirectly improves anyone running `docker build` against a checkout.
@@ -74,6 +82,16 @@ Official TypeScript SDK for [VelesDB](https://github.com/cyberlife-coder/VelesDB
74
82
  npm install @wiscale/velesdb-sdk
75
83
  ```
76
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
+
77
95
  ## Quick Start
78
96
 
79
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.2",
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",