Changelog

biomejs/biome · · 2 commits

CLI test isolation and CI image refresh

Fixed leaky CLI tests by using a current-thread Tokio runtime, and refreshed the Rust Docker digest in GitHub Actions.

Leaky CLI tests now use a current-thread runtime (ematipico19c7141)

The CLI test helper was switched from Runtime::new() to a tokio::runtime::Builder::new_current_thread().enable_all().build(), which should make the test harness more deterministic and avoid cross-thread leakage. This is a targeted fix for flaky or stateful CLI tests.

Other misc changes

  • Updated the rust:1.95.0-bullseye Docker digest in beta, preview, and release workflows (1 commit).