diff --git a/.changeset/cdp-attach-launch-options.md b/.changeset/cdp-attach-launch-options.md deleted file mode 100644 index 82b22a4683..0000000000 --- a/.changeset/cdp-attach-launch-options.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@browserbasehq/stagehand": patch ---- - -Pass local browser launch options through when attaching over CDP so explicit viewport settings are respected. diff --git a/.changeset/fix-anthropic-cua-triple-click.md b/.changeset/fix-anthropic-cua-triple-click.md deleted file mode 100644 index 6f2d57fe6f..0000000000 --- a/.changeset/fix-anthropic-cua-triple-click.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@browserbasehq/stagehand": patch ---- - -Fix Anthropic CUA `triple_click` action mapping. diff --git a/.changeset/forward-ignore-default-args.md b/.changeset/forward-ignore-default-args.md deleted file mode 100644 index 5fdf6a49e9..0000000000 --- a/.changeset/forward-ignore-default-args.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@browserbasehq/stagehand": minor ---- - -Add `ignoreDefaultArgs` option to selectively remove chrome-launcher's built-in default flags (e.g. `--disable-extensions`) when running locally diff --git a/.changeset/four-showers-pay.md b/.changeset/four-showers-pay.md deleted file mode 100644 index 4d97c30ba9..0000000000 --- a/.changeset/four-showers-pay.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@browserbasehq/stagehand": patch -"@browserbasehq/stagehand-server-v3": patch ---- - -Add Vertex auth parameters to the core and server API schemas. diff --git a/.changeset/light-books-dance.md b/.changeset/light-books-dance.md deleted file mode 100644 index dcd56f7b0b..0000000000 --- a/.changeset/light-books-dance.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@browserbasehq/stagehand": patch ---- - -fix(core): import ToolSet from ai public export diff --git a/.changeset/little-apples-watch.md b/.changeset/little-apples-watch.md deleted file mode 100644 index 52337a7595..0000000000 --- a/.changeset/little-apples-watch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@browserbasehq/stagehand": patch ---- - -Fix structuredOutputMode for newer Anthropic models diff --git a/.changeset/swift-geckos-arrive.md b/.changeset/swift-geckos-arrive.md deleted file mode 100644 index 76a3a07b5d..0000000000 --- a/.changeset/swift-geckos-arrive.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@browserbasehq/stagehand": patch ---- - -include "[selected]" or "[checked]" state in snapshot diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md new file mode 100644 index 0000000000..b15cd5ad5a --- /dev/null +++ b/packages/cli/CHANGELOG.md @@ -0,0 +1,8 @@ +# @browserbasehq/browse-cli + +## 0.6.1 + +### Patch Changes + +- Updated dependencies [[`3a53ed4`](https://github.com/browserbase/stagehand/commit/3a53ed4ea97e079b295059a338f1ef8e768f8919), [`8fc16d2`](https://github.com/browserbase/stagehand/commit/8fc16d2e1845807103da6e62928b28e0de03ab90), [`78bcde8`](https://github.com/browserbase/stagehand/commit/78bcde88e28f147acc6ca9aef9753cd96c870c35), [`3e95a87`](https://github.com/browserbase/stagehand/commit/3e95a8722a46bd7fca4d79644fe4605d7dc61bf6), [`ebbdcd3`](https://github.com/browserbase/stagehand/commit/ebbdcd33cbd137d36c9469c5ef0f531ee45a0bd8), [`12703a6`](https://github.com/browserbase/stagehand/commit/12703a6659853e2afe2d28df71d8a9b916f9df65), [`cb586a1`](https://github.com/browserbase/stagehand/commit/cb586a14e46e616caa712afa6b7ceb4dc42b7fc6)]: + - @browserbasehq/stagehand@3.5.0 diff --git a/packages/cli/package.json b/packages/cli/package.json index 420f5a7636..1d71838244 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@browserbasehq/browse-cli", - "version": "0.6.0", + "version": "0.6.1", "description": "Browser automation CLI for AI agents, built on Stagehand", "type": "commonjs", "license": "MIT", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index a9f6917567..e6e48cc436 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,25 @@ # @browserbasehq/stagehand +## 3.5.0 + +### Minor Changes + +- [#2127](https://github.com/browserbase/stagehand/pull/2127) [`78bcde8`](https://github.com/browserbase/stagehand/commit/78bcde88e28f147acc6ca9aef9753cd96c870c35) Thanks [@seanmcguire12](https://github.com/seanmcguire12)! - Add `ignoreDefaultArgs` option to selectively remove chrome-launcher's built-in default flags (e.g. `--disable-extensions`) when running locally + +### Patch Changes + +- [#2146](https://github.com/browserbase/stagehand/pull/2146) [`3a53ed4`](https://github.com/browserbase/stagehand/commit/3a53ed4ea97e079b295059a338f1ef8e768f8919) Thanks [@shriyatheunicorn](https://github.com/shriyatheunicorn)! - Pass local browser launch options through when attaching over CDP so explicit viewport settings are respected. + +- [#2107](https://github.com/browserbase/stagehand/pull/2107) [`8fc16d2`](https://github.com/browserbase/stagehand/commit/8fc16d2e1845807103da6e62928b28e0de03ab90) Thanks [@miguelg719](https://github.com/miguelg719)! - Fix Anthropic CUA `triple_click` action mapping. + +- [#2118](https://github.com/browserbase/stagehand/pull/2118) [`3e95a87`](https://github.com/browserbase/stagehand/commit/3e95a8722a46bd7fca4d79644fe4605d7dc61bf6) Thanks [@monadoid](https://github.com/monadoid)! - Add Vertex auth parameters to the core and server API schemas. + +- [#2126](https://github.com/browserbase/stagehand/pull/2126) [`ebbdcd3`](https://github.com/browserbase/stagehand/commit/ebbdcd33cbd137d36c9469c5ef0f531ee45a0bd8) Thanks [@seanmcguire12](https://github.com/seanmcguire12)! - fix(core): import ToolSet from ai public export + +- [#2120](https://github.com/browserbase/stagehand/pull/2120) [`12703a6`](https://github.com/browserbase/stagehand/commit/12703a6659853e2afe2d28df71d8a9b916f9df65) Thanks [@miguelg719](https://github.com/miguelg719)! - Fix structuredOutputMode for newer Anthropic models + +- [#2116](https://github.com/browserbase/stagehand/pull/2116) [`cb586a1`](https://github.com/browserbase/stagehand/commit/cb586a14e46e616caa712afa6b7ceb4dc42b7fc6) Thanks [@seanmcguire12](https://github.com/seanmcguire12)! - include "[selected]" or "[checked]" state in snapshot + ## 3.4.0 ### Minor Changes diff --git a/packages/core/package.json b/packages/core/package.json index d16c074655..9de98a4f43 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@browserbasehq/stagehand", - "version": "3.4.0", + "version": "3.5.0", "description": "An AI web browsing framework focused on simplicity and extensibility.", "type": "module", "main": "./dist/cjs/index.js", diff --git a/packages/evals/CHANGELOG.md b/packages/evals/CHANGELOG.md index 9657967b1e..937b276b04 100644 --- a/packages/evals/CHANGELOG.md +++ b/packages/evals/CHANGELOG.md @@ -1,5 +1,12 @@ # @browserbasehq/stagehand-evals +## 2.0.2 + +### Patch Changes + +- Updated dependencies [[`3a53ed4`](https://github.com/browserbase/stagehand/commit/3a53ed4ea97e079b295059a338f1ef8e768f8919), [`8fc16d2`](https://github.com/browserbase/stagehand/commit/8fc16d2e1845807103da6e62928b28e0de03ab90), [`78bcde8`](https://github.com/browserbase/stagehand/commit/78bcde88e28f147acc6ca9aef9753cd96c870c35), [`3e95a87`](https://github.com/browserbase/stagehand/commit/3e95a8722a46bd7fca4d79644fe4605d7dc61bf6), [`ebbdcd3`](https://github.com/browserbase/stagehand/commit/ebbdcd33cbd137d36c9469c5ef0f531ee45a0bd8), [`12703a6`](https://github.com/browserbase/stagehand/commit/12703a6659853e2afe2d28df71d8a9b916f9df65), [`cb586a1`](https://github.com/browserbase/stagehand/commit/cb586a14e46e616caa712afa6b7ceb4dc42b7fc6)]: + - @browserbasehq/stagehand@3.5.0 + ## 2.0.1 ### Patch Changes diff --git a/packages/evals/package.json b/packages/evals/package.json index ab427c2424..934b137b96 100644 --- a/packages/evals/package.json +++ b/packages/evals/package.json @@ -1,6 +1,6 @@ { "name": "@browserbasehq/stagehand-evals", - "version": "2.0.1", + "version": "2.0.2", "private": true, "description": "Evaluation suite for Stagehand", "type": "module", diff --git a/packages/server-v3/CHANGELOG.md b/packages/server-v3/CHANGELOG.md index 4773b9e75f..35766facad 100644 --- a/packages/server-v3/CHANGELOG.md +++ b/packages/server-v3/CHANGELOG.md @@ -1,5 +1,14 @@ # @browserbasehq/stagehand-server-v3 +## 3.6.5 + +### Patch Changes + +- [#2118](https://github.com/browserbase/stagehand/pull/2118) [`3e95a87`](https://github.com/browserbase/stagehand/commit/3e95a8722a46bd7fca4d79644fe4605d7dc61bf6) Thanks [@monadoid](https://github.com/monadoid)! - Add Vertex auth parameters to the core and server API schemas. + +- Updated dependencies [[`3a53ed4`](https://github.com/browserbase/stagehand/commit/3a53ed4ea97e079b295059a338f1ef8e768f8919), [`8fc16d2`](https://github.com/browserbase/stagehand/commit/8fc16d2e1845807103da6e62928b28e0de03ab90), [`78bcde8`](https://github.com/browserbase/stagehand/commit/78bcde88e28f147acc6ca9aef9753cd96c870c35), [`3e95a87`](https://github.com/browserbase/stagehand/commit/3e95a8722a46bd7fca4d79644fe4605d7dc61bf6), [`ebbdcd3`](https://github.com/browserbase/stagehand/commit/ebbdcd33cbd137d36c9469c5ef0f531ee45a0bd8), [`12703a6`](https://github.com/browserbase/stagehand/commit/12703a6659853e2afe2d28df71d8a9b916f9df65), [`cb586a1`](https://github.com/browserbase/stagehand/commit/cb586a14e46e616caa712afa6b7ceb4dc42b7fc6)]: + - @browserbasehq/stagehand@3.5.0 + ## 3.6.4 ### Patch Changes diff --git a/packages/server-v3/package.json b/packages/server-v3/package.json index 1a89b057ee..8482d311a2 100644 --- a/packages/server-v3/package.json +++ b/packages/server-v3/package.json @@ -1,6 +1,6 @@ { "name": "@browserbasehq/stagehand-server-v3", - "version": "3.6.4", + "version": "3.6.5", "description": "Stagehand API server v3", "type": "module", "private": true, diff --git a/packages/server-v4/CHANGELOG.md b/packages/server-v4/CHANGELOG.md index 9ba80b6ea5..4215523894 100644 --- a/packages/server-v4/CHANGELOG.md +++ b/packages/server-v4/CHANGELOG.md @@ -1,5 +1,12 @@ # @browserbasehq/stagehand-server-v4 +## 3.6.5 + +### Patch Changes + +- Updated dependencies [[`3a53ed4`](https://github.com/browserbase/stagehand/commit/3a53ed4ea97e079b295059a338f1ef8e768f8919), [`8fc16d2`](https://github.com/browserbase/stagehand/commit/8fc16d2e1845807103da6e62928b28e0de03ab90), [`78bcde8`](https://github.com/browserbase/stagehand/commit/78bcde88e28f147acc6ca9aef9753cd96c870c35), [`3e95a87`](https://github.com/browserbase/stagehand/commit/3e95a8722a46bd7fca4d79644fe4605d7dc61bf6), [`ebbdcd3`](https://github.com/browserbase/stagehand/commit/ebbdcd33cbd137d36c9469c5ef0f531ee45a0bd8), [`12703a6`](https://github.com/browserbase/stagehand/commit/12703a6659853e2afe2d28df71d8a9b916f9df65), [`cb586a1`](https://github.com/browserbase/stagehand/commit/cb586a14e46e616caa712afa6b7ceb4dc42b7fc6)]: + - @browserbasehq/stagehand@3.5.0 + ## 3.6.4 ### Patch Changes diff --git a/packages/server-v4/package.json b/packages/server-v4/package.json index 528c1ae6f3..2741fe3569 100644 --- a/packages/server-v4/package.json +++ b/packages/server-v4/package.json @@ -1,6 +1,6 @@ { "name": "@browserbasehq/stagehand-server-v4", - "version": "3.6.4", + "version": "3.6.5", "description": "Stagehand API server v4", "type": "module", "private": true,