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.109.0"
".": "0.110.0"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.110.0](https://github.com/kernel/kernel-python-sdk/compare/v0.109.0...v0.110.0) (2026-09-18)


### Features

* Add credential field labels to the API ([63de01f](https://github.com/kernel/kernel-python-sdk/commit/63de01fee886a6758fa613a279d6c401d32a0aff))

## [0.109.0](https://github.com/kernel/kernel-python-sdk/compare/v0.108.0...v0.109.0) (2026-09-17)


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.109.0"
version = "0.110.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.109.0" # x-release-please-version
__version__ = "0.110.0" # x-release-please-version
10 changes: 10 additions & 0 deletions src/kernel/types/vaults/credential_vault_field_definition.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

from typing import Optional

from ..._models import BaseModel
from .credential_vault_field_type import CredentialVaultFieldType

Expand Down Expand Up @@ -32,3 +34,11 @@ class CredentialVaultFieldDefinition(BaseModel):
never fill the seed. Custom algorithms, digits, periods, and form enrollment are
unsupported.
"""

label: Optional[str] = None
"""Optional human-readable display label.

It is returned as non-secret metadata and never affects value keys, updates, or
browser fills. Use single-line, trimmed display text without control or
formatting characters. The server enforces a 128-byte UTF-8 limit.
"""
8 changes: 8 additions & 0 deletions src/kernel/types/vaults/credential_vault_field_input_param.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ class CredentialVaultFieldInputParam(TypedDict, total=False):
unsupported.
"""

label: str
"""Optional human-readable display label.

It is returned as non-secret metadata and never affects value keys, updates, or
browser fills. Use single-line, trimmed display text without control or
formatting characters. The server enforces a 128-byte UTF-8 limit.
"""

required: bool

sensitive: bool
Expand Down
2 changes: 2 additions & 0 deletions tests/api_resources/vaults/test_items.py
Original file line number Diff line number Diff line change
Expand Up @@ -1167,6 +1167,7 @@ def test_method_upsert_with_all_params_overload_3(self, client: Kernel) -> None:
{
"name": "name",
"type": "text",
"label": "label",
"required": True,
"sensitive": True,
"value": "x",
Expand Down Expand Up @@ -2408,6 +2409,7 @@ async def test_method_upsert_with_all_params_overload_3(self, async_client: Asyn
{
"name": "name",
"type": "text",
"label": "label",
"required": True,
"sensitive": True,
"value": "x",
Expand Down
Loading