Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7a7ed79d56 |
@@ -1,3 +1,34 @@
|
|||||||
|
## v0.36.0 (2025-11-15)
|
||||||
|
|
||||||
|
### BREAKING CHANGE
|
||||||
|
|
||||||
|
- Search algorithms now require Qdrant to be populated.
|
||||||
|
Vector sync must be enabled and documents indexed for search to work.
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- Normalize hybrid search RRF scores to 0-1 range
|
||||||
|
- Enhance vector visualization UI and parallelize search verification
|
||||||
|
- Add Vector Viz tab to app home page
|
||||||
|
- Add vector visualization pane with multi-select document types
|
||||||
|
- Implement custom PCA to remove sklearn dependency
|
||||||
|
- Add multi-document Protocol with cross-app search support
|
||||||
|
- Update nc_semantic_search tool with algorithm selection
|
||||||
|
- Implement unified search algorithm module
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- Reorder tabs and fix viz pane session access
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- Optimize Nextcloud access verification with centralized filtering
|
||||||
|
- Make all search algorithms query Qdrant payload, not Nextcloud
|
||||||
|
|
||||||
|
### Perf
|
||||||
|
|
||||||
|
- Exclude vector-sync status polling from distributed tracing
|
||||||
|
|
||||||
## v0.35.0 (2025-11-15)
|
## v0.35.0 (2025-11-15)
|
||||||
|
|
||||||
### Feat
|
### Feat
|
||||||
|
|||||||
@@ -2,8 +2,8 @@ apiVersion: v2
|
|||||||
name: nextcloud-mcp-server
|
name: nextcloud-mcp-server
|
||||||
description: A Helm chart for Nextcloud MCP Server - enables AI assistants to interact with Nextcloud
|
description: A Helm chart for Nextcloud MCP Server - enables AI assistants to interact with Nextcloud
|
||||||
type: application
|
type: application
|
||||||
version: 0.35.0
|
version: 0.36.0
|
||||||
appVersion: "0.35.0"
|
appVersion: "0.36.0"
|
||||||
keywords:
|
keywords:
|
||||||
- nextcloud
|
- nextcloud
|
||||||
- mcp
|
- mcp
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "nextcloud-mcp-server"
|
name = "nextcloud-mcp-server"
|
||||||
version = "0.35.0"
|
version = "0.36.0"
|
||||||
description = "Model Context Protocol (MCP) server for Nextcloud integration - enables AI assistants to interact with Nextcloud data"
|
description = "Model Context Protocol (MCP) server for Nextcloud integration - enables AI assistants to interact with Nextcloud data"
|
||||||
authors = [
|
authors = [
|
||||||
{name = "Chris Coutinho", email = "chris@coutinho.io"}
|
{name = "Chris Coutinho", email = "chris@coutinho.io"}
|
||||||
|
|||||||
@@ -1053,7 +1053,7 @@ wheels = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "nextcloud-mcp-server"
|
name = "nextcloud-mcp-server"
|
||||||
version = "0.35.0"
|
version = "0.36.0"
|
||||||
source = { editable = "." }
|
source = { editable = "." }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "aiosqlite" },
|
{ name = "aiosqlite" },
|
||||||
|
|||||||
Reference in New Issue
Block a user