diff --git a/.changeset/release-7642fe84.md b/.changeset/release-7642fe84.md deleted file mode 100644 index 116a47e..0000000 --- a/.changeset/release-7642fe84.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"agent-browser": minor ---- - -Added session persistence with automatic save/restore of cookies and localStorage across browser restarts using --session-name flag, with optional AES-256-GCM encryption for saved state data. New state management commands allow listing, showing, renaming, clearing, and cleaning up old session files. Also added --new-tab option for click commands to open links in new tabs. diff --git a/CHANGELOG.md b/CHANGELOG.md index 249dbed..3b58616 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # agent-browser +## 0.10.0 + +### Minor Changes + +- 1112a16: Added session persistence with automatic save/restore of cookies and localStorage across browser restarts using --session-name flag, with optional AES-256-GCM encryption for saved state data. New state management commands allow listing, showing, renaming, clearing, and cleaning up old session files. Also added --new-tab option for click commands to open links in new tabs. + ## 0.9.4 ### Patch Changes diff --git a/cli/Cargo.lock b/cli/Cargo.lock index 1710f56..441ff6a 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agent-browser" -version = "0.9.4" +version = "0.10.0" dependencies = [ "base64", "dirs", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 5e4ef0c..336a8f5 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.9.4" +version = "0.10.0" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/package.json b/package.json index b4fa9a5..e192bcf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.9.4", + "version": "0.10.0", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",