diff --git a/.changeset/release-ccb73f55.md b/.changeset/release-ccb73f55.md deleted file mode 100644 index 09f84d6..0000000 --- a/.changeset/release-ccb73f55.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"agent-browser": patch ---- - -Fixed Windows compatibility issues including proper handling of extended-length path prefixes from canonicalize(), prevention of MSYS/Git Bash path translation that could mangle arguments, and improved daemon startup reliability. Also added ARM64 Windows support in postinstall shims and expanded CI testing with a full daemon lifecycle test on Windows. diff --git a/CHANGELOG.md b/CHANGELOG.md index e39867f..9b63bae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # agent-browser +## 0.15.3 + +### Patch Changes + +- 62241b5: Fixed Windows compatibility issues including proper handling of extended-length path prefixes from canonicalize(), prevention of MSYS/Git Bash path translation that could mangle arguments, and improved daemon startup reliability. Also added ARM64 Windows support in postinstall shims and expanded CI testing with a full daemon lifecycle test on Windows. + ## 0.15.2 ### Patch Changes diff --git a/cli/Cargo.lock b/cli/Cargo.lock index e46d98b..13ec141 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agent-browser" -version = "0.15.2" +version = "0.15.3" dependencies = [ "base64", "dirs", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index e168aee..84fb6f1 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.15.2" +version = "0.15.3" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/package.json b/package.json index a9547a4..3fca6e4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.15.2", + "version": "0.15.3", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",