File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020 if : github.event_name == 'push' || github.event.pull_request.head.repo.fork
2121
2222 steps :
23- - uses : actions/checkout@v4
23+ - uses : actions/checkout@v6
2424
2525 - name : Setup go
2626 uses : actions/setup-go@v5
3535 runs-on : ${{ github.repository == 'stainless-sdks/kernel-go' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
3636 if : github.event_name == 'push' || github.event.pull_request.head.repo.fork
3737 steps :
38- - uses : actions/checkout@v4
38+ - uses : actions/checkout@v6
3939
4040 - name : Setup go
4141 uses : actions/setup-go@v5
Original file line number Diff line number Diff line change 11{
2- "." : " 0.25 .0"
2+ "." : " 0.26 .0"
33}
Original file line number Diff line number Diff line change 11configured_endpoints : 91
2- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-4f5307643555b7917e8681b1966ae0b99f770cf59805e2f917ec7528edf11ba8 .yml
3- openapi_spec_hash : 873a9aa3a88b6cec1ad94f848eeb1c45
4- config_hash : 20337f7888852c165d099faa7589c90a
2+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-fc2c80b398a8dd511010ae7cda5e21c353e388ee130aa288974b47af4208b5b8 .yml
3+ openapi_spec_hash : 5e06586dbbb9fce12b907f4e32497006
4+ config_hash : cc7fdd701d995d4b3456d77041c604cf
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.26.0 (2026-01-17)
4+
5+ Full Changelog: [ v0.25.0...v0.26.0] ( https://github.com/kernel/kernel-go-sdk/compare/v0.25.0...v0.26.0 )
6+
7+ ### Features
8+
9+ * Auth agents auth check URL ([ b7ecbfe] ( https://github.com/kernel/kernel-go-sdk/commit/b7ecbfe68333179633c445aa1eed551f8b0a11d8 ) )
10+
11+
12+ ### Bug Fixes
13+
14+ * ** docs:** add missing pointer prefix to api.md return types ([ ec3f3d7] ( https://github.com/kernel/kernel-go-sdk/commit/ec3f3d7baa03b861afb53e3c12b1d32aba02b7e0 ) )
15+ * ** stainless:** use @onkernel/sdk package name for TypeScript SDK ([ 3a4991d] ( https://github.com/kernel/kernel-go-sdk/commit/3a4991d1ef8e51bc1d3909cd6f4725448f765530 ) )
16+ * use setup-go@v6 (not checkout@v6) ([ f1e6ffc] ( https://github.com/kernel/kernel-go-sdk/commit/f1e6ffc8352c405647fb9d4d07299a465a241bad ) )
17+
18+
19+ ### Chores
20+
21+ * ** internal:** update ` actions/checkout ` version ([ 5a2a7d4] ( https://github.com/kernel/kernel-go-sdk/commit/5a2a7d471453081cc84a4fb987c6f43c36bb16ac ) )
22+
323## 0.25.0 (2026-01-16)
424
525Full Changelog: [ v0.24.0...v0.25.0] ( https://github.com/kernel/kernel-go-sdk/compare/v0.24.0...v0.25.0 )
Original file line number Diff line number Diff line change 66
77<!-- x-release-please-end -->
88
9- The Kernel Go library provides convenient access to the [ Kernel REST API] ( https://www. kernel.sh/docs/api-reference )
9+ The Kernel Go library provides convenient access to the [ Kernel REST API] ( https://kernel.sh/docs )
1010from applications written in Go.
1111
1212It is generated with [ Stainless] ( https://www.stainless.com/ ) .
@@ -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.25 .0'
31+ go get -u ' github.com/kernel/kernel-go-sdk@v0.26 .0'
3232```
3333
3434<!-- x-release-please-end -->
Original file line number Diff line number Diff line change @@ -310,6 +310,9 @@ type AuthAgent struct {
310310 HasSelectors bool `json:"has_selectors"`
311311 // When the last authentication check was performed
312312 LastAuthCheckAt time.Time `json:"last_auth_check_at" format:"date-time"`
313+ // URL where the browser landed after successful login. Query parameters and
314+ // fragments are stripped for privacy.
315+ PostLoginURL string `json:"post_login_url" format:"uri"`
313316 // JSON contains metadata for fields, check presence with [respjson.Field.Valid].
314317 JSON struct {
315318 ID respjson.Field
@@ -322,6 +325,7 @@ type AuthAgent struct {
322325 CredentialName respjson.Field
323326 HasSelectors respjson.Field
324327 LastAuthCheckAt respjson.Field
328+ PostLoginURL respjson.Field
325329 ExtraFields map [string ]respjson.Field
326330 raw string
327331 } `json:"-"`
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 22
33package internal
44
5- const PackageVersion = "0.25 .0" // x-release-please-version
5+ const PackageVersion = "0.26 .0" // x-release-please-version
You can’t perform that action at this time.
0 commit comments