This commit is contained in:
Chris Tate
2026-04-06 18:56:05 -05:00
committed by GitHub
parent eb15cc0894
commit b75fba130b
6 changed files with 26 additions and 6 deletions
+12 -2
View File
@@ -1,8 +1,19 @@
# agent-browser
## 0.25.2
<!-- release:start -->
### 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
<!-- release:end -->
## 0.25.1
<!-- release:start -->
### Improvements
- **Embedded dashboard** - The observability dashboard is now bundled directly into the CLI binary using `rust-embed`, eliminating the need for `dashboard install`. The dashboard is available immediately after installing agent-browser (#1169)
@@ -10,7 +21,6 @@
### Contributors
- @ctate
<!-- release:end -->
## 0.25.0
+1 -1
View File
@@ -45,7 +45,7 @@ dependencies = [
[[package]]
name = "agent-browser"
version = "0.25.1"
version = "0.25.2"
dependencies = [
"aes-gcm",
"async-trait",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "agent-browser"
version = "0.25.1"
version = "0.25.2"
edition = "2021"
description = "Fast browser automation CLI for AI agents"
license = "Apache-2.0"
+10
View File
@@ -1,5 +1,15 @@
# Changelog
## v0.25.2
<p className="text-[#888] text-sm">April 6, 2026</p>
### 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 (#1157, #1173)
---
## v0.25.1
<p className="text-[#888] text-sm">April 6, 2026</p>
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "agent-browser",
"version": "0.25.1",
"version": "0.25.2",
"description": "Browser automation CLI for AI agents",
"type": "module",
"files": [
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "dashboard",
"version": "0.25.1",
"version": "0.25.2",
"private": true,
"scripts": {
"dev": "next dev",