Skip to content
Open
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.85.0"
".": "0.86.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: 127
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-7b03462454d6fa8390eaebc1b411d3e160501bf96abb93b75d38dfc382d4ce51.yml
openapi_spec_hash: ba55400aafb4759cc06ec139fe528dfc
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-7d774918a5bbe0a980a1dca0322e74d2b4e3d3372a2cbc9513e48f4b8b6abfa1.yml
openapi_spec_hash: 8007b5846ff01c221e29d467b1cb8aaf
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.86.0 (2026-07-31)

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

### Features

* Report the unified concurrency ceiling from the org limits endpoint ([63775d8](https://github.com/kernel/kernel-python-sdk/commit/63775d8640b52f7b26e40343f870370166ab53dc))

## 0.85.0 (2026-07-29)

Full Changelog: [v0.84.0...v0.85.0](https://github.com/kernel/kernel-python-sdk/compare/v0.84.0...v0.85.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.85.0"
version = "0.86.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.85.0" # x-release-please-version
__version__ = "0.86.0" # x-release-please-version
6 changes: 2 additions & 4 deletions src/kernel/resources/projects/limits.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,7 @@ def update(
unchanged.

max_pooled_sessions: Deprecated: pooled browsers now count toward `max_concurrent_sessions`. Requests
that set this field are rejected with a 400 once the unified concurrency limit
is enabled for your organization.
that set this field are rejected with a 400.

extra_headers: Send extra headers

Expand Down Expand Up @@ -233,8 +232,7 @@ async def update(
unchanged.

max_pooled_sessions: Deprecated: pooled browsers now count toward `max_concurrent_sessions`. Requests
that set this field are rejected with a 400 once the unified concurrency limit
is enabled for your organization.
that set this field are rejected with a 400.

extra_headers: Send extra headers

Expand Down
3 changes: 1 addition & 2 deletions src/kernel/types/projects/limit_update_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,5 @@ class LimitUpdateParams(TypedDict, total=False):
max_pooled_sessions: Optional[int]
"""Deprecated: pooled browsers now count toward `max_concurrent_sessions`.

Requests that set this field are rejected with a 400 once the unified
concurrency limit is enabled for your organization.
Requests that set this field are rejected with a 400.
"""
2 changes: 1 addition & 1 deletion src/kernel/types/projects/project_limits.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ class ProjectLimits(BaseModel):
max_pooled_sessions: Optional[int] = None
"""Deprecated: pooled browsers now count toward `max_concurrent_sessions`.

Always null once the unified concurrency limit is enabled for your organization.
Always null.
"""
Loading