diff --git a/.changeset/v0-14-0-release.md b/.changeset/v0-14-0-release.md deleted file mode 100644 index d4f1aaf..0000000 --- a/.changeset/v0-14-0-release.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"agent-browser": minor ---- - -- Added `keyboard` command for raw keyboard input -- type with real keystrokes, insert text, and press shortcuts at the currently focused element without needing a selector. -- Added `--color-scheme` flag and `AGENT_BROWSER_COLOR_SCHEME` env var for persistent dark/light mode preference across browser sessions. -- Fixed IPC EAGAIN errors (os error 35/11) by adding backpressure-aware socket writes, command serialization, and lowering the default Playwright timeout to 25s (configurable via `AGENT_BROWSER_DEFAULT_TIMEOUT`). -- Fixed remote debugging (CDP) reconnection. -- Fixed state load failing when no browser is running. -- Fixed `--annotate` flag warning appearing when not explicitly passed via CLI. diff --git a/CHANGELOG.md b/CHANGELOG.md index bd653c9..9d556c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # agent-browser +## 0.14.0 + +### Minor Changes + +- b7665e5: - Added `keyboard` command for raw keyboard input -- type with real keystrokes, insert text, and press shortcuts at the currently focused element without needing a selector. + - Added `--color-scheme` flag and `AGENT_BROWSER_COLOR_SCHEME` env var for persistent dark/light mode preference across browser sessions. + - Fixed IPC EAGAIN errors (os error 35/11) by adding backpressure-aware socket writes, command serialization, and lowering the default Playwright timeout to 25s (configurable via `AGENT_BROWSER_DEFAULT_TIMEOUT`). + - Fixed remote debugging (CDP) reconnection. + - Fixed state load failing when no browser is running. + - Fixed `--annotate` flag warning appearing when not explicitly passed via CLI. + ## 0.13.0 ### Minor Changes diff --git a/cli/Cargo.lock b/cli/Cargo.lock index 78ee931..83c4361 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agent-browser" -version = "0.13.0" +version = "0.14.0" dependencies = [ "base64", "dirs", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index a5bc140..c09da0e 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.13.0" +version = "0.14.0" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/package.json b/package.json index c17dfc1..6d8c1e0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.13.0", + "version": "0.14.0", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",