diff --git a/.changeset/tasty-spiders-kiss.md b/.changeset/tasty-spiders-kiss.md deleted file mode 100644 index 0f6d1ec6..00000000 --- a/.changeset/tasty-spiders-kiss.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -'@rushdb/javascript-sdk': minor -'@rushdb/mcp-server': minor -'rushdb-dashboard': minor -'rushdb-core': minor -'rushdb-docs': minor -'@rushdb/skills': minor ---- - -Separate Smart Search from vector search across SDKs, MCP, dashboard, and docs. - -- Add `db.records.vectorSearch({...})` as the JavaScript SDK API for direct vector similarity search. -- Keep `db.ai.search(prompt)` for schema-aware Smart Search that generates and executes a `SearchQuery`. -- Add MCP `vectorSearch` and keep `semanticSearch` as a deprecated compatibility alias. -- Update dashboard semantic retrieval to use the new records vector-search surface. -- Refresh docs and examples, including a Smart Search guide with flow, caveats, and limitations. diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 900cc962..51250684 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,17 @@ # rushdb-docs +## 2.10.0 + +### Minor Changes + +- d393b28: Separate Smart Search from vector search across SDKs, MCP, dashboard, and docs. + + - Add `db.records.vectorSearch({...})` as the JavaScript SDK API for direct vector similarity search. + - Keep `db.ai.search(prompt)` for schema-aware Smart Search that generates and executes a `SearchQuery`. + - Add MCP `vectorSearch` and keep `semanticSearch` as a deprecated compatibility alias. + - Update dashboard semantic retrieval to use the new records vector-search surface. + - Refresh docs and examples, including a Smart Search guide with flow, caveats, and limitations. + ## 2.9.1 ### Patch Changes diff --git a/docs/package.json b/docs/package.json index c0558d06..f965435f 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "rushdb-docs", - "version": "2.9.1", + "version": "2.10.0", "private": true, "license": "Apache-2.0", "scripts": { diff --git a/packages/javascript-sdk/CHANGELOG.md b/packages/javascript-sdk/CHANGELOG.md index 5d29bc9d..7f1c3e27 100644 --- a/packages/javascript-sdk/CHANGELOG.md +++ b/packages/javascript-sdk/CHANGELOG.md @@ -1,5 +1,17 @@ # @rushdb/javascript-sdk +## 2.10.0 + +### Minor Changes + +- d393b28: Separate Smart Search from vector search across SDKs, MCP, dashboard, and docs. + + - Add `db.records.vectorSearch({...})` as the JavaScript SDK API for direct vector similarity search. + - Keep `db.ai.search(prompt)` for schema-aware Smart Search that generates and executes a `SearchQuery`. + - Add MCP `vectorSearch` and keep `semanticSearch` as a deprecated compatibility alias. + - Update dashboard semantic retrieval to use the new records vector-search surface. + - Refresh docs and examples, including a Smart Search guide with flow, caveats, and limitations. + ## 2.9.1 ### Patch Changes diff --git a/packages/javascript-sdk/package.json b/packages/javascript-sdk/package.json index e5f360e9..7adf2352 100644 --- a/packages/javascript-sdk/package.json +++ b/packages/javascript-sdk/package.json @@ -38,7 +38,7 @@ "rush-db" ], "license": "Apache-2.0", - "version": "2.9.1", + "version": "2.10.0", "type": "module", "files": [ "dist" diff --git a/packages/mcp-server/CHANGELOG.md b/packages/mcp-server/CHANGELOG.md index d06bd4cf..81b7417b 100644 --- a/packages/mcp-server/CHANGELOG.md +++ b/packages/mcp-server/CHANGELOG.md @@ -1,5 +1,22 @@ # @rushdb/mcp-server +## 2.10.0 + +### Minor Changes + +- d393b28: Separate Smart Search from vector search across SDKs, MCP, dashboard, and docs. + + - Add `db.records.vectorSearch({...})` as the JavaScript SDK API for direct vector similarity search. + - Keep `db.ai.search(prompt)` for schema-aware Smart Search that generates and executes a `SearchQuery`. + - Add MCP `vectorSearch` and keep `semanticSearch` as a deprecated compatibility alias. + - Update dashboard semantic retrieval to use the new records vector-search surface. + - Refresh docs and examples, including a Smart Search guide with flow, caveats, and limitations. + +### Patch Changes + +- Updated dependencies [d393b28] + - @rushdb/javascript-sdk@2.10.0 + ## 2.9.1 ### Patch Changes diff --git a/packages/mcp-server/package.json b/packages/mcp-server/package.json index b5268d24..565a3f7f 100644 --- a/packages/mcp-server/package.json +++ b/packages/mcp-server/package.json @@ -15,7 +15,7 @@ "tools" ], "license": "Apache-2.0", - "version": "2.9.1", + "version": "2.10.0", "type": "module", "main": "./build/index.js", "bin": { diff --git a/packages/skills/CHANGELOG.md b/packages/skills/CHANGELOG.md index 5b332f31..3f7befc4 100644 --- a/packages/skills/CHANGELOG.md +++ b/packages/skills/CHANGELOG.md @@ -1,5 +1,17 @@ # @rushdb/skills +## 2.10.0 + +### Minor Changes + +- d393b28: Separate Smart Search from vector search across SDKs, MCP, dashboard, and docs. + + - Add `db.records.vectorSearch({...})` as the JavaScript SDK API for direct vector similarity search. + - Keep `db.ai.search(prompt)` for schema-aware Smart Search that generates and executes a `SearchQuery`. + - Add MCP `vectorSearch` and keep `semanticSearch` as a deprecated compatibility alias. + - Update dashboard semantic retrieval to use the new records vector-search surface. + - Refresh docs and examples, including a Smart Search guide with flow, caveats, and limitations. + ## 2.9.1 ### Patch Changes diff --git a/packages/skills/package.json b/packages/skills/package.json index 33402a5c..fe100e94 100644 --- a/packages/skills/package.json +++ b/packages/skills/package.json @@ -16,7 +16,7 @@ "cursor" ], "license": "Apache-2.0", - "version": "2.9.1", + "version": "2.10.0", "files": [ "rushdb-query-builder", "rushdb-agent-memory", diff --git a/platform/core/CHANGELOG.md b/platform/core/CHANGELOG.md index cc92b80b..a02d7eee 100644 --- a/platform/core/CHANGELOG.md +++ b/platform/core/CHANGELOG.md @@ -1,5 +1,17 @@ # rushdb-core +## 2.10.0 + +### Minor Changes + +- d393b28: Separate Smart Search from vector search across SDKs, MCP, dashboard, and docs. + + - Add `db.records.vectorSearch({...})` as the JavaScript SDK API for direct vector similarity search. + - Keep `db.ai.search(prompt)` for schema-aware Smart Search that generates and executes a `SearchQuery`. + - Add MCP `vectorSearch` and keep `semanticSearch` as a deprecated compatibility alias. + - Update dashboard semantic retrieval to use the new records vector-search surface. + - Refresh docs and examples, including a Smart Search guide with flow, caveats, and limitations. + ## 2.9.1 ### Patch Changes diff --git a/platform/core/package.json b/platform/core/package.json index ea8a0b88..0b191a2a 100755 --- a/platform/core/package.json +++ b/platform/core/package.json @@ -1,6 +1,6 @@ { "name": "rushdb-core", - "version": "2.9.1", + "version": "2.10.0", "description": "RushDB Core", "private": true, "license": "Elastic License 2.0", diff --git a/platform/dashboard/CHANGELOG.md b/platform/dashboard/CHANGELOG.md index efd17b5f..b1f225f9 100644 --- a/platform/dashboard/CHANGELOG.md +++ b/platform/dashboard/CHANGELOG.md @@ -1,5 +1,22 @@ # rushdb-dashboard +## 2.10.0 + +### Minor Changes + +- d393b28: Separate Smart Search from vector search across SDKs, MCP, dashboard, and docs. + + - Add `db.records.vectorSearch({...})` as the JavaScript SDK API for direct vector similarity search. + - Keep `db.ai.search(prompt)` for schema-aware Smart Search that generates and executes a `SearchQuery`. + - Add MCP `vectorSearch` and keep `semanticSearch` as a deprecated compatibility alias. + - Update dashboard semantic retrieval to use the new records vector-search surface. + - Refresh docs and examples, including a Smart Search guide with flow, caveats, and limitations. + +### Patch Changes + +- Updated dependencies [d393b28] + - @rushdb/javascript-sdk@2.10.0 + ## 2.9.1 ### Patch Changes diff --git a/platform/dashboard/package.json b/platform/dashboard/package.json index fb5d6034..36537c8c 100644 --- a/platform/dashboard/package.json +++ b/platform/dashboard/package.json @@ -1,6 +1,6 @@ { "name": "rushdb-dashboard", - "version": "2.9.1", + "version": "2.10.0", "description": "RushDB Dashboard", "type": "module", "private": true,