You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
-3Lines changed: 0 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -233,15 +233,13 @@
233
233
We're thrilled to announce the release of Stagehand 2.0, bringing significant improvements to make browser automation more powerful, faster, and easier to use than ever before.
234
234
235
235
### 🚀 New Features
236
-
237
236
-**Introducing `stagehand.agent`**: A powerful new way to integrate SOTA Computer use models or Browserbase's [Open Operator](https://operator.browserbase.com) into Stagehand with one line of code! Perfect for multi-step workflows and complex interactions. [Learn more](https://docs.stagehand.dev/concepts/agent)
238
237
-**Lightning-fast `act` and `extract`**: Major performance improvements to make your automations run significantly faster.
239
238
-**Enhanced Logging**: Better visibility into what's happening during automation with improved logging and debugging capabilities.
240
239
-**Comprehensive Documentation**: A completely revamped documentation site with better examples, guides, and best practices.
241
240
-**Improved Error Handling**: More descriptive errors and better error recovery to help you debug issues faster.
242
241
243
242
### 🛠️ Developer Experience
244
-
245
243
-**Better TypeScript Support**: Enhanced type definitions and better IDE integration
246
244
-**Better Error Messages**: Clearer, more actionable error messages to help you debug faster
247
245
-**Improved Caching**: More reliable action caching for better performance
-[#296](https://github.com/browserbase/stagehand/pull/296)[`f11da27`](https://github.com/browserbase/stagehand/commit/f11da27a20409c240ceeea2003d520f676def61a) Thanks [@kamath](https://github.com/kamath)! - - Deprecate fields in `init` in favor of constructor options
505
-
506
503
- Deprecate `initFromPage` in favor of `browserbaseResumeSessionID` in constructor
region: region,// Always include region (defaults to us-east-1)
546
+
};
547
+
548
+
// Add session token if present (for temporary credentials)
549
+
if(sessionToken&&sessionToken.length>0){
550
+
config.sessionToken=sessionToken;
551
+
}
552
+
553
+
returnconfig;
554
+
}
555
+
556
+
logger({
557
+
category: "init",
558
+
message:
559
+
"No Amazon Bedrock authentication credentials found. Please set either AWS_BEARER_TOKEN_BEDROCK for API key auth or AWS_ACCESS_KEY_ID/AWS_SECRET_ACCESS_KEY (and optionally AWS_SESSION_TOKEN) for SigV4 auth",
0 commit comments