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.19.1"
".": "0.19.2"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 66
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-7897c6c3f33d12ebf6cb8b3694945169617631a52af8f5b393b77b1995ed0d72.yml
openapi_spec_hash: 1104c3ba0915f1708d7576345cafa9d0
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-d611cf8b0301a07123eab0e92498bea5ad69c5292b28aca1016c362cca0a0564.yml
openapi_spec_hash: 6d30f4ad9d61a7da8a75d543cf3d3d75
config_hash: 9421eb86b7f3f4b274f123279da3858e
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.19.2 (2025-11-17)

Full Changelog: [v0.19.1...v0.19.2](https://github.com/onkernel/kernel-python-sdk/compare/v0.19.1...v0.19.2)

### Features

* Feat increase max timeout to 72h ([edaaa14](https://github.com/onkernel/kernel-python-sdk/commit/edaaa1445d9551393ce0e026d70ca565890d70cb))

## 0.19.1 (2025-11-13)

Full Changelog: [v0.19.0...v0.19.1](https://github.com/onkernel/kernel-python-sdk/compare/v0.19.0...v0.19.1)
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.19.1"
version = "0.19.2"
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.19.1" # x-release-please-version
__version__ = "0.19.2" # 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 @@ -167,7 +167,7 @@ def create(
timeout_seconds: The number of seconds of inactivity before the browser session is terminated.
Only applicable to non-persistent browsers. Activity includes CDP connections
and live view connections. Defaults to 60 seconds. Minimum allowed is 10
seconds. Maximum allowed is 86400 (24 hours). We check for inactivity every 5
seconds. Maximum allowed is 259200 (72 hours). We check for inactivity every 5
seconds, so the actual timeout behavior you will see is +/- 5 seconds around the
specified value.

Expand Down Expand Up @@ -475,7 +475,7 @@ async def create(
timeout_seconds: The number of seconds of inactivity before the browser session is terminated.
Only applicable to non-persistent browsers. Activity includes CDP connections
and live view connections. Defaults to 60 seconds. Minimum allowed is 10
seconds. Maximum allowed is 86400 (24 hours). We check for inactivity every 5
seconds. Maximum allowed is 259200 (72 hours). We check for inactivity every 5
seconds, so the actual timeout behavior you will see is +/- 5 seconds around the
specified value.

Expand Down
2 changes: 1 addition & 1 deletion src/kernel/types/browser_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class BrowserCreateParams(TypedDict, total=False):

Only applicable to non-persistent browsers. Activity includes CDP connections
and live view connections. Defaults to 60 seconds. Minimum allowed is 10
seconds. Maximum allowed is 86400 (24 hours). We check for inactivity every 5
seconds. Maximum allowed is 259200 (72 hours). We check for inactivity every 5
seconds, so the actual timeout behavior you will see is +/- 5 seconds around the
specified value.
"""
Expand Down