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-7d774918a5bbe0a980a1dca0322e74d2b4e3d3372a2cbc9513e48f4b8b6abfa1.yml
openapi_spec_hash: 8007b5846ff01c221e29d467b1cb8aaf
config_hash: 77ee715aa17061166f9a02b264a21b8d
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.86.0 (2026-07-31)

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

### Features

* 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
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