From f38e82cca4587c18c4c702d043738ad793d462c8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 21:11:57 -0800 Subject: [PATCH] Version Packages (#321) Co-authored-by: github-actions[bot] --- .changeset/dirty-apples-pay.md | 5 ----- .changeset/nervous-dolls-clean.md | 5 ----- .changeset/serious-pets-kiss.md | 5 ----- .changeset/tall-lies-nail.md | 5 ----- .changeset/tall-pots-share.md | 5 ----- CHANGELOG.md | 16 ++++++++++++++++ package.json | 2 +- 7 files changed, 17 insertions(+), 26 deletions(-) delete mode 100644 .changeset/dirty-apples-pay.md delete mode 100644 .changeset/nervous-dolls-clean.md delete mode 100644 .changeset/serious-pets-kiss.md delete mode 100644 .changeset/tall-lies-nail.md delete mode 100644 .changeset/tall-pots-share.md diff --git a/.changeset/dirty-apples-pay.md b/.changeset/dirty-apples-pay.md deleted file mode 100644 index b7acdd50..00000000 --- a/.changeset/dirty-apples-pay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@browserbasehq/stagehand": minor ---- - -Move stagehand.act() -> stagehand.page.act() and deprecate stagehand.act() diff --git a/.changeset/nervous-dolls-clean.md b/.changeset/nervous-dolls-clean.md deleted file mode 100644 index b9234053..00000000 --- a/.changeset/nervous-dolls-clean.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@browserbasehq/stagehand": minor ---- - -We now wrap playwright page/context within StagehandPage and StagehandContext objects. This helps us augment the Stagehand experience by being able to augment the underlying Playwright diff --git a/.changeset/serious-pets-kiss.md b/.changeset/serious-pets-kiss.md deleted file mode 100644 index 04fe6982..00000000 --- a/.changeset/serious-pets-kiss.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@browserbasehq/stagehand": minor ---- - -moves extract and act -> page and deprecates stagehand.extract and stagehand.observe diff --git a/.changeset/tall-lies-nail.md b/.changeset/tall-lies-nail.md deleted file mode 100644 index 1401ed29..00000000 --- a/.changeset/tall-lies-nail.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@browserbasehq/stagehand": patch ---- - -bug fix: set this.env to LOCAL if BROWSERBASE_API_KEY is not defined diff --git a/.changeset/tall-pots-share.md b/.changeset/tall-pots-share.md deleted file mode 100644 index 355fc3ee..00000000 --- a/.changeset/tall-pots-share.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@browserbasehq/stagehand": patch ---- - -only start domdebug if enabled diff --git a/CHANGELOG.md b/CHANGELOG.md index f0239425..f15c529e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # @browserbasehq/stagehand +## 1.8.0 + +### Minor Changes + +- [#324](https://github.com/browserbase/stagehand/pull/324) [`cd23fa3`](https://github.com/browserbase/stagehand/commit/cd23fa33450107f29cb1ddb6edadfc769d336aa5) Thanks [@kamath](https://github.com/kamath)! - Move stagehand.act() -> stagehand.page.act() and deprecate stagehand.act() + +- [#319](https://github.com/browserbase/stagehand/pull/319) [`bacbe60`](https://github.com/browserbase/stagehand/commit/bacbe608058304bfa1f0ab049da4d8aa90e8d6f7) Thanks [@kamath](https://github.com/kamath)! - We now wrap playwright page/context within StagehandPage and StagehandContext objects. This helps us augment the Stagehand experience by being able to augment the underlying Playwright + +- [#324](https://github.com/browserbase/stagehand/pull/324) [`cd23fa3`](https://github.com/browserbase/stagehand/commit/cd23fa33450107f29cb1ddb6edadfc769d336aa5) Thanks [@kamath](https://github.com/kamath)! - moves extract and act -> page and deprecates stagehand.extract and stagehand.observe + +### Patch Changes + +- [#320](https://github.com/browserbase/stagehand/pull/320) [`c0cdd0e`](https://github.com/browserbase/stagehand/commit/c0cdd0e985d66f0464d2e70b7d0cb343b0efbd3f) Thanks [@kamath](https://github.com/kamath)! - bug fix: set this.env to LOCAL if BROWSERBASE_API_KEY is not defined + +- [#325](https://github.com/browserbase/stagehand/pull/325) [`cc46f34`](https://github.com/browserbase/stagehand/commit/cc46f345c0a1dc0af4abae7e207833df17da50e7) Thanks [@pkiv](https://github.com/pkiv)! - only start domdebug if enabled + ## 1.7.0 ### Minor Changes diff --git a/package.json b/package.json index 169a4b7a..690f7bd9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@browserbasehq/stagehand", - "version": "1.7.0", + "version": "1.8.0", "description": "An AI web browsing framework focused on simplicity and extensibility.", "main": "./dist/index.js", "module": "./dist/index.js",