v0.25.2

vercel-labs/agent-browserv0.25.2Apr 7, 2026by github-actions[bot]

AI Summary

Fixes a Linux-specific stability issue where Chrome was killed after ~10s of idle time.

Key Highlights

  • Fixed Chrome being killed after ~10s idle on Linux due to process group tracking

Full Release Notes

### Bug Fixes

- Fixed **Chrome being killed after ~10s idle on Linux** caused by `PR_SET_PDEATHSIG` tracking the blocking thread that spawned Chrome rather than the daemon process. When Tokio reaped the idle thread, the kernel sent SIGKILL to Chrome even though the daemon was still alive. Orphan cleanup is handled by the existing process-group kill in `ChromeProcess::kill()` (#1157, #1173)

### Contributors

- @ctate