diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b5d1ae..86951eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +## v0.27.0 (2025-11-09) + +### Feat + +- **helm**: add Qdrant local mode support with three deployment options [skip ci] +- add Qdrant local mode support with in-memory and persistent storage +- implement ADR-009 - refactor semantic search to use generic semantic:read scope +- implement MCP sampling for semantic search RAG (ADR-008) +- add optional vector database and semantic search to helm chart +- add vector sync processing status to /user/page endpoint +- implement semantic search tool and fix vector sync issues (ADR-007 Phase 3) +- implement vector sync scanner and processor (ADR-007 Phase 2) + +### Fix + +- implement deletion grace period and vector sync status tool +- remove unnecessary urllib3<2.0 constraint +- integrate vector sync tasks with Starlette lifespan for streamable-http + +### Refactor + +- migrate vector sync from asyncio.Queue to anyio memory object streams +- update to Qdrant query_points API and fix Playwright Keycloak login + ## v0.26.1 (2025-11-08) ### Fix diff --git a/charts/nextcloud-mcp-server/Chart.yaml b/charts/nextcloud-mcp-server/Chart.yaml index 8505981..94660a4 100644 --- a/charts/nextcloud-mcp-server/Chart.yaml +++ b/charts/nextcloud-mcp-server/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: nextcloud-mcp-server description: A Helm chart for Nextcloud MCP Server - enables AI assistants to interact with Nextcloud type: application -version: 0.26.1 -appVersion: "0.26.1" +version: 0.27.0 +appVersion: "0.27.0" keywords: - nextcloud - mcp diff --git a/pyproject.toml b/pyproject.toml index 40513c4..07bf9ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "nextcloud-mcp-server" -version = "0.26.1" +version = "0.27.0" description = "Model Context Protocol (MCP) server for Nextcloud integration - enables AI assistants to interact with Nextcloud data" authors = [ {name = "Chris Coutinho", email = "chris@coutinho.io"} diff --git a/uv.lock b/uv.lock index 0f94096..8195ea1 100644 --- a/uv.lock +++ b/uv.lock @@ -1026,7 +1026,7 @@ wheels = [ [[package]] name = "nextcloud-mcp-server" -version = "0.26.1" +version = "0.27.0" source = { editable = "." } dependencies = [ { name = "aiosqlite" },