v0.20.5
vercel-labs/agent-browserv0.20.5Mar 14, 2026by github-actions[bot]
AI Summary
Prevents the daemon from panicking when the parent process closes the stderr pipe during Chrome launch.
Key Highlights
- Replaced `eprintln!` calls to silently discard write errors
- Prevents daemon panic on broken stderr pipe
Full Release Notes
### Patch Changes
- fc091d2: ### Bug Fixes
- **Daemon panic on broken stderr pipe** - Replaced all `eprintln!` calls with `writeln!(std::io::stderr(), ...)` wrapped in `let _ =` to silently discard write errors, preventing the daemon from panicking when the parent process drops the stderr pipe during Chrome launch (#802)