Skip to content

Commit 51b4652

Browse files
authored
Merge pull request #68 from kernel/release-please--branches--main--changes--next
release: 0.32.0
2 parents 8edced9 + dd28560 commit 51b4652

7 files changed

Lines changed: 20 additions & 6 deletions

File tree

.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-go-sdk/compare/v0.31.1...v0.32.0)
6+
7+
### Features
8+
9+
* **auth:** add reauth circuit breaker logic ([9cfbd02](https://github.com/kernel/kernel-go-sdk/commit/9cfbd021a7ecf10f4a037ce73e775c5dab2d8fa0))
10+
311
## 0.31.1 (2026-02-06)
412

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Or to pin the version:
2828
<!-- x-release-please-start-version -->
2929

3030
```sh
31-
go get -u 'github.com/kernel/kernel-go-sdk@v0.31.1'
31+
go get -u 'github.com/kernel/kernel-go-sdk@v0.32.0'
3232
```
3333

3434
<!-- x-release-please-end -->

agentauth.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,8 @@ type AuthAgent struct {
331331
// Whether automatic re-authentication is possible (has credential_id, selectors,
332332
// and login_url)
333333
CanReauth bool `json:"can_reauth"`
334+
// Reason why automatic re-authentication is or is not possible
335+
CanReauthReason string `json:"can_reauth_reason"`
334336
// Reference to credentials for managed auth. Use one of:
335337
//
336338
// - { name } for Kernel credentials
@@ -355,6 +357,7 @@ type AuthAgent struct {
355357
Status respjson.Field
356358
AllowedDomains respjson.Field
357359
CanReauth respjson.Field
360+
CanReauthReason respjson.Field
358361
Credential respjson.Field
359362
CredentialID respjson.Field
360363
HasSelectors respjson.Field

authconnection.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,8 @@ type ManagedAuth struct {
245245
// Whether automatic re-authentication is possible (has credential, selectors, and
246246
// login_url)
247247
CanReauth bool `json:"can_reauth"`
248+
// Reason why automatic re-authentication is or is not possible
249+
CanReauthReason string `json:"can_reauth_reason"`
248250
// Reference to credentials for managed auth. Use one of:
249251
//
250252
// - { name } for Kernel credentials
@@ -304,6 +306,7 @@ type ManagedAuth struct {
304306
Status respjson.Field
305307
AllowedDomains respjson.Field
306308
CanReauth respjson.Field
309+
CanReauthReason respjson.Field
307310
Credential respjson.Field
308311
DiscoveredFields respjson.Field
309312
ErrorMessage respjson.Field

internal/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
package internal
44

5-
const PackageVersion = "0.31.1" // x-release-please-version
5+
const PackageVersion = "0.32.0" // x-release-please-version

0 commit comments

Comments
 (0)