This release fixes issues for SREs watching stability and regressions.
✓ No known CVEs patched in this version
Affected surfaces
Summary
AI summaryFixed silent skip of updates caused by CDN caching of version check.
Full changelog
Root cause
LATEST_VERSION was fetched via:
curl "https://raw.githubusercontent.com/dl4rce/flaiwheel/main/src/flaiwheel/__init__.py"
GitHub's raw content CDN caches main branch responses for several minutes. After pushing a new version, the CDN still served the old __init__.py, so RUNNING_VERSION == LATEST_VERSION — the fast-path triggered and the update was silently skipped.
Fix
LATEST_VERSION is now just "$_FW_VERSION" — the version already embedded in the installer script itself. No HTTP call, no CDN, always accurate.
This works because the curl|bash self-pinning mechanism at startup already re-downloads the installer from the exact tagged version (v${_FW_VERSION}), so _FW_VERSION in the running script is always the true latest.
Upgrade
curl -sSL https://raw.githubusercontent.com/dl4rce/flaiwheel/main/scripts/install.sh | bash
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 dl4rce/flaiwheel
Self-hosted memory and governance layer for AI coding agents. 28 MCP tools with structured knowledge capture, hybrid search (semantic + BM25 + cross-encoder reranking), behavioral documentation nudges, cold-start codebase analyzer, and git-native storage. Single Docker container, zero cloud dependencies.
Related context
Beta — feedback welcome: [email protected]