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.48.0"
".": "0.49.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 111
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-49a1a92e00d1eb87e91e8527275cb0705fce2edea30e70fea745f134dd451fbd.yml
openapi_spec_hash: 3aa6ab6939790f538332054162fbdedc
openapi_spec_hash: 0ffef6a95f9d9b1096180fc5e4c5b39c
config_hash: 9818dd634f87b677410eefd013d7a179
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.49.0 (2026-04-10)

Full Changelog: [v0.48.0...v0.49.0](https://github.com/kernel/kernel-python-sdk/compare/v0.48.0...v0.49.0)

### Features

* Neil/kernel 1180 fuzzy matching for browser pools ([4089baf](https://github.com/kernel/kernel-python-sdk/commit/4089bafcec6fe6029b0b3730767e7428e2ab6e07))
* Raise replay framerate limit from 20 to 60 fps ([707b339](https://github.com/kernel/kernel-python-sdk/commit/707b3398f435ebaf1a801e6310e2c827b1766e82))

## 0.48.0 (2026-04-10)

Full Changelog: [v0.47.0...v0.48.0](https://github.com/kernel/kernel-python-sdk/compare/v0.47.0...v0.48.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "kernel"
version = "0.48.0"
version = "0.49.0"
description = "The official Python library for the kernel API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/kernel/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "kernel"
__version__ = "0.48.0" # x-release-please-version
__version__ = "0.49.0" # x-release-please-version
4 changes: 2 additions & 2 deletions src/kernel/resources/browsers/browsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def list(

offset: Number of results to skip. Defaults to 0.

query: Search browsers by session ID, profile ID, or proxy ID.
query: Search browsers by session ID, profile ID, proxy ID, or pool name.

status: Filter sessions by status. "active" returns only active sessions (default),
"deleted" returns only soft-deleted sessions, "all" returns both.
Expand Down Expand Up @@ -803,7 +803,7 @@ def list(

offset: Number of results to skip. Defaults to 0.

query: Search browsers by session ID, profile ID, or proxy ID.
query: Search browsers by session ID, profile ID, proxy ID, or pool name.

status: Filter sessions by status. "active" returns only active sessions (default),
"deleted" returns only soft-deleted sessions, "all" returns both.
Expand Down
6 changes: 4 additions & 2 deletions src/kernel/resources/browsers/replays.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ def start(
Start recording the browser session and return a replay ID.

Args:
framerate: Recording framerate in fps.
framerate: Recording framerate in fps. Values above 20 require GPU to be enabled on the
browser session.

max_duration_in_seconds: Maximum recording duration in seconds.

Expand Down Expand Up @@ -315,7 +316,8 @@ async def start(
Start recording the browser session and return a replay ID.

Args:
framerate: Recording framerate in fps.
framerate: Recording framerate in fps. Values above 20 require GPU to be enabled on the
browser session.

max_duration_in_seconds: Maximum recording duration in seconds.

Expand Down
2 changes: 1 addition & 1 deletion src/kernel/types/browser_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class BrowserListParams(TypedDict, total=False):
"""Number of results to skip. Defaults to 0."""

query: str
"""Search browsers by session ID, profile ID, or proxy ID."""
"""Search browsers by session ID, profile ID, proxy ID, or pool name."""

status: Literal["active", "deleted", "all"]
"""Filter sessions by status.
Expand Down
5 changes: 4 additions & 1 deletion src/kernel/types/browsers/replay_start_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@

class ReplayStartParams(TypedDict, total=False):
framerate: int
"""Recording framerate in fps."""
"""Recording framerate in fps.

Values above 20 require GPU to be enabled on the browser session.
"""

max_duration_in_seconds: int
"""Maximum recording duration in seconds."""