diff --git a/CHANGELOG.md b/CHANGELOG.md index dc61f8b..a2986ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,24 @@ # agent-browser +## 0.25.5 + + +### Bug Fixes + +- 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) +- Fixed **recording context viewport** not inheriting the active viewport dimensions, causing recordings to use default resolution instead of the configured viewport (#1208) +- Fixed **`get box` and `get styles`** printing no data in text mode (#1231, #1233) +- Fixed **active page changing** when closing or removing earlier tabs. The previously focused page is now preserved correctly (#1220) + +### Contributors + +- @ctate +- @jin-2-kakaoent +- @officialasishkumar + + ## 0.25.4 - ### New Features - **`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 @@ - @jin-2-kakaoent - @juniper929 - @Marshall-Sun - ## 0.25.3 diff --git a/cli/Cargo.lock b/cli/Cargo.lock index 8814e2b..851c18e 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -45,7 +45,7 @@ dependencies = [ [[package]] name = "agent-browser" -version = "0.25.4" +version = "0.25.5" dependencies = [ "aes-gcm", "async-trait", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 67d0703..d4489c8 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.25.4" +version = "0.25.5" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/docs/src/app/changelog/page.mdx b/docs/src/app/changelog/page.mdx index 77a9cd4..8f37481 100644 --- a/docs/src/app/changelog/page.mdx +++ b/docs/src/app/changelog/page.mdx @@ -1,5 +1,18 @@ # Changelog +## v0.25.5 + +

April 16, 2026

+ +### Bug Fixes + +- 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) +- Fixed **recording context viewport** not inheriting the active viewport dimensions, causing recordings to use default resolution instead of the configured viewport (#1208) +- Fixed **`get box` and `get styles`** printing no data in text mode (#1231, #1233) +- Fixed **active page changing** when closing or removing earlier tabs. The previously focused page is now preserved correctly (#1220) + +--- + ## v0.25.4

April 12, 2026

diff --git a/package.json b/package.json index 26fe9e2..513390c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.25.4", + "version": "0.25.5", "description": "Browser automation CLI for AI agents", "type": "module", "files": [ diff --git a/packages/dashboard/package.json b/packages/dashboard/package.json index 00d7117..a3cf6b0 100644 --- a/packages/dashboard/package.json +++ b/packages/dashboard/package.json @@ -1,6 +1,6 @@ { "name": "dashboard", - "version": "0.25.4", + "version": "0.25.5", "private": true, "scripts": { "dev": "next dev",