🎉 Stable Release v3.5.23
Multi-Architecture Binaries
Download the appropriate binary for your platform:
- Linux x86_64:
better-ccflare-linux-amd64 - Linux ARM64 (Raspberry Pi 3/4/5, Oracle Cloud ARM, AWS Graviton):
better-ccflare-linux-arm64 - macOS Intel:
better-ccflare-macos-x86_64 - macOS Apple Silicon:
better-ccflare-macos-arm64 - Windows x86_64:
better-ccflare-windows-x64.exe
Installation
# Linux x86_64
wget https://github.com/tombii/better-ccflare/releases/download/v3.5.23/better-ccflare-linux-amd64
chmod +x better-ccflare-linux-amd64
./better-ccflare-linux-amd64
# macOS Apple Silicon (ARM64)
curl -L -o better-ccflare-macos-arm64 https://github.com/tombii/better-ccflare/releases/download/v3.5.23/better-ccflare-macos-arm64
chmod +x better-ccflare-macos-arm64
xattr -d com.apple.quarantine better-ccflare-macos-arm64 # Required for unsigned binaries
./better-ccflare-macos-arm64macOS Users: The xattr command is required to bypass Gatekeeper for unsigned binaries. If you prefer not to run unsigned binaries, install from source instead.
Or install via npm: npm install -g better-ccflare@v3.5.23
What's Changed
🚀 Features
- feat: anomaly detection insights endpoint (#249) (#254) (
4f421859) - feat: alerting threshold rules, SSE stream, dashboard badge (#250) (
673cbf2a) - feat: persist analytics view controls in the URL (
805500e3) - feat: add analytics URL-state serialization module (
81c8461d) - feat: cache efficiency insights endpoint and dashboard tab (#253) (
d6025c7d) - feat: context composition insights endpoint and dashboard view (#251) (
da24a7f8) - feat: add useAnalyticsUrlState hook for URL + localStorage sync (
eae8c28e)
🐛 Bug Fixes
- fix: surface contributor content hash and use it as React row key (
1aa285f3) - fix: address PR #256 review feedback (
1d59e316) - fix: seed analytics URL state only once to avoid clobbering control resets (
36254ed6) - fix: useAlertStream SSE hook connects by default and avoids reconnect storms (
3ff39f67) - fix: address Greptile review findings for context insights (
8a9fecf4) - fix: suppress SSE/webhook emission for cooldown-duplicate alerts (
ab4a9285) - fix: address PR #255 review feedback (
b8303016) - fix: add missing unacknowledgedCount dependency to navigation memo (
c8c31c45) - fix: decode alertId URL encoding and prevent partial config mutation (
fa576f61)
🔧 Improvements
- refactor: type selectedMetric as AnalyticsMetric and make RANGE_VALUES readonly (
baa670ba)