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.78.0"
".": "0.78.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: 127
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-1413d61d06059008b4c1e204c783d8b2e7dca9af23f6e3b6d2552493ea2d9853.yml
openapi_spec_hash: 80aca500caddd300cb03a6daf568fddb
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-92c776855f978ae03a778fbbac49bf1edc65852530644772c382838b6eab9fe5.yml
openapi_spec_hash: 4a9fbcb607be408ad646e207fe90687f
config_hash: 77ee715aa17061166f9a02b264a21b8d
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.78.1 (2026-07-15)

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

### Features

* Default dashboard browser pools to 25% fill rate ([6a4848b](https://github.com/kernel/kernel-python-sdk/commit/6a4848bf17e5caafbd1d04639f30e3c9f9904ff9))

## 0.78.0 (2026-07-13)

Full Changelog: [v0.76.0...v0.78.0](https://github.com/kernel/kernel-python-sdk/compare/v0.76.0...v0.78.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.78.0"
version = "0.78.1"
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.78.0" # x-release-please-version
__version__ = "0.78.1" # x-release-please-version
4 changes: 2 additions & 2 deletions src/kernel/resources/browser_pools.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def create(

extensions: List of browser extensions to load into the session. Provide each by id or name.

fill_rate_per_minute: Percentage of the pool to fill per minute. Defaults to 10. The cap is 25 for
fill_rate_per_minute: Percentage of the pool to fill per minute. Defaults to 25. The cap is 25 for
most organizations but can be raised per-organization, so only the lower bound
is enforced here.

Expand Down Expand Up @@ -679,7 +679,7 @@ async def create(

extensions: List of browser extensions to load into the session. Provide each by id or name.

fill_rate_per_minute: Percentage of the pool to fill per minute. Defaults to 10. The cap is 25 for
fill_rate_per_minute: Percentage of the pool to fill per minute. Defaults to 25. The cap is 25 for
most organizations but can be raised per-organization, so only the lower bound
is enforced here.

Expand Down
2 changes: 1 addition & 1 deletion src/kernel/types/browser_pool_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class BrowserPoolCreateParams(TypedDict, total=False):
fill_rate_per_minute: int
"""Percentage of the pool to fill per minute.

Defaults to 10. The cap is 25 for most organizations but can be raised
Defaults to 25. The cap is 25 for most organizations but can be raised
per-organization, so only the lower bound is enforced here.
"""

Expand Down
Loading