diff --git a/.changeset/release-a16f7017.md b/.changeset/release-a16f7017.md deleted file mode 100644 index 7e5d8c9..0000000 --- a/.changeset/release-a16f7017.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"agent-browser": patch ---- - -Added base64 encoding support for the eval command with -b/--base64 flag to avoid shell escaping issues when executing JavaScript. Updated documentation with AI agent setup instructions and reorganized the docs structure by consolidating agent mode content into the installation page. diff --git a/CHANGELOG.md b/CHANGELOG.md index e0ec1fd..35a73bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # agent-browser +## 0.8.8 + +### Patch Changes + +- 2771588: Added base64 encoding support for the eval command with -b/--base64 flag to avoid shell escaping issues when executing JavaScript. Updated documentation with AI agent setup instructions and reorganized the docs structure by consolidating agent mode content into the installation page. + ## 0.8.7 ### Patch Changes diff --git a/cli/Cargo.lock b/cli/Cargo.lock index cea2aa5..25098c9 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agent-browser" -version = "0.8.7" +version = "0.8.8" dependencies = [ "base64", "dirs", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 50a47d5..a627d3f 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.8.7" +version = "0.8.8" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/package.json b/package.json index 6710c84..8ec7833 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.8.7", + "version": "0.8.8", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",