Skip to content

Commit a884960

Browse files
authored
Prepare v0.25.5 (#1246)
* fix(test): tolerate stale screencast frames in viewport e2e test Chrome's `Page.startScreencast` `maxWidth`/`maxHeight` are upper bounds, and early frames can arrive before the viewport resize fully takes effect. Instead of asserting exact JPEG dimensions on the first frame, skip frames with stale dimensions and wait for one that matches. * Prepare v0.25.5
1 parent dba3823 commit a884960

6 files changed

Lines changed: 34 additions & 6 deletions

File tree

CHANGELOG.md

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

3-
## 0.25.4
3+
## 0.25.5
44

55
<!-- release:start -->
6+
### Bug Fixes
7+
8+
- Fixed **`--auto-connect` CDP discovery** preferring HTTP endpoint discovery over the DevToolsActivePort websocket path, which could fail on some setups. The CLI now reads the websocket path from DevToolsActivePort first and only falls back to HTTP discovery (#1218)
9+
- Fixed **recording context viewport** not inheriting the active viewport dimensions, causing recordings to use default resolution instead of the configured viewport (#1208)
10+
- Fixed **`get box` and `get styles`** printing no data in text mode (#1231, #1233)
11+
- Fixed **active page changing** when closing or removing earlier tabs. The previously focused page is now preserved correctly (#1220)
12+
13+
### Contributors
14+
15+
- @ctate
16+
- @jin-2-kakaoent
17+
- @officialasishkumar
18+
<!-- release:end -->
19+
20+
## 0.25.4
21+
622
### New Features
723

824
- **`skills` command** - Added `agent-browser skills` command for discovering and installing agent skills, with built-in evaluation support for testing skills against live browser sessions (#1225, #1227)
@@ -23,7 +39,6 @@
2339
- @jin-2-kakaoent
2440
- @juniper929
2541
- @Marshall-Sun
26-
<!-- release:end -->
2742

2843
## 0.25.3
2944

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

3+
## v0.25.5
4+
5+
<p className="text-[#888] text-sm">April 16, 2026</p>
6+
7+
### Bug Fixes
8+
9+
- Fixed **`--auto-connect` CDP discovery** preferring HTTP endpoint discovery over the DevToolsActivePort websocket path, which could fail on some setups. The CLI now reads the websocket path from DevToolsActivePort first and only falls back to HTTP discovery (#1218)
10+
- Fixed **recording context viewport** not inheriting the active viewport dimensions, causing recordings to use default resolution instead of the configured viewport (#1208)
11+
- Fixed **`get box` and `get styles`** printing no data in text mode (#1231, #1233)
12+
- Fixed **active page changing** when closing or removing earlier tabs. The previously focused page is now preserved correctly (#1220)
13+
14+
---
15+
316
## v0.25.4
417

518
<p className="text-[#888] text-sm">April 12, 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.4",
3+
"version": "0.25.5",
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.4",
3+
"version": "0.25.5",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

0 commit comments

Comments
 (0)