Skip to content

Commit b75fba1

Browse files
authored
v0.25.2 (#1174)
1 parent eb15cc0 commit b75fba1

6 files changed

Lines changed: 26 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,26 @@
11
# agent-browser
22

3-
## 0.25.1
3+
## 0.25.2
44

55
<!-- release:start -->
6+
### Bug Fixes
7+
8+
- 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)
9+
10+
### Contributors
11+
12+
- @ctate
13+
<!-- release:end -->
14+
15+
## 0.25.1
16+
617
### Improvements
718

819
- **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)
920

1021
### Contributors
1122

1223
- @ctate
13-
<!-- release:end -->
1424

1525
## 0.25.0
1626

cli/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agent-browser"
3-
version = "0.25.1"
3+
version = "0.25.2"
44
edition = "2021"
55
description = "Fast browser automation CLI for AI agents"
66
license = "Apache-2.0"

docs/src/app/changelog/page.mdx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## v0.25.2
4+
5+
<p className="text-[#888] text-sm">April 6, 2026</p>
6+
7+
### Bug Fixes
8+
9+
- 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)
10+
11+
---
12+
313
## v0.25.1
414

515
<p className="text-[#888] text-sm">April 6, 2026</p>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agent-browser",
3-
"version": "0.25.1",
3+
"version": "0.25.2",
44
"description": "Browser automation CLI for AI agents",
55
"type": "module",
66
"files": [

packages/dashboard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dashboard",
3-
"version": "0.25.1",
3+
"version": "0.25.2",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

0 commit comments

Comments
 (0)