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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.86.0 (2026-08-01)

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

### Features

* Harden managed auth verification and login recovery ([cc82869](https://github.com/kernel/kernel-node-sdk/commit/cc8286943eff0537e3875d7bcc9bf9cd017f2656))
* Report the unified concurrency ceiling from the org limits endpoint ([791aaa8](https://github.com/kernel/kernel-node-sdk/commit/791aaa802ad4d2037daf575826111d2711465907))


### Bug Fixes

* **stlc:** stop hand-edited CI workflows from blocking seals and builds ([1662249](https://github.com/kernel/kernel-node-sdk/commit/1662249ac1348575783e02ece590c371a1085097))

## 0.85.0 (2026-07-29)

Full Changelog: [v0.84.0...v0.85.0](https://github.com/kernel/kernel-node-sdk/compare/v0.84.0...v0.85.0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onkernel/sdk",
"version": "0.85.0",
"version": "0.86.0",
"description": "The official TypeScript library for the Kernel API",
"author": "Kernel <>",
"types": "dist/index.d.ts",
Expand Down
12 changes: 12 additions & 0 deletions src/resources/auth/connections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -697,6 +697,12 @@ export namespace ManagedAuth {
*/
observed_selector?: string | null;

/**
* Whether the submitted value must replace an existing credential after explicit
* rejection.
*/
replace_existing?: boolean;

/**
* Whether this field is required.
*/
Expand Down Expand Up @@ -1482,6 +1488,12 @@ export namespace ConnectionFollowResponse {
*/
observed_selector?: string | null;

/**
* Whether the submitted value must replace an existing credential after explicit
* rejection.
*/
replace_existing?: boolean;

/**
* Whether this field is required.
*/
Expand Down
9 changes: 3 additions & 6 deletions src/resources/projects/limits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ export interface ProjectLimits {

/**
* @deprecated Deprecated: pooled browsers now count toward
* `max_concurrent_sessions`. Always null once the unified concurrency limit is
* enabled for your organization.
* `max_concurrent_sessions`. Always null.
*/
max_pooled_sessions?: number | null;
}
Expand All @@ -81,8 +80,7 @@ export interface UpdateProjectLimitsRequest {

/**
* @deprecated 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.
* `max_concurrent_sessions`. Requests that set this field are rejected with a 400.
*/
max_pooled_sessions?: number | null;
}
Expand All @@ -103,8 +101,7 @@ export interface LimitUpdateParams {

/**
* @deprecated 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.
* `max_concurrent_sessions`. Requests that set this field are rejected with a 400.
*/
max_pooled_sessions?: number | null;
}
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '0.85.0'; // x-release-please-version
export const VERSION = '0.86.0'; // x-release-please-version
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1235,9 +1235,9 @@ baseline-browser-mapping@^2.9.0:
integrity sha512-B0xUquLkiGLgHhpPBqvl7GWegWBUNuujQ6kXd/r1U38ElPT6Ok8KZ8e+FpUGEc2ZoRQUzq/aUnaKFc/svWUGSg==

brace-expansion@^2.0.2:
version "2.1.3"
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.1.3.tgz#1bf69aacdf6a4380ca17c284d9f928d4aa6401bc"
integrity sha512-DRdx5neNsG/QXbniLFWi2YmC/68oeOOmKz6zOjVk6ZS1ZLXgLIKqVEc6hWsmkjBbgii0SwaBTcJ5XKj5gzY/4A==
version "2.1.4"
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.1.4.tgz#589dab11c0018d0366be64cd8bf12c8dbecc8326"
integrity sha512-hGfVzPxthbf3+2yjg/RBs60cB0FhqBS/zvdV/4wn4/BmN0bNMMHPc4V/BbFieqf1TKAGGAHnY4eSjajCl0f2Xg==
dependencies:
balanced-match "^1.0.0"

Expand Down
Loading