From 3c6ae7df9dfe29aba51765ddb7bb72b11e8b5a3d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Feb 2026 21:46:53 -0600 Subject: [PATCH] chore: version packages (#357) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/release-1845d1cb.md | 5 ----- .changeset/release-d55a4e12.md | 5 ----- CHANGELOG.md | 7 +++++++ cli/Cargo.lock | 2 +- cli/Cargo.toml | 2 +- package.json | 2 +- 6 files changed, 10 insertions(+), 13 deletions(-) delete mode 100644 .changeset/release-1845d1cb.md delete mode 100644 .changeset/release-d55a4e12.md diff --git a/.changeset/release-1845d1cb.md b/.changeset/release-1845d1cb.md deleted file mode 100644 index 6e5c36b..0000000 --- a/.changeset/release-1845d1cb.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"agent-browser": patch ---- - -Add --stdin flag for eval command to read JavaScript from stdin, enabling heredoc usage for multiline scripts diff --git a/.changeset/release-d55a4e12.md b/.changeset/release-d55a4e12.md deleted file mode 100644 index a8237be..0000000 --- a/.changeset/release-d55a4e12.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"agent-browser": patch ---- - -Add --stdin flag for the eval command to read JavaScript from stdin, enabling heredoc usage for multiline scripts. Also fix binary permission issues on macOS/Linux when postinstall scripts don't run (e.g., with bun). diff --git a/CHANGELOG.md b/CHANGELOG.md index 21dcad8..b80c3c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # agent-browser +## 0.8.10 + +### Patch Changes + +- 17dba8f: Add --stdin flag for eval command to read JavaScript from stdin, enabling heredoc usage for multiline scripts +- daeede4: Add --stdin flag for the eval command to read JavaScript from stdin, enabling heredoc usage for multiline scripts. Also fix binary permission issues on macOS/Linux when postinstall scripts don't run (e.g., with bun). + ## 0.8.9 ### Patch Changes diff --git a/cli/Cargo.lock b/cli/Cargo.lock index 33f6250..ebd0b52 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agent-browser" -version = "0.8.9" +version = "0.8.10" dependencies = [ "base64", "dirs", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index be69911..70e480c 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.8.9" +version = "0.8.10" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/package.json b/package.json index e1b5fe7..04e937a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.8.9", + "version": "0.8.10", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",