release: v0.5.13 — robustness fixes from full-project audit
- executor.py: wrap shutil.rmtree/os.makedirs in try/except OSError so a permission failure logs and skips the job rather than aborting the run - cache.py: write embeddings to a .tmp file and atomically rename into place via os.replace so a process kill can't leave a corrupted .npy cache slot - immich_api.py: guard fileCreatedAt with isinstance(str) check before calling .replace() so a non-string timestamp doesn't raise AttributeError and kill the entire filter_recent_assets pass - upload_tracker.py: raise SQLite busy timeout from 5 s to 30 s to handle concurrent cron+manual run overlap without dropping upload-tracking records
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "winnow"
|
||||
version = "0.5.12"
|
||||
version = "0.5.13"
|
||||
description = "Selects diverse, high-quality photos from Immich as training data for Frigate face recognition."
|
||||
license = "AGPL-3.0-or-later"
|
||||
requires-python = ">=3.13"
|
||||
|
||||
Reference in New Issue
Block a user