Skip to content

Stable Release v3.5.73

Latest

Choose a tag to compare

@github-actions github-actions released this 06 Sep 21:14

πŸŽ‰ Stable Release v3.5.73

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.73/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.73/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.73


What's Changed

πŸš€ Features

  • feat(codex): capture durable final-wire cache telemetry and attempt lifecycle (492ac2e6)
  • feat(codex): retain bounded upstream cache diagnostic evidence (4a036785)

πŸ› Bug Fixes

  • fix(codex): harden native cache continuity (496cbb07)
  • fix(codex): harden SSE frame parsing for CRLF in live streaming transform (4cdd64fc)
  • fix(codex): parse multiline native SSE data (7862a9df)
  • fix(codex): retain diagnostic correlation in inferred SSE responses (93bdf451)
  • fix(alerts): catch auth-failure listener rejection too (#451) (ab25cb68)
  • fix(codex): preserve native response cache continuity (c11acc5f)
  • fix(codex): preserve legacy cache replay and expose bounded diagnostics (cc55115a)
  • fix(alerts): catch aggregate-query rejections to prevent proxy crash (#451) (dd042010)
  • fix(codex): preserve cache continuity and capture final-wire diagnostics (PR #450) (fb5c9fe6)
  • fix(providers): read cloned request bodies as text, not json() β€” Bun 1.3.x leaks the body (#382) (fe9d3b23)

πŸ”§ Improvements

  • refactor(codex): use the better-ccflare header namespace throughout (d9987762)

Full Changelog

πŸ“‹ Compare with previous version