Skip to content

Commit b7a3f0e

Browse files
authored
Merge pull request #72 from kernel/release-please--branches--main--changes--next
release: 0.32.0
2 parents 20c6334 + f4acd76 commit b7a3f0e

File tree

7 files changed

+20
-6
lines changed

7 files changed

+20
-6
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.31.1"
2+
".": "0.32.0"
33
}

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 108
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-3fbe762c99e8a120c426ac22bc1fa257c9127d631b12a38a6440a37f52935543.yml
3-
openapi_spec_hash: 5a190df210ed90b20a71c5061ff43917
4-
config_hash: 38c9b3b355025daf9bb643040e4af94e
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-f967d3024897a6125d5d18c4577dbb2cc22d742d487e6a43165198685f992379.yml
3+
openapi_spec_hash: e1c40ef0aee3a79168eb9cc854a9e403
4+
config_hash: 3b1fbbb6bda0dac7e8b42e155cd7da56

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.32.0 (2026-02-07)
4+
5+
Full Changelog: [v0.31.1...v0.32.0](https://github.com/kernel/kernel-python-sdk/compare/v0.31.1...v0.32.0)
6+
7+
### Features
8+
9+
* **auth:** add reauth circuit breaker logic ([b65b6b6](https://github.com/kernel/kernel-python-sdk/commit/b65b6b6dc5cf0b0fdbe08bb1010970143c7e3b85))
10+
311
## 0.31.1 (2026-02-06)
412

513
Full Changelog: [v0.31.0...v0.31.1](https://github.com/kernel/kernel-python-sdk/compare/v0.31.0...v0.31.1)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "kernel"
3-
version = "0.31.1"
3+
version = "0.32.0"
44
description = "The official Python library for the kernel API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/kernel/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "kernel"
4-
__version__ = "0.31.1" # x-release-please-version
4+
__version__ = "0.32.0" # x-release-please-version

src/kernel/types/agents/auth_agent.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ class AuthAgent(BaseModel):
7676
and login_url)
7777
"""
7878

79+
can_reauth_reason: Optional[str] = None
80+
"""Reason why automatic re-authentication is or is not possible"""
81+
7982
credential: Optional[Credential] = None
8083
"""Reference to credentials for managed auth. Use one of:
8184

src/kernel/types/auth/managed_auth.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,9 @@ class ManagedAuth(BaseModel):
108108
login_url)
109109
"""
110110

111+
can_reauth_reason: Optional[str] = None
112+
"""Reason why automatic re-authentication is or is not possible"""
113+
111114
credential: Optional[Credential] = None
112115
"""Reference to credentials for managed auth. Use one of:
113116

0 commit comments

Comments
 (0)