From b1ebc615a9d6a52cc0113484bb5968583022203c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 5 Jul 2026 06:49:02 +0000 Subject: [PATCH 1/2] Release package --- .changeset/page-citation-assets-metadata.md | 6 ------ .changeset/parsed-storage-redesign.md | 11 ----------- CHANGELOG.md | 15 +++++++++++++++ package.json | 2 +- packages/mcp/CHANGELOG.md | 20 ++++++++++++++++++++ packages/mcp/package.json | 2 +- 6 files changed, 37 insertions(+), 19 deletions(-) delete mode 100644 .changeset/page-citation-assets-metadata.md delete mode 100644 .changeset/parsed-storage-redesign.md diff --git a/.changeset/page-citation-assets-metadata.md b/.changeset/page-citation-assets-metadata.md deleted file mode 100644 index d088ce6..0000000 --- a/.changeset/page-citation-assets-metadata.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@ontos-ai/knowhere-sdk": major -"@ontos-ai/knowhere-mcp": major ---- - -Preserve page citation asset descriptors only in chunk metadata, remove the deprecated SDK-side page citation asset generation options, and split local-cache/server-safe result handling into explicit `knowledge.parseToLocalCache(...)`, `knowledge.importJobResult(...)`, and `knowledge.loadJobResult(...)` methods. diff --git a/.changeset/parsed-storage-redesign.md b/.changeset/parsed-storage-redesign.md deleted file mode 100644 index 348b686..0000000 --- a/.changeset/parsed-storage-redesign.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@ontos-ai/knowhere-sdk": minor -"@ontos-ai/knowhere-mcp": minor ---- - -Move parsed document reads to a storage-first SDK model with remote chunk fallback. - -Adds parsed snapshot storage types, `knowledge.withParsedStorage(...)`, -`knowledge.syncParsedDocument(...)`, paged `readChunks(...)` display params, -durable asset URL hardening, bounded remote grep/outline fallback, and explicit -disk parsed storage for MCP cache-directory usage. diff --git a/CHANGELOG.md b/CHANGELOG.md index 8525d06..0b46f6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 3.0.0 + +### Major Changes + +- [#111](https://github.com/Ontos-AI/knowhere-node-sdk/pull/111) [`5577c2d`](https://github.com/Ontos-AI/knowhere-node-sdk/commit/5577c2de974a5425e048e36da0a2ca5885743c75) Thanks [@suguanYang](https://github.com/suguanYang)! - Preserve page citation asset descriptors only in chunk metadata, remove the deprecated SDK-side page citation asset generation options, and split local-cache/server-safe result handling into explicit `knowledge.parseToLocalCache(...)`, `knowledge.importJobResult(...)`, and `knowledge.loadJobResult(...)` methods. + +### Minor Changes + +- [#111](https://github.com/Ontos-AI/knowhere-node-sdk/pull/111) [`2d006ae`](https://github.com/Ontos-AI/knowhere-node-sdk/commit/2d006ae8e21db6e1a27e88c91f1a250da7e1f541) Thanks [@suguanYang](https://github.com/suguanYang)! - Move parsed document reads to a storage-first SDK model with remote chunk fallback. + + Adds parsed snapshot storage types, `knowledge.withParsedStorage(...)`, + `knowledge.syncParsedDocument(...)`, paged `readChunks(...)` display params, + durable asset URL hardening, bounded remote grep/outline fallback, and explicit + disk parsed storage for MCP cache-directory usage. + ## 2.0.0 ### Major Changes diff --git a/package.json b/package.json index 9492eac..1b2902d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ontos-ai/knowhere-sdk", - "version": "2.0.0", + "version": "3.0.0", "description": "Official Node.js SDK for Knowhere document parsing API", "keywords": [ "knowhere", diff --git a/packages/mcp/CHANGELOG.md b/packages/mcp/CHANGELOG.md index d81cb63..24036f0 100644 --- a/packages/mcp/CHANGELOG.md +++ b/packages/mcp/CHANGELOG.md @@ -1,5 +1,25 @@ # @ontos-ai/knowhere-mcp +## 3.0.0 + +### Major Changes + +- [#111](https://github.com/Ontos-AI/knowhere-node-sdk/pull/111) [`5577c2d`](https://github.com/Ontos-AI/knowhere-node-sdk/commit/5577c2de974a5425e048e36da0a2ca5885743c75) Thanks [@suguanYang](https://github.com/suguanYang)! - Preserve page citation asset descriptors only in chunk metadata, remove the deprecated SDK-side page citation asset generation options, and split local-cache/server-safe result handling into explicit `knowledge.parseToLocalCache(...)`, `knowledge.importJobResult(...)`, and `knowledge.loadJobResult(...)` methods. + +### Minor Changes + +- [#111](https://github.com/Ontos-AI/knowhere-node-sdk/pull/111) [`2d006ae`](https://github.com/Ontos-AI/knowhere-node-sdk/commit/2d006ae8e21db6e1a27e88c91f1a250da7e1f541) Thanks [@suguanYang](https://github.com/suguanYang)! - Move parsed document reads to a storage-first SDK model with remote chunk fallback. + + Adds parsed snapshot storage types, `knowledge.withParsedStorage(...)`, + `knowledge.syncParsedDocument(...)`, paged `readChunks(...)` display params, + durable asset URL hardening, bounded remote grep/outline fallback, and explicit + disk parsed storage for MCP cache-directory usage. + +### Patch Changes + +- Updated dependencies [[`5577c2d`](https://github.com/Ontos-AI/knowhere-node-sdk/commit/5577c2de974a5425e048e36da0a2ca5885743c75), [`2d006ae`](https://github.com/Ontos-AI/knowhere-node-sdk/commit/2d006ae8e21db6e1a27e88c91f1a250da7e1f541)]: + - @ontos-ai/knowhere-sdk@3.0.0 + ## 2.1.0 ### Minor Changes diff --git a/packages/mcp/package.json b/packages/mcp/package.json index 5dd88ef..c1d7daf 100644 --- a/packages/mcp/package.json +++ b/packages/mcp/package.json @@ -1,6 +1,6 @@ { "name": "@ontos-ai/knowhere-mcp", - "version": "2.1.0", + "version": "3.0.0", "description": "MCP wrapper for the Knowhere Node.js SDK local knowledge tools", "keywords": [ "knowhere", From 45d9f46d231a6a34337eeb831829932b4c861aa9 Mon Sep 17 00:00:00 2001 From: suguanYang Date: Sun, 5 Jul 2026 15:09:18 +0800 Subject: [PATCH 2/2] Fix release versions to 2.1.1 --- CHANGELOG.md | 6 ++---- package.json | 2 +- packages/mcp/CHANGELOG.md | 10 +++------- packages/mcp/package.json | 2 +- 4 files changed, 7 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b46f6f..59b50fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,11 @@ # Changelog -## 3.0.0 +## 2.1.1 -### Major Changes +### Patch Changes - [#111](https://github.com/Ontos-AI/knowhere-node-sdk/pull/111) [`5577c2d`](https://github.com/Ontos-AI/knowhere-node-sdk/commit/5577c2de974a5425e048e36da0a2ca5885743c75) Thanks [@suguanYang](https://github.com/suguanYang)! - Preserve page citation asset descriptors only in chunk metadata, remove the deprecated SDK-side page citation asset generation options, and split local-cache/server-safe result handling into explicit `knowledge.parseToLocalCache(...)`, `knowledge.importJobResult(...)`, and `knowledge.loadJobResult(...)` methods. -### Minor Changes - - [#111](https://github.com/Ontos-AI/knowhere-node-sdk/pull/111) [`2d006ae`](https://github.com/Ontos-AI/knowhere-node-sdk/commit/2d006ae8e21db6e1a27e88c91f1a250da7e1f541) Thanks [@suguanYang](https://github.com/suguanYang)! - Move parsed document reads to a storage-first SDK model with remote chunk fallback. Adds parsed snapshot storage types, `knowledge.withParsedStorage(...)`, diff --git a/package.json b/package.json index 1b2902d..4c230c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ontos-ai/knowhere-sdk", - "version": "3.0.0", + "version": "2.1.1", "description": "Official Node.js SDK for Knowhere document parsing API", "keywords": [ "knowhere", diff --git a/packages/mcp/CHANGELOG.md b/packages/mcp/CHANGELOG.md index 24036f0..f4fc231 100644 --- a/packages/mcp/CHANGELOG.md +++ b/packages/mcp/CHANGELOG.md @@ -1,13 +1,11 @@ # @ontos-ai/knowhere-mcp -## 3.0.0 +## 2.1.1 -### Major Changes +### Patch Changes - [#111](https://github.com/Ontos-AI/knowhere-node-sdk/pull/111) [`5577c2d`](https://github.com/Ontos-AI/knowhere-node-sdk/commit/5577c2de974a5425e048e36da0a2ca5885743c75) Thanks [@suguanYang](https://github.com/suguanYang)! - Preserve page citation asset descriptors only in chunk metadata, remove the deprecated SDK-side page citation asset generation options, and split local-cache/server-safe result handling into explicit `knowledge.parseToLocalCache(...)`, `knowledge.importJobResult(...)`, and `knowledge.loadJobResult(...)` methods. -### Minor Changes - - [#111](https://github.com/Ontos-AI/knowhere-node-sdk/pull/111) [`2d006ae`](https://github.com/Ontos-AI/knowhere-node-sdk/commit/2d006ae8e21db6e1a27e88c91f1a250da7e1f541) Thanks [@suguanYang](https://github.com/suguanYang)! - Move parsed document reads to a storage-first SDK model with remote chunk fallback. Adds parsed snapshot storage types, `knowledge.withParsedStorage(...)`, @@ -15,10 +13,8 @@ durable asset URL hardening, bounded remote grep/outline fallback, and explicit disk parsed storage for MCP cache-directory usage. -### Patch Changes - - Updated dependencies [[`5577c2d`](https://github.com/Ontos-AI/knowhere-node-sdk/commit/5577c2de974a5425e048e36da0a2ca5885743c75), [`2d006ae`](https://github.com/Ontos-AI/knowhere-node-sdk/commit/2d006ae8e21db6e1a27e88c91f1a250da7e1f541)]: - - @ontos-ai/knowhere-sdk@3.0.0 + - @ontos-ai/knowhere-sdk@2.1.1 ## 2.1.0 diff --git a/packages/mcp/package.json b/packages/mcp/package.json index c1d7daf..77e53fc 100644 --- a/packages/mcp/package.json +++ b/packages/mcp/package.json @@ -1,6 +1,6 @@ { "name": "@ontos-ai/knowhere-mcp", - "version": "3.0.0", + "version": "2.1.1", "description": "MCP wrapper for the Knowhere Node.js SDK local knowledge tools", "keywords": [ "knowhere",