diff --git a/.changeset/release-6125c755.md b/.changeset/release-6125c755.md deleted file mode 100644 index 53fd42f..0000000 --- a/.changeset/release-6125c755.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"agent-browser": patch ---- - -Added support for chrome:// and chrome-extension:// URLs in navigation and recording commands. These special browser URLs are now preserved as-is instead of having https:// incorrectly prepended. diff --git a/CHANGELOG.md b/CHANGELOG.md index d0119d2..935a3cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # agent-browser +## 0.15.1 + +### Patch Changes + +- 7bd8ce9: Added support for chrome:// and chrome-extension:// URLs in navigation and recording commands. These special browser URLs are now preserved as-is instead of having https:// incorrectly prepended. + ## 0.15.0 ### Minor Changes diff --git a/cli/Cargo.lock b/cli/Cargo.lock index e3a6dc2..df45daa 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agent-browser" -version = "0.15.0" +version = "0.15.1" dependencies = [ "base64", "dirs", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 8941008..a2f0a56 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.15.0" +version = "0.15.1" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/package.json b/package.json index 95ba0d1..402727c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.15.0", + "version": "0.15.1", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",