diff --git a/.changeset/release-fe7a1566.md b/.changeset/release-fe7a1566.md deleted file mode 100644 index 35fd338..0000000 --- a/.changeset/release-fe7a1566.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"agent-browser": patch ---- - -Improved Chrome launch reliability by automatically detecting containerized environments (Docker, Podman, Kubernetes) and enabling --no-sandbox when needed. Added support for discovering Playwright-installed Chromium browsers and enhanced error messages with helpful diagnostics when Chrome fails to launch. diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f5e5dc..c598aa5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # agent-browser +## 0.16.1 + +### Patch Changes + +- c4180c8: Improved Chrome launch reliability by automatically detecting containerized environments (Docker, Podman, Kubernetes) and enabling --no-sandbox when needed. Added support for discovering Playwright-installed Chromium browsers and enhanced error messages with helpful diagnostics when Chrome fails to launch. + ## 0.16.0 ### Minor Changes diff --git a/cli/Cargo.lock b/cli/Cargo.lock index ba44420..ba20afb 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -45,7 +45,7 @@ dependencies = [ [[package]] name = "agent-browser" -version = "0.16.0" +version = "0.16.1" dependencies = [ "aes-gcm", "async-trait", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 0e014a8..bec5b01 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.16.0" +version = "0.16.1" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/package.json b/package.json index 4f6171a..a949d0f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.16.0", + "version": "0.16.1", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",