Skip to content

Commit 6d05a94

Browse files
authored
v0.25.3 (#1176)
1 parent 1a6ea17 commit 6d05a94

6 files changed

Lines changed: 36 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,33 @@
11
# agent-browser
22

3-
## 0.25.2
3+
## 0.25.3
44

55
<!-- release:start -->
66
### Bug Fixes
77

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)
8+
- Fixed **hidden radio/checkbox inputs missing from snapshot refs** when a `<label>` wraps a `display:none` `<input type="radio">` or `<input type="checkbox">`. Chrome excludes these inputs from the accessibility tree entirely, making it impossible for AI agents to identify radio buttons and checkboxes via refs. Hidden inputs inside elements are now detected during cursor-interactive scanning and their parent nodes are promoted to the correct role with proper name and checked state (#1085)
9+
10+
### Documentation
11+
12+
- Added **clickable heading anchors** to the docs site, making it easy to link directly to any section (#1175)
913

1014
### Contributors
1115

1216
- @ctate
17+
- @jin-2-kakaoent
18+
- @hyunjinee
1319
<!-- release:end -->
1420

21+
## 0.25.2
22+
23+
### Bug Fixes
24+
25+
- 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)
26+
27+
### Contributors
28+
29+
- @ctate
30+
1531
## 0.25.1
1632

1733
### Improvements

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.2"
3+
version = "0.25.3"
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: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## v0.25.3
4+
5+
<p className="text-[#888] text-sm">April 7, 2026</p>
6+
7+
### Bug Fixes
8+
9+
- Fixed **hidden radio/checkbox inputs missing from snapshot refs** when a `<label>` wraps a `display:none` `<input type="radio">` or `<input type="checkbox">`. Chrome excludes these inputs from the accessibility tree entirely, making it impossible for AI agents to identify radio buttons and checkboxes via refs. Hidden inputs inside elements are now detected during cursor-interactive scanning and their parent nodes are promoted to the correct role with proper name and checked state (#1085)
10+
11+
### Documentation
12+
13+
- Added **clickable heading anchors** to the docs site, making it easy to link directly to any section (#1175)
14+
15+
---
16+
317
## v0.25.2
418

519
<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.2",
3+
"version": "0.25.3",
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.2",
3+
"version": "0.25.3",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

0 commit comments

Comments
 (0)