Skip to content

Commit 5185339

Browse files
authored
chore: prepare 0.27.2 release (#1435)
1 parent 688e285 commit 5185339

6 files changed

Lines changed: 65 additions & 6 deletions

File tree

CHANGELOG.md

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

3-
## 0.27.1
3+
## 0.27.2
44

55
<!-- release:start -->
6+
### Bug Fixes
7+
8+
- Fixed **click reliability** by scrolling off-viewport elements into view before resolving coordinates, handling JavaScript dialogs promptly, recovering mouse state after dialog-opening clicks, and detecting click interception by overlays before dispatching input (#1432, #1434)
9+
- Fixed **frame-scoped selectors and waits** so CSS-selector actions and `wait` respect the selected iframe, including cross-process iframes, with translated click coordinates (#1432)
10+
- Fixed **wait timeout handling** so the documented 25s default is used, `--timeout` is honored across wait variants, and long waits receive an appropriate client read budget (#1432)
11+
- Fixed **agent-facing form commands** so `find label` matches `aria-label` and `aria-labelledby`, `select` errors when no option matches, and `type` parses `--clear` and `--delay` instead of typing them as text (#1432)
12+
13+
### Improvements
14+
15+
- Cut **warm CLI command latency** from about 150ms to about 1ms by removing the unconditional daemon settle sleep and retrying once when a stale daemon socket is discovered (#1432)
16+
- Extended **daemon respawn and retry** handling to batch commands so batches recover from a daemon exit after the initial liveness check (#1432)
17+
18+
### Infrastructure
19+
20+
- Pinned **GNU Linux release artifacts** to glibc 2.28 with zigbuild, added a release guard for newer GLIBC symbols, and aligned Docker release helpers with the pinned target (#1417)
21+
22+
### Contributors
23+
24+
- @ctate
25+
- @heshamkhaledd
26+
<!-- release:end -->
27+
28+
## 0.27.1
29+
630
### Improvements
731

832
- Improved **`vitals` command** output formatting for better readability (#1404)
933

1034
### Documentation
1135

1236
- Surfaced agent-browser feature coverage in documentation (#1403)
13-
<!-- release:end -->
1437

1538
## 0.27.0
1639

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

3+
## v0.27.2
4+
5+
<p className="text-[#888] text-sm">June 10, 2026</p>
6+
7+
### Bug Fixes
8+
9+
- Fixed **click reliability** by scrolling off-viewport elements into view before resolving coordinates, handling JavaScript dialogs promptly, recovering mouse state after dialog-opening clicks, and detecting click interception by overlays before dispatching input (#1432, #1434)
10+
- Fixed **frame-scoped selectors and waits** so CSS-selector actions and `wait` respect the selected iframe, including cross-process iframes, with translated click coordinates (#1432)
11+
- Fixed **wait timeout handling** so the documented 25s default is used, `--timeout` is honored across wait variants, and long waits receive an appropriate client read budget (#1432)
12+
- Fixed **agent-facing form commands** so `find label` matches `aria-label` and `aria-labelledby`, `select` errors when no option matches, and `type` parses `--clear` and `--delay` instead of typing them as text (#1432)
13+
14+
### Improvements
15+
16+
- Cut **warm CLI command latency** from about 150ms to about 1ms by removing the unconditional daemon settle sleep and retrying once when a stale daemon socket is discovered (#1432)
17+
- Extended **daemon respawn and retry** handling to batch commands so batches recover from a daemon exit after the initial liveness check (#1432)
18+
19+
### Infrastructure
20+
21+
- Pinned **GNU Linux release artifacts** to glibc 2.28 with zigbuild, added a release guard for newer GLIBC symbols, and aligned Docker release helpers with the pinned target (#1417)
22+
23+
---
24+
25+
## v0.27.1
26+
27+
<p className="text-[#888] text-sm">June 1, 2026</p>
28+
29+
### Improvements
30+
31+
- Improved **`vitals` command** output formatting for better readability (#1404)
32+
33+
### Documentation
34+
35+
- Surfaced agent-browser feature coverage in documentation (#1403)
36+
37+
---
38+
339
## v0.27.0
440

541
<p className="text-[#888] text-sm">May 7, 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.27.1",
3+
"version": "0.27.2",
44
"description": "Browser automation CLI for AI agents",
55
"type": "module",
66
"packageManager": "pnpm@11.1.3",

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

0 commit comments

Comments
 (0)