Skip to content

Commit b1cf3a3

Browse files
authored
Merge pull request #18 from browser-use/release-please--branches--main--changes--next--components--browser-use-sdk
release: 0.6.0
2 parents 133c441 + a334ec2 commit b1cf3a3

File tree

6 files changed

+25
-11
lines changed

6 files changed

+25
-11
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.5.1"
2+
".": "0.6.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 26
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browser-use%2Fbrowser-use-3a9488448292a0736b08b2d6427e702eaf7106d86345ca2e65b64bed4398b036.yml
3-
openapi_spec_hash: 5ff2781dcc11a0c9aa353f5cb14bcc16
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browser-use%2Fbrowser-use-9f5ca0cd0a64c620cebceaebf7c6f8c3a917aa6fbc2ea6b9d2a6e3b9d17aaea4.yml
3+
openapi_spec_hash: 3d30ebd2ed6ab3a5b42b6b267a45d34f
44
config_hash: 9d52be5177b2ede4cb0633c04f4cc4ef

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## 0.6.0 (2025-08-19)
4+
5+
Full Changelog: [v0.5.1...v0.6.0](https://github.com/browser-use/browser-use-node/compare/v0.5.1...v0.6.0)
6+
7+
### Features
8+
9+
* Event Verify Type Signature, Aggressively Push Status Checks in Webhook ([6239b3a](https://github.com/browser-use/browser-use-node/commit/6239b3a632df204ab01fcc89c40890d80d0c1bf6))
10+
* Improve Docs ([12429c9](https://github.com/browser-use/browser-use-node/commit/12429c9289030fc8c4c1bbb7fe5aa249c08ec8ee))
11+
12+
13+
### Bug Fixes
14+
15+
* Trigger SDK build ([e5b9215](https://github.com/browser-use/browser-use-node/commit/e5b9215d158a2e50a736ba185dd641dece9d96bb))
16+
* Trigger SDK build ([0ce7b48](https://github.com/browser-use/browser-use-node/commit/0ce7b48d3920460c40091d0449413c7c59d4ef19))
17+
318
## 0.5.1 (2025-08-18)
419

520
Full Changelog: [v0.5.0...v0.5.1](https://github.com/browser-use/browser-use-node/compare/v0.5.0...v0.5.1)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "browser-use-sdk",
3-
"version": "0.5.1",
3+
"version": "0.6.0",
44
"description": "The official TypeScript library for the Browser Use API",
55
"author": "Browser Use <[email protected]>",
66
"types": "dist/index.d.ts",

src/resources/tasks.ts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ import * as TasksAPI from './tasks';
1717

1818
export class Tasks extends APIResource {
1919
/**
20-
* Create and start a new AI agent task.
20+
* Create and start a new Browser Use Agent task.
2121
*
2222
* This is the main endpoint for running AI agents. You can either:
2323
*
24-
* 1. Start a new session with a new task
25-
* 2. Add a follow-up task to an existing session
24+
* 1. Start a new session with a new task.
25+
* 2. Add a follow-up task to an existing session.
2626
*
2727
* When starting a new session:
2828
*
@@ -43,9 +43,8 @@ export class Tasks extends APIResource {
4343
* - Browser profiles: Control browser settings and environment (only used for new
4444
* sessions)
4545
* - File uploads: Include documents for the agent to work with
46-
* - Structured output: Define the format you want results in
47-
* - Task metadata: Add custom data for tracking and organization (useful when
48-
* using webhooks)
46+
* - Structured output: Define the format of the task result
47+
* - Task metadata: Add custom data for tracking and organization
4948
*
5049
* Args:
5150
*

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.5.1'; // x-release-please-version
1+
export const VERSION = '0.6.0'; // x-release-please-version

0 commit comments

Comments
 (0)