Skip to content

Commit 7235855

Browse files
authored
Merge pull request #92 from kernel/release-please--branches--main--changes--next--components--sdk
release: 0.44.0
2 parents f3704ee + 849fb87 commit 7235855

18 files changed

Lines changed: 455 additions & 66 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
name: CI
22
on:
33
push:
4-
branches-ignore:
5-
- 'generated'
6-
- 'codegen/**'
7-
- 'integrated/**'
8-
- 'stl-preview-head/**'
9-
- 'stl-preview-base/**'
4+
branches:
5+
- '**'
6+
- '!integrated/**'
7+
- '!stl-preview-head/**'
8+
- '!stl-preview-base/**'
9+
- '!generated'
10+
- '!codegen/**'
11+
- 'codegen/stl/**'
1012
pull_request:
1113
branches-ignore:
1214
- 'stl-preview-head/**'

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.43.0"
2+
".": "0.44.0"
33
}

.stats.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 103
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-bda5e58fa0bbd08761f27a1e0edbc602c44141ac9483bf6c96d52b7f4d10d9a7.yml
3-
openapi_spec_hash: 10833b36358e8cda023e5bb0abeab0ba
4-
config_hash: cff4d43372b6fa66b64e2d4150f6aa76
1+
configured_endpoints: 104
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-bb2ac8e0d3a1c08e8afcbcbad7cb733d0f84bd22a8d233c1ec3100a01ee078ae.yml
3+
openapi_spec_hash: a83f7d1c422c85d6dc6158af7afe1d09
4+
config_hash: 16e4457a0bb26e98a335a1c2a572290a

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## 0.44.0 (2026-03-20)
4+
5+
Full Changelog: [v0.43.0...v0.44.0](https://github.com/kernel/kernel-node-sdk/compare/v0.43.0...v0.44.0)
6+
7+
### Features
8+
9+
* Add GPU viewport presets and GPU encoder defaults ([693e4f6](https://github.com/kernel/kernel-node-sdk/commit/693e4f6cdd4d2db7524c2ff22ec99c2013cf6279))
10+
* Adds description to OAS spec for docs about delta_x, delta_y ([7aa9d1e](https://github.com/kernel/kernel-node-sdk/commit/7aa9d1eed6890de62f92edac3bbccff8565b1d57))
11+
* Drop headless GPU support and disable pooling ([762670e](https://github.com/kernel/kernel-node-sdk/commit/762670ef4e3c6126a4c541eb67f49b2565504e40))
12+
* Enhance managed authentication with CUA support and new features ([2d89c68](https://github.com/kernel/kernel-node-sdk/commit/2d89c683d2cb4249dfea19407bc5064dd8bb9131))
13+
* expose smooth drag mouse movement via public API ([b9911dd](https://github.com/kernel/kernel-node-sdk/commit/b9911dd1c37610192c9ef70e1344f7b93a191f24))
14+
* Rename hardware acceleration UI/docs wording to GPU acceleration ([1d22910](https://github.com/kernel/kernel-node-sdk/commit/1d22910d61a9baec560384fd0485fc0bb9216371))
15+
16+
17+
### Chores
18+
19+
* **internal:** tweak CI branches ([256d3ff](https://github.com/kernel/kernel-node-sdk/commit/256d3ff87c9744a8017a4fa93e21ec05118dbfca))
20+
321
## 0.43.0 (2026-03-10)
422

523
Full Changelog: [v0.42.1...v0.43.0](https://github.com/kernel/kernel-node-sdk/compare/v0.42.1...v0.43.0)

api.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ Types:
214214
- <code><a href="./src/resources/auth/connections.ts">LoginResponse</a></code>
215215
- <code><a href="./src/resources/auth/connections.ts">ManagedAuth</a></code>
216216
- <code><a href="./src/resources/auth/connections.ts">ManagedAuthCreateRequest</a></code>
217+
- <code><a href="./src/resources/auth/connections.ts">ManagedAuthUpdateRequest</a></code>
217218
- <code><a href="./src/resources/auth/connections.ts">SubmitFieldsRequest</a></code>
218219
- <code><a href="./src/resources/auth/connections.ts">SubmitFieldsResponse</a></code>
219220
- <code><a href="./src/resources/auth/connections.ts">ConnectionFollowResponse</a></code>
@@ -222,6 +223,7 @@ Methods:
222223

223224
- <code title="post /auth/connections">client.auth.connections.<a href="./src/resources/auth/connections.ts">create</a>({ ...params }) -> ManagedAuth</code>
224225
- <code title="get /auth/connections/{id}">client.auth.connections.<a href="./src/resources/auth/connections.ts">retrieve</a>(id) -> ManagedAuth</code>
226+
- <code title="patch /auth/connections/{id}">client.auth.connections.<a href="./src/resources/auth/connections.ts">update</a>(id, { ...params }) -> ManagedAuth</code>
225227
- <code title="get /auth/connections">client.auth.connections.<a href="./src/resources/auth/connections.ts">list</a>({ ...params }) -> ManagedAuthsOffsetPagination</code>
226228
- <code title="delete /auth/connections/{id}">client.auth.connections.<a href="./src/resources/auth/connections.ts">delete</a>(id) -> void</code>
227229
- <code title="get /auth/connections/{id}/events">client.auth.connections.<a href="./src/resources/auth/connections.ts">follow</a>(id) -> ConnectionFollowResponse</code>

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onkernel/sdk",
3-
"version": "0.43.0",
3+
"version": "0.44.0",
44
"description": "The official TypeScript library for the Kernel API",
55
"author": "Kernel <>",
66
"types": "dist/index.d.ts",

src/resources/auth/auth.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ import {
88
ConnectionListParams,
99
ConnectionLoginParams,
1010
ConnectionSubmitParams,
11+
ConnectionUpdateParams,
1112
Connections,
1213
LoginResponse,
1314
ManagedAuth,
1415
ManagedAuthCreateRequest,
16+
ManagedAuthUpdateRequest,
1517
ManagedAuthsOffsetPagination,
1618
SubmitFieldsRequest,
1719
SubmitFieldsResponse,
@@ -29,11 +31,13 @@ export declare namespace Auth {
2931
type LoginResponse as LoginResponse,
3032
type ManagedAuth as ManagedAuth,
3133
type ManagedAuthCreateRequest as ManagedAuthCreateRequest,
34+
type ManagedAuthUpdateRequest as ManagedAuthUpdateRequest,
3235
type SubmitFieldsRequest as SubmitFieldsRequest,
3336
type SubmitFieldsResponse as SubmitFieldsResponse,
3437
type ConnectionFollowResponse as ConnectionFollowResponse,
3538
type ManagedAuthsOffsetPagination as ManagedAuthsOffsetPagination,
3639
type ConnectionCreateParams as ConnectionCreateParams,
40+
type ConnectionUpdateParams as ConnectionUpdateParams,
3741
type ConnectionListParams as ConnectionListParams,
3842
type ConnectionLoginParams as ConnectionLoginParams,
3943
type ConnectionSubmitParams as ConnectionSubmitParams,

0 commit comments

Comments
 (0)