Skip to content

Commit 5804781

Browse files
release: 2.14.0 (#188)
Automated Release PR --- ## 2.14.0 (2026-06-08) Full Changelog: [v2.13.0...v2.14.0](v2.13.0...v2.14.0) ### Features * [AI-2206][apps/api] Surface proxySettings.caCertificates in public SDK & docs ([f24f27a](f24f27a)) --- This pull request is managed by Stainless's [GitHub App](https://github.com/apps/stainless-app). The [semver version number](https://semver.org/#semantic-versioning-specification-semver) is based on included [commit messages](https://www.conventionalcommits.org/en/v1.0.0/). Alternatively, you can manually set the version number in the title of this pull request. For a better experience, it is recommended to use either rebase-merge or squash-merge when merging this pull request. 🔗 Stainless [website](https://www.stainlessapi.com) 📚 Read the [docs](https://app.stainlessapi.com/docs) 🙋 [Reach out](mailto:support@stainlessapi.com) for help or questions --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 656a0cc commit 5804781

8 files changed

Lines changed: 31 additions & 7 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "2.13.0"
2+
".": "2.14.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: 27
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase/browserbase-9bab373fc62ce19147560ed3ec29fe09ad59d9a5b406d9ed21a22f15a511d9cb.yml
3-
openapi_spec_hash: 518fdefff1eabc4bb8a3b54ddf7fa293
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase/browserbase-f39b852755134d01a440f7c37701f6c5397f43d13740d9ba08739cae488382a7.yml
3+
openapi_spec_hash: de6c25eebe5026d0fb9a4d7a93ec7718
44
config_hash: d4b0c534eaf7665ea25168e0e824c9d3

CHANGELOG.md

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

3+
## 2.14.0 (2026-06-08)
4+
5+
Full Changelog: [v2.13.0...v2.14.0](https://github.com/browserbase/sdk-node/compare/v2.13.0...v2.14.0)
6+
7+
### Features
8+
9+
* [AI-2206][apps/api] Surface proxySettings.caCertificates in public SDK & docs ([f24f27a](https://github.com/browserbase/sdk-node/commit/f24f27a51e025152adfbe81654eba52df13e4a6c))
10+
311
## 2.13.0 (2026-06-05)
412

513
Full Changelog: [v2.12.0...v2.13.0](https://github.com/browserbase/sdk-node/compare/v2.12.0...v2.13.0)

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@browserbasehq/sdk",
3-
"version": "2.13.0",
3+
"version": "2.14.0",
44
"description": "The official Node.js library for the Browserbase API",
55
"author": "Browserbase <support@browserbase.com>",
66
"types": "dist/index.d.ts",

src/resources/sessions/sessions.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,11 @@ export interface SessionCreateParams {
216216
>
217217
| boolean;
218218

219+
/**
220+
* Supplementary proxy settings. Optional.
221+
*/
222+
proxySettings?: SessionCreateParams.ProxySettings;
223+
219224
/**
220225
* The region where the Session should run.
221226
*/
@@ -408,6 +413,16 @@ export namespace SessionCreateParams {
408413
*/
409414
domainPattern?: string;
410415
}
416+
417+
/**
418+
* Supplementary proxy settings. Optional.
419+
*/
420+
export interface ProxySettings {
421+
/**
422+
* The TLS certificate IDs to trust. Optional.
423+
*/
424+
caCertificates?: Array<string>;
425+
}
411426
}
412427

413428
export interface SessionUpdateParams {

src/version.ts

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

tests/api-resources/sessions/sessions.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ describe('resource sessions', () => {
6161
},
6262
},
6363
],
64+
proxySettings: { caCertificates: ['182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e'] },
6465
region: 'us-west-2',
6566
timeout: 60,
6667
userMetadata: { foo: 'bar' },

0 commit comments

Comments
 (0)