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.41.0"
".": "0.42.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: 101
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-586ddc36cd621b3705138de66a0e7d28d1c1485064aa85ce09ce24edb50003ef.yml
openapi_spec_hash: 8e8d4bd31e4920303e7ec9ce313fb1ec
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-a935c8aae21f8ddb83ea5e289034df12cbde88d432fa2b287629814bb3f58bb6.yml
openapi_spec_hash: df3189b9728372f01662a19c060bcbc5
config_hash: 81f143f4bee47ae7b0b8357551babadf
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.42.0 (2026-03-02)

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

### Features

* Neil/kernel 1052 deployments list endpoint ([45ba6bb](https://github.com/kernel/kernel-python-sdk/commit/45ba6bbba291e9cca45a30c8ba2b1fb57f1f10bb))

## 0.41.0 (2026-02-27)

Full Changelog: [v0.40.0...v0.41.0](https://github.com/kernel/kernel-python-sdk/compare/v0.40.0...v0.41.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.41.0"
version = "0.42.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.41.0" # x-release-please-version
__version__ = "0.42.0" # x-release-please-version
8 changes: 8 additions & 0 deletions src/kernel/resources/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ def list(
app_name: str | Omit = omit,
limit: int | Omit = omit,
offset: int | Omit = omit,
query: str | Omit = omit,
version: 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.
Expand All @@ -67,6 +68,8 @@ def list(

offset: Offset the number of apps to return.

query: Search apps by name.

version: Filter results by version label.

extra_headers: Send extra headers
Expand All @@ -90,6 +93,7 @@ def list(
"app_name": app_name,
"limit": limit,
"offset": offset,
"query": query,
"version": version,
},
app_list_params.AppListParams,
Expand Down Expand Up @@ -125,6 +129,7 @@ def list(
app_name: str | Omit = omit,
limit: int | Omit = omit,
offset: int | Omit = omit,
query: str | Omit = omit,
version: 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.
Expand All @@ -144,6 +149,8 @@ def list(

offset: Offset the number of apps to return.

query: Search apps by name.

version: Filter results by version label.

extra_headers: Send extra headers
Expand All @@ -167,6 +174,7 @@ def list(
"app_name": app_name,
"limit": limit,
"offset": offset,
"query": query,
"version": version,
},
app_list_params.AppListParams,
Expand Down
3 changes: 3 additions & 0 deletions src/kernel/types/app_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,8 @@ class AppListParams(TypedDict, total=False):
offset: int
"""Offset the number of apps to return."""

query: str
"""Search apps by name."""

version: str
"""Filter results by version label."""
2 changes: 2 additions & 0 deletions tests/api_resources/test_apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ def test_method_list_with_all_params(self, client: Kernel) -> None:
app_name="app_name",
limit=1,
offset=0,
query="query",
version="version",
)
assert_matches_type(SyncOffsetPagination[AppListResponse], app, path=["response"])
Expand Down Expand Up @@ -76,6 +77,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncKernel) -> N
app_name="app_name",
limit=1,
offset=0,
query="query",
version="version",
)
assert_matches_type(AsyncOffsetPagination[AppListResponse], app, path=["response"])
Expand Down