From 97fd2828b5edbe1126f7d18b983148fee1129591 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 31 Jan 2026 23:11:25 -0600 Subject: [PATCH] chore: version packages (#331) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/release-16324bb7.md | 5 ----- CHANGELOG.md | 6 ++++++ cli/Cargo.lock | 2 +- cli/Cargo.toml | 2 +- package.json | 2 +- 5 files changed, 9 insertions(+), 8 deletions(-) delete mode 100644 .changeset/release-16324bb7.md diff --git a/.changeset/release-16324bb7.md b/.changeset/release-16324bb7.md deleted file mode 100644 index a3fb386..0000000 --- a/.changeset/release-16324bb7.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"agent-browser": patch ---- - -Improved daemon connection reliability by adding automatic retry logic for transient errors like connection resets, broken pipes, and temporary resource unavailability. The CLI now cleans up stale socket and PID files before starting a new daemon, and includes better detection of daemon responsiveness to handle race conditions during shutdown. diff --git a/CHANGELOG.md b/CHANGELOG.md index 02b98bb..04a0d2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # agent-browser +## 0.8.6 + +### Patch Changes + +- d75350a: Improved daemon connection reliability by adding automatic retry logic for transient errors like connection resets, broken pipes, and temporary resource unavailability. The CLI now cleans up stale socket and PID files before starting a new daemon, and includes better detection of daemon responsiveness to handle race conditions during shutdown. + ## 0.8.5 ### Patch Changes diff --git a/cli/Cargo.lock b/cli/Cargo.lock index 0d59a99..7fac66b 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agent-browser" -version = "0.8.5" +version = "0.8.6" dependencies = [ "dirs", "libc", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 9b0451d..2f84dac 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.8.5" +version = "0.8.6" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/package.json b/package.json index bfa5d58..d0ec91a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.8.5", + "version": "0.8.6", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",