Skip to content

dl4rce/flaiwheel

v3.9.10 Bugfix

This release fixes issues for SREs watching stability and regressions.

Published 3mo MCP Search & Web
✓ No known CVEs patched
Read the diff → Tool health → What is this tool? →

✓ No known CVEs patched in this version

Affected surfaces

breaking_upgrade

Summary

AI summary

Fixed 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

Track dl4rce/flaiwheel

Get notified when new releases ship.

Sign up free

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.

All releases →

Beta — feedback welcome: [email protected]