Skip to content

Stable Release v3.5.56

Choose a tag to compare

@github-actions github-actions released this 17 Aug 20:58
· 5 commits to main since this release

πŸŽ‰ Stable Release v3.5.56

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.56/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.56/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-arm64

macOS 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.56


What's Changed

πŸ› Bug Fixes

  • fix: address second round of PR review findings on anomaly z-score redesign (08709408)
  • fix: make PG retention cleanup timeout and batch size configurable (#412) (23bc94ab)
  • fix: replace mathematically-capped anomaly z-score with log-space median/MAD (#410) (5326c88c)
  • fix: require integer values for retention timeout/batch env overrides (7b8d02ce)
  • fix: scope anomaly alert cooldown by account:model instead of requestId (#411) (c175594b)
  • fix: use length-prefix encoding for anomaly cooldown scope null sentinel (cb13d4a6)
  • fix: address PR review findings on anomaly z-score redesign (e29868e8)
  • fix: use GROUP_KEY_SEPARATOR for anomaly cooldown scope to avoid Unknown collision (eecc5c4a)
  • fix: build anomaly cooldown scope from pre-normalization account/model (fc985f77)

Full Changelog

πŸ“‹ Compare with previous version