From 152b2f28c4f87ea219b4bf41665bae1d1ada0bdf Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Tue, 30 Dec 2025 12:50:44 +0100 Subject: [PATCH] release: v1.6.2 - Stats endpoint, weather/forecast separation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - GET /stats endpoint with Neo4j, Qdrant, Wiki.js, Paperless stats - Split weather into current (1hr TTL) and forecast (12hr TTL) - New FORECAST namespace for multi-day outlook 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- CHANGELOG.md | 21 +++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e0b0f0..500caab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,27 @@ 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.2] - 2025-12-30 + +### Added + +- **System Statistics Endpoint** - `GET /stats` + - Neo4j: node counts by type (Document, Entity, Collection, Search) + - Qdrant: collection counts, total vectors, per-collection breakdown + - Wiki.js: total page count + - Paperless: documents, tags, correspondents, document types + +- **Weather/Forecast Separation** - Split weather into two distinct namespaces + - `POST /volatile/fetch/weather/{city}` - Current conditions only (1hr TTL) + - `POST /volatile/fetch/forecast/{city}` - 7-day outlook (12hr TTL) + - Different update frequencies for efficient caching + - `FORECAST` namespace added to volatile namespaces + +### Changed + +- Weather namespace TTL changed from 30 minutes to 1 hour (current conditions) +- Forecast data now stored separately with 12 hour TTL + ## [1.6.1] - 2025-12-30 ### Added diff --git a/pyproject.toml b/pyproject.toml index 8dd86b8..97ca48c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "library-desk" -version = "1.6.1" +version = "1.6.2" description = "Coordination service for The Library system - HybridRAG queries, document ingestion, entity extraction, and knowledge consolidation" readme = "README.md" requires-python = ">=3.12"