This commit is contained in:
Chris Tate
2026-04-06 21:04:38 -05:00
committed by GitHub
parent 1a6ea17ed0
commit 6d05a9485d
6 changed files with 36 additions and 6 deletions
+18 -2
View File
@@ -1,8 +1,25 @@
# agent-browser
## 0.25.3
<!-- release:start -->
### Bug Fixes
- 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)
### Documentation
- Added **clickable heading anchors** to the docs site, making it easy to link directly to any section (#1175)
### Contributors
- @ctate
- @jin-2-kakaoent
- @hyunjinee
<!-- release:end -->
## 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)
@@ -10,7 +27,6 @@
### Contributors
- @ctate
<!-- release:end -->
## 0.25.1
+1 -1
View File
@@ -45,7 +45,7 @@ dependencies = [
[[package]]
name = "agent-browser"
version = "0.25.2"
version = "0.25.3"
dependencies = [
"aes-gcm",
"async-trait",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "agent-browser"
version = "0.25.2"
version = "0.25.3"
edition = "2021"
description = "Fast browser automation CLI for AI agents"
license = "Apache-2.0"
+14
View File
@@ -1,5 +1,19 @@
# Changelog
## v0.25.3
<p className="text-[#888] text-sm">April 7, 2026</p>
### Bug Fixes
- 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)
### Documentation
- Added **clickable heading anchors** to the docs site, making it easy to link directly to any section (#1175)
---
## v0.25.2
<p className="text-[#888] text-sm">April 6, 2026</p>
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "agent-browser",
"version": "0.25.2",
"version": "0.25.3",
"description": "Browser automation CLI for AI agents",
"type": "module",
"files": [
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "dashboard",
"version": "0.25.2",
"version": "0.25.3",
"private": true,
"scripts": {
"dev": "next dev",