Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.17.0"
".": "2.17.1"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 38
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase/browserbase-0764e25c8c07b520e25c38c8455fca106a51fd8b13f8260b9db9729d6a556b2e.yml
openapi_spec_hash: aed91a76db495a87ca16737b91b0c51c
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase/browserbase-3ec0b6e548738015742bb96af2116e1e2e694bd4b2fb8a2058275c088a1317d5.yml
openapi_spec_hash: e7a9a587a6797f1d2363ab1dca77fbe6
config_hash: 12a5eb5ac818623045ae77075ee3dd53
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 2.17.1 (2026-08-14)

Full Changelog: [v2.17.0...v2.17.1](https://github.com/browserbase/sdk-node/compare/v2.17.0...v2.17.1)

### Bug Fixes

* **api:** document session timeout bounds in create-session description ([427f966](https://github.com/browserbase/sdk-node/commit/427f966679bc668925d2b46c3728515abc9d62c8))

## 2.17.0 (2026-08-10)

Full Changelog: [v2.16.0...v2.17.0](https://github.com/browserbase/sdk-node/compare/v2.16.0...v2.17.0)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@browserbasehq/sdk",
"version": "2.17.0",
"version": "2.17.1",
"description": "The official Node.js library for the Browserbase API",
"author": "Browserbase <support@browserbase.com>",
"license": "Apache-2.0",
Expand Down
3 changes: 2 additions & 1 deletion src/resources/sessions/sessions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,8 @@ export interface SessionCreateParams {

/**
* Duration in seconds after which the session will automatically end. Defaults to
* the Project's `defaultTimeout`.
* the Project's `defaultTimeout`. Minimum 60 seconds, maximum 21600 seconds (6
* hours).
*/
api_timeout?: number;

Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '2.17.0'; // x-release-please-version
export const VERSION = '2.17.1'; // x-release-please-version
Loading