Skip to content
Merged
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.84.0"
".": "0.85.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-904fd6fd50970ea07ec05c51b1ae0819ffb64cbf0921fff9daed6792b64f1dc9.yml
openapi_spec_hash: cbd6626bdac7beaa768abb346e03fb74
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-7b03462454d6fa8390eaebc1b411d3e160501bf96abb93b75d38dfc382d4ce51.yml
openapi_spec_hash: ba55400aafb4759cc06ec139fe528dfc
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.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)

### Features

* Add encrypted per-proxy CA bundle for BYO MITM proxies ([ea6d146](https://github.com/kernel/kernel-node-sdk/commit/ea6d146df79b2771a6ea633aff9c0ba7a249af55))
* Stabilize project lifecycle error codes ([ffe3238](https://github.com/kernel/kernel-node-sdk/commit/ffe32383fc01a2e79280ea52cd315d7dc3610f6e))

## 0.84.0 (2026-07-27)

Full Changelog: [v0.83.0...v0.84.0](https://github.com/kernel/kernel-node-sdk/compare/v0.83.0...v0.84.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.84.0",
"version": "0.85.0",
"description": "The official TypeScript library for the Kernel API",
"author": "Kernel <>",
"types": "dist/index.d.ts",
Expand Down
3 changes: 3 additions & 0 deletions src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1023,6 +1023,9 @@ export class Kernel {
credentials: API.Credentials = new API.Credentials(this);
/**
* Create and manage projects for resource isolation within an organization.
* When projects are disabled for the organization, project operations return
* `404` with code `projects_disabled`.
*
*/
projects: API.Projects = new API.Projects(this);
organization: API.Organization = new API.Organization(this);
Expand Down
2 changes: 2 additions & 0 deletions src/resources/projects/limits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import { path } from '../../internal/utils/path';

/**
* Create and manage projects for resource isolation within an organization.
* When projects are disabled for the organization, project operations return
* `404` with code `projects_disabled`.
*/
export class Limits extends APIResource {
/**
Expand Down
2 changes: 2 additions & 0 deletions src/resources/projects/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import { path } from '../../internal/utils/path';

/**
* Create and manage projects for resource isolation within an organization.
* When projects are disabled for the organization, project operations return
* `404` with code `projects_disabled`.
*/
export class Projects extends APIResource {
limits: LimitsAPI.Limits = new LimitsAPI.Limits(this._client);
Expand Down
32 changes: 32 additions & 0 deletions src/resources/proxies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,11 @@ export namespace ProxyCreateResponse {
*/
port: number;

/**
* Whether the proxy has a custom CA bundle configured.
*/
has_ca_bundle?: boolean;

/**
* Whether the proxy has a password.
*/
Expand Down Expand Up @@ -411,6 +416,11 @@ export namespace ProxyRetrieveResponse {
*/
port: number;

/**
* Whether the proxy has a custom CA bundle configured.
*/
has_ca_bundle?: boolean;

/**
* Whether the proxy has a password.
*/
Expand Down Expand Up @@ -567,6 +577,11 @@ export namespace ProxyUpdateResponse {
*/
port: number;

/**
* Whether the proxy has a custom CA bundle configured.
*/
has_ca_bundle?: boolean;

/**
* Whether the proxy has a password.
*/
Expand Down Expand Up @@ -723,6 +738,11 @@ export namespace ProxyListResponse {
*/
port: number;

/**
* Whether the proxy has a custom CA bundle configured.
*/
has_ca_bundle?: boolean;

/**
* Whether the proxy has a password.
*/
Expand Down Expand Up @@ -879,6 +899,11 @@ export namespace ProxyCheckResponse {
*/
port: number;

/**
* Whether the proxy has a custom CA bundle configured.
*/
has_ca_bundle?: boolean;

/**
* Whether the proxy has a password.
*/
Expand Down Expand Up @@ -1015,6 +1040,13 @@ export namespace ProxyCreateParams {
*/
port: number;

/**
* PEM-encoded CA certificate bundle the proxy re-signs upstream TLS with. Provide
* when the proxy terminates TLS (MITM) so the browser trusts its certificates. May
* contain multiple concatenated certificates.
*/
ca_bundle?: string;

/**
* Password for proxy authentication.
*/
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.84.0'; // x-release-please-version
export const VERSION = '0.85.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.2"
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.1.2.tgz#0bba2271feb7d458b0d31ad13625aaa4754431e2"
integrity sha512-w5JZcKgdhDOgOwm8H+KgbosopHMuGcl6qbulwjtz3SM7I7P3yW1eAjzMPLrIE+NQ9vjgANKHWeMHnrT0OXW1oA==
version "2.1.3"
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.1.3.tgz#1bf69aacdf6a4380ca17c284d9f928d4aa6401bc"
integrity sha512-DRdx5neNsG/QXbniLFWi2YmC/68oeOOmKz6zOjVk6ZS1ZLXgLIKqVEc6hWsmkjBbgii0SwaBTcJ5XKj5gzY/4A==
dependencies:
balanced-match "^1.0.0"

Expand Down
Loading