diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 210d290..bcd0522 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.5.1" + ".": "0.6.0" } diff --git a/.stats.yml b/.stats.yml index 8a02f60..c10d829 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 26 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browser-use%2Fbrowser-use-3a9488448292a0736b08b2d6427e702eaf7106d86345ca2e65b64bed4398b036.yml -openapi_spec_hash: 5ff2781dcc11a0c9aa353f5cb14bcc16 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browser-use%2Fbrowser-use-9f5ca0cd0a64c620cebceaebf7c6f8c3a917aa6fbc2ea6b9d2a6e3b9d17aaea4.yml +openapi_spec_hash: 3d30ebd2ed6ab3a5b42b6b267a45d34f config_hash: 9d52be5177b2ede4cb0633c04f4cc4ef diff --git a/CHANGELOG.md b/CHANGELOG.md index 103c965..a179371 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 0.6.0 (2025-08-19) + +Full Changelog: [v0.5.1...v0.6.0](https://github.com/browser-use/browser-use-node/compare/v0.5.1...v0.6.0) + +### Features + +* Event Verify Type Signature, Aggressively Push Status Checks in Webhook ([6239b3a](https://github.com/browser-use/browser-use-node/commit/6239b3a632df204ab01fcc89c40890d80d0c1bf6)) +* Improve Docs ([12429c9](https://github.com/browser-use/browser-use-node/commit/12429c9289030fc8c4c1bbb7fe5aa249c08ec8ee)) + + +### Bug Fixes + +* Trigger SDK build ([e5b9215](https://github.com/browser-use/browser-use-node/commit/e5b9215d158a2e50a736ba185dd641dece9d96bb)) +* Trigger SDK build ([0ce7b48](https://github.com/browser-use/browser-use-node/commit/0ce7b48d3920460c40091d0449413c7c59d4ef19)) + ## 0.5.1 (2025-08-18) Full Changelog: [v0.5.0...v0.5.1](https://github.com/browser-use/browser-use-node/compare/v0.5.0...v0.5.1) diff --git a/package.json b/package.json index 2489882..f982322 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "browser-use-sdk", - "version": "0.5.1", + "version": "0.6.0", "description": "The official TypeScript library for the Browser Use API", "author": "Browser Use ", "types": "dist/index.d.ts", diff --git a/src/resources/tasks.ts b/src/resources/tasks.ts index 3347bac..a32eb9e 100644 --- a/src/resources/tasks.ts +++ b/src/resources/tasks.ts @@ -17,12 +17,12 @@ import * as TasksAPI from './tasks'; export class Tasks extends APIResource { /** - * Create and start a new AI agent task. + * Create and start a new Browser Use Agent task. * * This is the main endpoint for running AI agents. You can either: * - * 1. Start a new session with a new task - * 2. Add a follow-up task to an existing session + * 1. Start a new session with a new task. + * 2. Add a follow-up task to an existing session. * * When starting a new session: * @@ -43,9 +43,8 @@ export class Tasks extends APIResource { * - Browser profiles: Control browser settings and environment (only used for new * sessions) * - File uploads: Include documents for the agent to work with - * - Structured output: Define the format you want results in - * - Task metadata: Add custom data for tracking and organization (useful when - * using webhooks) + * - Structured output: Define the format of the task result + * - Task metadata: Add custom data for tracking and organization * * Args: * diff --git a/src/version.ts b/src/version.ts index 44c3338..30c2817 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.5.1'; // x-release-please-version +export const VERSION = '0.6.0'; // x-release-please-version