diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bcaaf5..02984f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,35 @@ All notable changes to Library Desk will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.6.0] - 2025-12-29 + +### Added + +- **Memory System Implementation** - Complete three-tier memory architecture + - **Volatile Fetch Endpoints** - Scheduler-driven prefetch for ephemeral data + - `POST /volatile/fetch/{namespace}/{key}` - Fetch and cache external data + - Weather, news, and financial data providers integrated + - Auto-caching with namespace-specific TTLs + - **Unified Memory Routing** - LLM-based classification of web results + - Routes content to wiki (stable), volatile (ephemeral), file (documents), or prefetch (scheduled) + - Integrated into consolidation service post-processor + - **Document Recall in HybridRAG** - Paperless documents as fourth retrieval source + - Documents searched alongside wiki, volatile, and web in parallel + - New config: `enable_documents`, `document_limit`, `document_threshold` + - `paperless_id` field in results for document attribution + - `document_ms` timing in performance breakdown + +- **Scheduler Integration** - External scheduler service for prefetch task management + - `SchedulerClient` - Full REST API client for task CRUD operations + - `register_volatile_fetch()` convenience method for prefetch registration + - Consolidation service now creates scheduled tasks for prefetch-worthy content + - Health checks integrated into startup/shutdown lifecycle + +### Changed + +- HybridRAG now searches 4 sources in parallel (wiki, volatile, documents, web) +- Consolidation service uses external scheduler instead of settings storage for prefetch + ## [1.5.0] - 2025-12-26 ### Added diff --git a/pyproject.toml b/pyproject.toml index 454995c..9a87721 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "library-desk" -version = "1.5.0" +version = "1.6.0" description = "Coordination service for The Library system - HybridRAG queries, document ingestion, entity extraction, and knowledge consolidation" readme = "README.md" requires-python = ">=3.12"