diff --git a/.changeset/release-a2e4783a.md b/.changeset/release-a2e4783a.md deleted file mode 100644 index d640f23..0000000 --- a/.changeset/release-a2e4783a.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"agent-browser": patch ---- - -Fixed an issue where the --native flag was being passed to child processes even when not explicitly specified on the command line. The flag is now only forwarded when the user explicitly provides it, consistent with how other CLI flags like --allow-file-access and --download-path are handled. diff --git a/CHANGELOG.md b/CHANGELOG.md index 4161055..c858c84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # agent-browser +## 0.16.3 + +### Patch Changes + +- 7d2c895: Fixed an issue where the --native flag was being passed to child processes even when not explicitly specified on the command line. The flag is now only forwarded when the user explicitly provides it, consistent with how other CLI flags like --allow-file-access and --download-path are handled. + ## 0.16.2 ### Patch Changes diff --git a/cli/Cargo.lock b/cli/Cargo.lock index 0c12a78..be6dc8d 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -45,7 +45,7 @@ dependencies = [ [[package]] name = "agent-browser" -version = "0.16.2" +version = "0.16.3" dependencies = [ "aes-gcm", "async-trait", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 2d3616a..06d1c4d 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.16.2" +version = "0.16.3" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/package.json b/package.json index c4b6f3e..14cfa6f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.16.2", + "version": "0.16.3", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",