From a6b2f5a1927d1e9220d86dab802517445d794a77 Mon Sep 17 00:00:00 2001 From: leeguooooo Date: Mon, 1 Jun 2026 14:25:08 +0900 Subject: [PATCH] =?UTF-8?q?chore(release):=20bump=20to=200.27.0-fork.10=20?= =?UTF-8?q?=E2=80=94=20UX=20batch=20+=20stealth=20coverage/webdriver?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes since fork.9 (UX audit batch): - stealth: per-session coverage so new tabs (tab new) and cross-origin iframe sessions get patched (were unpatched/detectable) - stealth: navigator.webdriver = false (boolean), not undefined — never delete the property (undefined is itself a detection tell) - hygiene: sweep orphaned temp Chrome profiles on daemon startup (only dirs no live process references) — fixes the kill -9 temp-dir disk leak - ux: success-with-no-data prints "Done" instead of a silent exit 0 - ux: top-level aliases for `get` reads (url, cdp-url, title, html, text, ...) - ux: clearer connect errors (consent dialog, "startup flag" guidance, and --cdp on Chrome 136+ points to auto-connect) Known follow-up (not in this release): FullLaunch (--launch) browsers don't get the JS patches / UA-strip applied (navigator.userAgent still shows HeadlessChrome); secondary to the primary CdpAttach mode. Tracked for a dedicated fix. --- cli/Cargo.lock | 2 +- cli/Cargo.toml | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/Cargo.lock b/cli/Cargo.lock index 303dab2..c8851d6 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -45,7 +45,7 @@ dependencies = [ [[package]] name = "agent-browser-stealth" -version = "0.27.0-fork.9" +version = "0.27.0-fork.10" dependencies = [ "aes-gcm", "async-trait", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index fc07790..a4248ba 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser-stealth" -version = "0.27.0-fork.9" +version = "0.27.0-fork.10" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/package.json b/package.json index 9647837..c286f6a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser-stealth", - "version": "0.27.0-fork.9", + "version": "0.27.0-fork.10", "description": "Browser automation CLI for AI agents — stealth fork with anti-detection", "type": "module", "packageManager": "pnpm@11.1.3",