🎉 Stable Release v3.5.48
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.48/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.48/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.48
What's Changed
🐛 Bug Fixes
- fix(core): prevent overlapping retention cleanup runs from corrupting /health status (
1b82e551) - fix(database): retry refuse-path heartbeat cleanup on transient DELETE failures (PR #376) (
1f808493) - fix(database): bound usage_snapshots batch DELETE by physical row identity (
454b403e) - fix(release): grant pull-requests:read so contributor credit works [skip-version] (
6f2c9d28) - fix(test): make full bun test suite reliably green (issue #107) (
c1abbb83) - fix(database): batch retention DELETEs to avoid PG statement_timeout (
c9fc8edc) - fix(proxy): skip mid-stream rate-limit cooldown for cache-keepalive replays (
cb21650f) - fix(database): widen instance_heartbeats timestamps to bigint on PostgreSQL (#389) (
cd4abcff) - fix(test): cli.test.ts teardown unlinks runCLI DB + WAL/SHM siblings (
da1c0269) - fix(database): retry refuse-path heartbeat cleanup on transient DELETE failures (PR #387) (
dbe16cc5) - fix(test): route tests through TMPDIR so suite passes under harness sandbox (issue #107, round 2) (
eb163fce) - fix(database): surface startup-time retention failures in /health (
f05bf2b1) - fix(core): close startup-vs-periodic race on retention status (
f08de12a)