Skip to content
Open
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.85.0"
".": "0.86.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: 127
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-7b03462454d6fa8390eaebc1b411d3e160501bf96abb93b75d38dfc382d4ce51.yml
openapi_spec_hash: ba55400aafb4759cc06ec139fe528dfc
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-3d361d4878b48802a1dc486fa597b6b01ce23099d6627bcf836a849f0080c0c7.yml
openapi_spec_hash: f21df7b9241e2e8b8dc04fdae30a3e27
config_hash: 77ee715aa17061166f9a02b264a21b8d
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.86.0 (2026-08-01)

Full Changelog: [v0.85.0...v0.86.0](https://github.com/kernel/kernel-go-sdk/compare/v0.85.0...v0.86.0)

### Features

* Harden managed auth verification and login recovery ([00515a8](https://github.com/kernel/kernel-go-sdk/commit/00515a84e5554056c2bdf91ac83582289b9f21b8))
* Report the unified concurrency ceiling from the org limits endpoint ([f41ed59](https://github.com/kernel/kernel-go-sdk/commit/f41ed59da57f03f17dc5e5f8ad8bf0e778041f90))

## 0.85.0 (2026-07-29)

Full Changelog: [v0.84.0...v0.85.0](https://github.com/kernel/kernel-go-sdk/compare/v0.84.0...v0.85.0)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Or to pin the version:
<!-- x-release-please-start-version -->

```sh
go get -u 'github.com/kernel/kernel-go-sdk@v0.85.0'
go get -u 'github.com/kernel/kernel-go-sdk@v0.86.0'
```

<!-- x-release-please-end -->
Expand Down
8 changes: 8 additions & 0 deletions authconnection.go
Original file line number Diff line number Diff line change
Expand Up @@ -693,6 +693,9 @@ type ManagedAuthField struct {
Label string `json:"label"`
// Selector for the visible field, when available.
ObservedSelector string `json:"observed_selector" api:"nullable"`
// Whether the submitted value must replace an existing credential after explicit
// rejection.
ReplaceExisting bool `json:"replace_existing"`
// Whether this field is required.
Required bool `json:"required"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
Expand All @@ -702,6 +705,7 @@ type ManagedAuthField struct {
Type respjson.Field
Label respjson.Field
ObservedSelector respjson.Field
ReplaceExisting respjson.Field
Required respjson.Field
ExtraFields map[string]respjson.Field
raw string
Expand Down Expand Up @@ -1586,6 +1590,9 @@ type AuthConnectionFollowResponseManagedAuthStateField struct {
Label string `json:"label"`
// Selector for the visible field, when available.
ObservedSelector string `json:"observed_selector" api:"nullable"`
// Whether the submitted value must replace an existing credential after explicit
// rejection.
ReplaceExisting bool `json:"replace_existing"`
// Whether this field is required.
Required bool `json:"required"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
Expand All @@ -1595,6 +1602,7 @@ type AuthConnectionFollowResponseManagedAuthStateField struct {
Type respjson.Field
Label respjson.Field
ObservedSelector respjson.Field
ReplaceExisting respjson.Field
Required respjson.Field
ExtraFields map[string]respjson.Field
raw string
Expand Down
2 changes: 1 addition & 1 deletion internal/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

package internal

const PackageVersion = "0.85.0" // x-release-please-version
const PackageVersion = "0.86.0" // x-release-please-version
5 changes: 2 additions & 3 deletions projectlimit.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ type ProjectLimits struct {
// cap.
MaxConcurrentSessions int64 `json:"max_concurrent_sessions" api:"nullable"`
// Deprecated: pooled browsers now count toward `max_concurrent_sessions`. Always
// null once the unified concurrency limit is enabled for your organization.
// null.
//
// Deprecated: deprecated
MaxPooledSessions int64 `json:"max_pooled_sessions" api:"nullable"`
Expand Down Expand Up @@ -105,8 +105,7 @@ type UpdateProjectLimitsRequestParam struct {
// unchanged.
MaxConcurrentSessions param.Opt[int64] `json:"max_concurrent_sessions,omitzero"`
// Deprecated: pooled browsers now count toward `max_concurrent_sessions`. Requests
// that set this field are rejected with a 400 once the unified concurrency limit
// is enabled for your organization.
// that set this field are rejected with a 400.
//
// Deprecated: deprecated
MaxPooledSessions param.Opt[int64] `json:"max_pooled_sessions,omitzero"`
Expand Down
Loading