Skip to content
Merged
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 @@
{
".": "0.34.0"
".": "0.35.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 100
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-2b77b2efd4d25aaa264cbd6fcb0e43f82d14ce5a4bd6fb1e3859be440868685a.yml
openapi_spec_hash: 299be31ecb4a96dcd54d4d902a716e68
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-a0f1d08e6f62a74de2aac5c25e592494abdd59f2cfca2842c5810927554faee0.yml
openapi_spec_hash: ebd8bf67b7bb371cf4b4fa68b967cab5
config_hash: 27c0ea01aeb797a1767af139851c5b66
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.35.0 (2026-02-18)

Full Changelog: [v0.34.0...v0.35.0](https://github.com/kernel/kernel-node-sdk/compare/v0.34.0...v0.35.0)

### Features

* GPU pools ([64d61d9](https://github.com/kernel/kernel-node-sdk/commit/64d61d9f994493b89061292358f70e3386aa3551))

## 0.34.0 (2026-02-18)

Full Changelog: [v0.33.0...v0.34.0](https://github.com/kernel/kernel-node-sdk/compare/v0.33.0...v0.34.0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onkernel/sdk",
"version": "0.34.0",
"version": "0.35.0",
"description": "The official TypeScript library for the Kernel API",
"author": "Kernel <>",
"types": "dist/index.d.ts",
Expand Down
5 changes: 5 additions & 0 deletions src/resources/browser-pools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,11 @@ export interface BrowserPoolAcquireResponse {
*/
deleted_at?: string;

/**
* Whether the browser session has hardware-accelerated GPU rendering.
*/
gpu?: boolean;

/**
* Whether the browser session is running in kiosk mode.
*/
Expand Down
26 changes: 26 additions & 0 deletions src/resources/browsers/browsers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,11 @@ export interface BrowserCreateResponse {
*/
deleted_at?: string;

/**
* Whether the browser session has hardware-accelerated GPU rendering.
*/
gpu?: boolean;

/**
* Whether the browser session is running in kiosk mode.
*/
Expand Down Expand Up @@ -368,6 +373,11 @@ export interface BrowserRetrieveResponse {
*/
deleted_at?: string;

/**
* Whether the browser session has hardware-accelerated GPU rendering.
*/
gpu?: boolean;

/**
* Whether the browser session is running in kiosk mode.
*/
Expand Down Expand Up @@ -444,6 +454,11 @@ export interface BrowserUpdateResponse {
*/
deleted_at?: string;

/**
* Whether the browser session has hardware-accelerated GPU rendering.
*/
gpu?: boolean;

/**
* Whether the browser session is running in kiosk mode.
*/
Expand Down Expand Up @@ -520,6 +535,11 @@ export interface BrowserListResponse {
*/
deleted_at?: string;

/**
* Whether the browser session has hardware-accelerated GPU rendering.
*/
gpu?: boolean;

/**
* Whether the browser session is running in kiosk mode.
*/
Expand Down Expand Up @@ -560,6 +580,12 @@ export interface BrowserCreateParams {
*/
extensions?: Array<Shared.BrowserExtension>;

/**
* If true, launches a hardware-accelerated browser with GPU rendering. Requires
* Start-Up or Enterprise plan.
*/
gpu?: boolean;

/**
* If true, launches the browser using a headless image (no VNC/GUI). Defaults to
* false.
Expand Down
5 changes: 5 additions & 0 deletions src/resources/invocations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,11 @@ export namespace InvocationListBrowsersResponse {
*/
deleted_at?: string;

/**
* Whether the browser session has hardware-accelerated GPU rendering.
*/
gpu?: boolean;

/**
* Whether the browser session is running in kiosk mode.
*/
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 = '0.34.0'; // x-release-please-version
export const VERSION = '0.35.0'; // x-release-please-version
1 change: 1 addition & 0 deletions tests/api-resources/browsers/browsers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ describe('resource browsers', () => {
client.browsers.create(
{
extensions: [{ id: 'id', name: 'name' }],
gpu: false,
headless: false,
invocation_id: 'rr33xuugxj9h0bkf1rdt2bet',
kiosk_mode: true,
Expand Down