🎉 Stable Release v3.5.21
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.21/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.21/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.21
What's Changed
🚀 Features
- feat: add SignPath test-signing workflow and artifact configuration [skip-version] (
8f81073a)
🐛 Bug Fixes
- fix: flush AsyncDbWriter in drain() and remove stale worker health fields (
16748635) - fix: replace Bun worker with main-thread UsageCollector to eliminate memory leak (
315440fa) - fix: strip content-encoding when forwarding upstream model-not-found errors (
51540b44) - fix: reset currentEvent after SSE buffer truncation (
61f4007a) - fix: log handleEnd rejections instead of swallowing them silently (
921062eb) - fix: address PR review feedback (
b2dd2a1f) - fix: use Promise.allSettled in drain() to prevent abandoned writes on shutdown (
ba89fe28) - fix: narrow UsageWorkerHealthFn type to remove stale worker fields (
c78f2c7d) - fix: use correct build command in signpath-test workflow [skip-version] (
c8b67f1a) - fix: use then/catch callbacks instead of finally() for pendingHandleEnds cleanup (
eb9817a6)