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.68.0"
".": "0.69.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: 120
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-d26459bd3514237e8d757be3cbdc76ca62f6083504b85601e57db830888964f7.yml
openapi_spec_hash: 5dd151a8099398819a97692c1c60c3c6
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-cde481b2f320ce48f83db84ae96226b0e7568146c9387c4fefebf286ecb0dd0a.yml
openapi_spec_hash: 6bd86d767290fcd7e2a6aae26dff5417
config_hash: 03c7e57f268c750e2415831662e95969
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.69.0 (2026-06-18)

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

### Features

* Add free-text search to remaining paginated list endpoints ([b34f843](https://github.com/kernel/kernel-python-sdk/commit/b34f843f664307beeb23ec96a1162ee70fd3df1e))

## 0.68.0 (2026-06-15)

Full Changelog: [v0.67.0...v0.68.0](https://github.com/kernel/kernel-python-sdk/compare/v0.67.0...v0.68.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.68.0"
version = "0.69.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.68.0" # x-release-please-version
__version__ = "0.69.0" # x-release-please-version
8 changes: 8 additions & 0 deletions src/kernel/resources/auth/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,7 @@ def list(
limit: int | Omit = omit,
offset: int | Omit = omit,
profile_name: str | Omit = omit,
query: str | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
Expand All @@ -329,6 +330,8 @@ def list(

profile_name: Filter by profile name

query: Search auth connections by ID, domain, or profile name.

extra_headers: Send extra headers

extra_query: Add additional query parameters to the request
Expand All @@ -351,6 +354,7 @@ def list(
"limit": limit,
"offset": offset,
"profile_name": profile_name,
"query": query,
},
connection_list_params.ConnectionListParams,
),
Expand Down Expand Up @@ -827,6 +831,7 @@ def list(
limit: int | Omit = omit,
offset: int | Omit = omit,
profile_name: str | Omit = omit,
query: str | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
Expand All @@ -846,6 +851,8 @@ def list(

profile_name: Filter by profile name

query: Search auth connections by ID, domain, or profile name.

extra_headers: Send extra headers

extra_query: Add additional query parameters to the request
Expand All @@ -868,6 +875,7 @@ def list(
"limit": limit,
"offset": offset,
"profile_name": profile_name,
"query": query,
},
connection_list_params.ConnectionListParams,
),
Expand Down
8 changes: 8 additions & 0 deletions src/kernel/resources/browser_pools.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ def list(
*,
limit: int | Omit = omit,
offset: int | Omit = omit,
query: str | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
Expand All @@ -345,6 +346,8 @@ def list(

offset: Offset the number of browser pools to return.

query: Search browser pools by name or ID.

extra_headers: Send extra headers

extra_query: Add additional query parameters to the request
Expand All @@ -365,6 +368,7 @@ def list(
{
"limit": limit,
"offset": offset,
"query": query,
},
browser_pool_list_params.BrowserPoolListParams,
),
Expand Down Expand Up @@ -851,6 +855,7 @@ def list(
*,
limit: int | Omit = omit,
offset: int | Omit = omit,
query: str | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
Expand All @@ -866,6 +871,8 @@ def list(

offset: Offset the number of browser pools to return.

query: Search browser pools by name or ID.

extra_headers: Send extra headers

extra_query: Add additional query parameters to the request
Expand All @@ -886,6 +893,7 @@ def list(
{
"limit": limit,
"offset": offset,
"query": query,
},
browser_pool_list_params.BrowserPoolListParams,
),
Expand Down
8 changes: 8 additions & 0 deletions src/kernel/resources/credential_providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ def list(
*,
limit: int | Omit = omit,
offset: int | Omit = omit,
query: str | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
Expand All @@ -215,6 +216,8 @@ def list(

offset: Offset the number of credential providers to return.

query: Search credential providers by name or ID.

extra_headers: Send extra headers

extra_query: Add additional query parameters to the request
Expand All @@ -235,6 +238,7 @@ def list(
{
"limit": limit,
"offset": offset,
"query": query,
},
credential_provider_list_params.CredentialProviderListParams,
),
Expand Down Expand Up @@ -514,6 +518,7 @@ def list(
*,
limit: int | Omit = omit,
offset: int | Omit = omit,
query: str | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
Expand All @@ -529,6 +534,8 @@ def list(

offset: Offset the number of credential providers to return.

query: Search credential providers by name or ID.

extra_headers: Send extra headers

extra_query: Add additional query parameters to the request
Expand All @@ -549,6 +556,7 @@ def list(
{
"limit": limit,
"offset": offset,
"query": query,
},
credential_provider_list_params.CredentialProviderListParams,
),
Expand Down
8 changes: 8 additions & 0 deletions src/kernel/resources/credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ def list(
domain: str | Omit = omit,
limit: int | Omit = omit,
offset: int | Omit = omit,
query: str | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
Expand All @@ -223,6 +224,8 @@ def list(

offset: Number of results to skip

query: Search credentials by name, domain, or ID.

extra_headers: Send extra headers

extra_query: Add additional query parameters to the request
Expand All @@ -244,6 +247,7 @@ def list(
"domain": domain,
"limit": limit,
"offset": offset,
"query": query,
},
credential_list_params.CredentialListParams,
),
Expand Down Expand Up @@ -501,6 +505,7 @@ def list(
domain: str | Omit = omit,
limit: int | Omit = omit,
offset: int | Omit = omit,
query: str | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
Expand All @@ -519,6 +524,8 @@ def list(

offset: Number of results to skip

query: Search credentials by name, domain, or ID.

extra_headers: Send extra headers

extra_query: Add additional query parameters to the request
Expand All @@ -540,6 +547,7 @@ def list(
"domain": domain,
"limit": limit,
"offset": offset,
"query": query,
},
credential_list_params.CredentialListParams,
),
Expand Down
8 changes: 8 additions & 0 deletions src/kernel/resources/deployments.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ def list(
app_version: str | Omit = omit,
limit: int | Omit = omit,
offset: int | Omit = omit,
query: str | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
Expand All @@ -183,6 +184,8 @@ def list(

offset: Offset the number of deployments to return.

query: Search deployments by ID or app name.

extra_headers: Send extra headers

extra_query: Add additional query parameters to the request
Expand All @@ -205,6 +208,7 @@ def list(
"app_version": app_version,
"limit": limit,
"offset": offset,
"query": query,
},
deployment_list_params.DeploymentListParams,
),
Expand Down Expand Up @@ -429,6 +433,7 @@ def list(
app_version: str | Omit = omit,
limit: int | Omit = omit,
offset: int | Omit = omit,
query: str | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
Expand All @@ -449,6 +454,8 @@ def list(

offset: Offset the number of deployments to return.

query: Search deployments by ID or app name.

extra_headers: Send extra headers

extra_query: Add additional query parameters to the request
Expand All @@ -471,6 +478,7 @@ def list(
"app_version": app_version,
"limit": limit,
"offset": offset,
"query": query,
},
deployment_list_params.DeploymentListParams,
),
Expand Down
8 changes: 8 additions & 0 deletions src/kernel/resources/extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ def list(
*,
limit: int | Omit = omit,
offset: int | Omit = omit,
query: str | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
Expand All @@ -77,6 +78,8 @@ def list(

offset: Offset the number of extensions to return.

query: Search extensions by name or ID.

extra_headers: Send extra headers

extra_query: Add additional query parameters to the request
Expand All @@ -97,6 +100,7 @@ def list(
{
"limit": limit,
"offset": offset,
"query": query,
},
extension_list_params.ExtensionListParams,
),
Expand Down Expand Up @@ -300,6 +304,7 @@ def list(
*,
limit: int | Omit = omit,
offset: int | Omit = omit,
query: str | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
Expand All @@ -315,6 +320,8 @@ def list(

offset: Offset the number of extensions to return.

query: Search extensions by name or ID.

extra_headers: Send extra headers

extra_query: Add additional query parameters to the request
Expand All @@ -335,6 +342,7 @@ def list(
{
"limit": limit,
"offset": offset,
"query": query,
},
extension_list_params.ExtensionListParams,
),
Expand Down
8 changes: 8 additions & 0 deletions src/kernel/resources/invocations.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ def list(
deployment_id: str | Omit = omit,
limit: int | Omit = omit,
offset: int | Omit = omit,
query: str | Omit = omit,
since: str | Omit = omit,
status: Literal["queued", "running", "succeeded", "failed"] | Omit = omit,
version: str | Omit = omit,
Expand All @@ -229,6 +230,8 @@ def list(

offset: Offset the number of invocations to return.

query: Search invocations by ID, app name, or action name.

since: Show invocations that have started since the given time (RFC timestamps or
durations like 5m).

Expand Down Expand Up @@ -259,6 +262,7 @@ def list(
"deployment_id": deployment_id,
"limit": limit,
"offset": offset,
"query": query,
"since": since,
"status": status,
"version": version,
Expand Down Expand Up @@ -556,6 +560,7 @@ def list(
deployment_id: str | Omit = omit,
limit: int | Omit = omit,
offset: int | Omit = omit,
query: str | Omit = omit,
since: str | Omit = omit,
status: Literal["queued", "running", "succeeded", "failed"] | Omit = omit,
version: str | Omit = omit,
Expand All @@ -582,6 +587,8 @@ def list(

offset: Offset the number of invocations to return.

query: Search invocations by ID, app name, or action name.

since: Show invocations that have started since the given time (RFC timestamps or
durations like 5m).

Expand Down Expand Up @@ -612,6 +619,7 @@ def list(
"deployment_id": deployment_id,
"limit": limit,
"offset": offset,
"query": query,
"since": since,
"status": status,
"version": version,
Expand Down
Loading
Loading