This release fixes issues for SREs watching stability and regressions.
✓ No known CVEs patched in this version
Summary
AI summaryFixed whole-app freeze by running archive_website() in a worker thread instead of blocking FastAPI's async event loop.
Changes in this release
| Type | Severity | Summary | CVE |
|---|---|---|---|
| Bugfix | Medium |
Runs archive_website() in a worker thread to keep UI responsive during long-running archives. Runs archive_website() in a worker thread to keep UI responsive during long-running archives. Source: llm_adapter@2026-06-04 Confidence: low |
— |
Full changelog
Fixed
- Whole-app freeze while archiving a webpage.
archive_website()is a blocking operation (network fetches, parallel prefetch, optionalmonolith/obelisksubprocess) but was being run directly on FastAPI's async event loop — both in the/api/archiveroute and in the+linknote-save path. A slow or hung archive (common behind a corporate TLS-inspection proxy) blocked the event loop and made the entire app unresponsive, including page refreshes, until the archive finished or timed out. Both callsites now run the archive in a worker thread (asyncio.to_thread), so the UI stays responsive throughout.
Pairs with the v0.7.3 archive_ssl_verify toggle for archiving behind corporate proxies.
Weekly OSS security release digest.
The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.
No spam, unsubscribe anytime.
Share this release
About Xafloc/NoteFlow
All releases →Related context
Related tools
Beta — feedback welcome: [email protected]