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.84.0"
".": "0.85.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-904fd6fd50970ea07ec05c51b1ae0819ffb64cbf0921fff9daed6792b64f1dc9.yml
openapi_spec_hash: cbd6626bdac7beaa768abb346e03fb74
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-32a5ef4f5def9dde3ed7acc2b6159b143194e224ceaad2dbbbcb766cac90602e.yml
openapi_spec_hash: 3f514f770bb352d98bd3dbcf865a077f
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.85.0 (2026-07-28)

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

### Features

* Add encrypted per-proxy CA bundle for BYO MITM proxies ([c3f4571](https://github.com/kernel/kernel-python-sdk/commit/c3f4571357f66bc38352169f603da1256ea5b152))

## 0.84.0 (2026-07-27)

Full Changelog: [v0.83.0...v0.84.0](https://github.com/kernel/kernel-python-sdk/compare/v0.83.0...v0.84.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.84.0"
version = "0.85.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.84.0" # x-release-please-version
__version__ = "0.85.0" # x-release-please-version
3 changes: 3 additions & 0 deletions src/kernel/types/proxy_check_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ class ConfigCustomProxyConfig(BaseModel):
port: int
"""Proxy port."""

has_ca_bundle: Optional[bool] = None
"""Whether the proxy has a custom CA bundle configured."""

has_password: Optional[bool] = None
"""Whether the proxy has a password."""

Expand Down
7 changes: 7 additions & 0 deletions src/kernel/types/proxy_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,13 @@ class ConfigCreateCustomProxyConfig(TypedDict, total=False):
port: Required[int]
"""Proxy port."""

ca_bundle: str
"""PEM-encoded CA certificate bundle the proxy re-signs upstream TLS with.

Provide when the proxy terminates TLS (MITM) so the browser trusts its
certificates. May contain multiple concatenated certificates.
"""

password: str
"""Password for proxy authentication."""

Expand Down
3 changes: 3 additions & 0 deletions src/kernel/types/proxy_create_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ class ConfigCustomProxyConfig(BaseModel):
port: int
"""Proxy port."""

has_ca_bundle: Optional[bool] = None
"""Whether the proxy has a custom CA bundle configured."""

has_password: Optional[bool] = None
"""Whether the proxy has a password."""

Expand Down
3 changes: 3 additions & 0 deletions src/kernel/types/proxy_list_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ class ConfigCustomProxyConfig(BaseModel):
port: int
"""Proxy port."""

has_ca_bundle: Optional[bool] = None
"""Whether the proxy has a custom CA bundle configured."""

has_password: Optional[bool] = None
"""Whether the proxy has a password."""

Expand Down
3 changes: 3 additions & 0 deletions src/kernel/types/proxy_retrieve_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ class ConfigCustomProxyConfig(BaseModel):
port: int
"""Proxy port."""

has_ca_bundle: Optional[bool] = None
"""Whether the proxy has a custom CA bundle configured."""

has_password: Optional[bool] = None
"""Whether the proxy has a password."""

Expand Down
3 changes: 3 additions & 0 deletions src/kernel/types/proxy_update_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ class ConfigCustomProxyConfig(BaseModel):
port: int
"""Proxy port."""

has_ca_bundle: Optional[bool] = None
"""Whether the proxy has a custom CA bundle configured."""

has_password: Optional[bool] = None
"""Whether the proxy has a password."""

Expand Down
Loading