release: v1.4.0 - maintenance system and Wiki.js API token auth
Build and Push / build (release) Successful in 29s

Features:
- Maintenance router with index reconciliation
- Bidirectional orphan detection (vectors ↔ graph)
- Wiki.js API token authentication

See CHANGELOG.md for full details.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-24 16:36:54 +01:00
co-authored by Claude Opus 4.5
parent 97bd52006f
commit 2c35aec179
2 changed files with 35 additions and 1 deletions
+34
View File
@@ -5,6 +5,40 @@ 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.4.0] - 2025-12-24
### Added
- **Maintenance Router** - New `/maintenance` endpoints for system health and cleanup
- `GET /maintenance/health` - Lightweight health check (detailed mode available)
- `POST /maintenance/cleanup/all` - Full orphan cleanup (vectors + graph)
- `POST /maintenance/cleanup/vectors` - Purge orphan vector chunks
- `POST /maintenance/cleanup/graph` - Purge orphan graph nodes
- `POST /maintenance/reconcile-index` - Combined cleanup + reindex missing pages
- **Bidirectional Orphan Detection** - Cross-validate vectors and graph nodes
- `find_documents_without_vectors()` - Graph nodes missing vector chunks
- `find_chunks_without_graph_nodes()` - Vector chunks missing graph nodes
- **Qdrant Client Methods** - Bulk operations for maintenance
- `scroll_all_points()` - Iterate all points with pagination
- `delete_by_ids()` - Batch delete by point IDs
- **Graph Service Cleanup** - Node deletion methods
- `delete_document_node()` - Remove document and relationships
- `delete_collection_node()` - Remove collection and contained documents
- `get_all_document_references()` - Get all document references for validation
- **Redis Timestamp Tracking** - `last_cleanup` timestamp for scheduler integration
- **Memory System Plan** - Documented three-tier architecture (volatile/documents/knowledge)
### Changed
- **Wiki.js Authentication** - Switched from username/password to API token
- New `WIKI_GRAPHQL_API` environment variable for JWT token
- Deprecated `WIKIJS_USERNAME` and `WIKIJS_PASSWORD` (kept for backwards compatibility)
- **Service Dependencies** - Added `VectorServiceDep` and `GraphServiceDep` type aliases
### Fixed
- Wiki.js client now properly handles API token auth without login flow
## [1.3.3] - 2025-12-23
### Added
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "library-desk"
version = "1.3.3"
version = "1.4.0"
description = "Coordination service for The Library system - HybridRAG queries, document ingestion, entity extraction, and knowledge consolidation"
readme = "README.md"
requires-python = ">=3.12"