diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a9756be..498cd989 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,24 @@ All notable changes to the Nextcloud MCP Server will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [PEP 440](https://peps.python.org/pep-0440/). +## v0.107.0 (2026-06-06) + +### BREAKING CHANGE + +- PDFs are re-chunked page-aware by default. Existing +deployments will re-index PDF content on the next vector sync (different +chunk counts and page_number labels). Set DOCUMENT_CHUNK_PAGE_AWARE=false +to retain the previous char-based behaviour. + +### Feat + +- **vector**: page-aware PDF chunking for predictable per-page retrieval + +### Fix + +- **vector**: skip page-assignment span/warning on empty boundaries +- **vector**: route empty page_boundaries to char-based path; test ws offsets + ## v0.106.0 (2026-06-06) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 95a3e344..e8877a6e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "nextcloud-mcp-server" -version = "0.106.0" +version = "0.107.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 fd704587..01299afc 100644 --- a/uv.lock +++ b/uv.lock @@ -2183,7 +2183,7 @@ wheels = [ [[package]] name = "nextcloud-mcp-server" -version = "0.106.0" +version = "0.107.0" source = { editable = "." } dependencies = [ { name = "aiosqlite" },