Skip to content

Commit b885fff

Browse files
authored
Merge pull request #6 from onkernel/release-please--branches--main--changes--next--components--sdk
release: 0.1.0-alpha.5
2 parents b8113dc + 26402d5 commit b885fff

File tree

7 files changed

+28
-6
lines changed

7 files changed

+28
-6
lines changed

.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.1.0-alpha.2"
2+
".": "0.1.0-alpha.5"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 4
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-d168b58fcf39dbd0458d132091793d3e2d0930070b7dda2d5f7f1baff20dd31b.yml
33
openapi_spec_hash: b7e0fd7ee1656d7dbad57209d1584d92
4-
config_hash: 75c0b894355904e2a91b70445072d4b4
4+
config_hash: c2bc5253d8afd6d67e031f73353c9b22

CHANGELOG.md

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

3+
## 0.1.0-alpha.5 (2025-05-10)
4+
5+
Full Changelog: [v0.1.0-alpha.4...v0.1.0-alpha.5](https://github.com/onkernel/kernel-node-sdk/compare/v0.1.0-alpha.4...v0.1.0-alpha.5)
6+
7+
### Features
8+
9+
* **api:** update via SDK Studio ([f5be580](https://github.com/onkernel/kernel-node-sdk/commit/f5be580d5f0023b57c9b1a63bb7b6dedc57deca9))
10+
* **api:** update via SDK Studio ([7d31661](https://github.com/onkernel/kernel-node-sdk/commit/7d316613cf880a22e2a17946089c78eb878bcbc6))
11+
* **api:** update via SDK Studio ([68f457e](https://github.com/onkernel/kernel-node-sdk/commit/68f457eb0f66b5b243e682677b0fa34eee685853))
12+
13+
14+
### Bug Fixes
15+
16+
* **client:** always overwrite when merging headers ([69f15d8](https://github.com/onkernel/kernel-node-sdk/commit/69f15d855463e7dfecc009eb67273371bdd5efff))
17+
18+
19+
### Chores
20+
21+
* configure new SDK language ([bc19eee](https://github.com/onkernel/kernel-node-sdk/commit/bc19eeeb0eea066f8ad69fd1f03038f839108a31))
22+
* **internal:** codegen related update ([82bfbe8](https://github.com/onkernel/kernel-node-sdk/commit/82bfbe8710fec8dd7a834e1cd4a0495195ae4840))
23+
* update SDK settings ([c9c482c](https://github.com/onkernel/kernel-node-sdk/commit/c9c482c8ae564005abe75f46300cebea44c26f8f))
24+
* update SDK settings ([25c177f](https://github.com/onkernel/kernel-node-sdk/commit/25c177ff56b479a6389c79a72d696b4b0bef8f69))
25+
326
## 0.1.0-alpha.2 (2025-05-09)
427

528
Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/onkernel/kernel-node-sdk/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This library provides convenient access to the Kernel REST API from server-side TypeScript or JavaScript.
66

7-
The full API of this library can be found in [api.md](api.md).
7+
The REST API documentation can be found on [docs.onkernel.com](https://docs.onkernel.com). The full API of this library can be found in [api.md](api.md).
88

99
It is generated with [Stainless](https://www.stainless.com/).
1010

src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ export class Kernel {
685685
return new KernelApp(name);
686686
}
687687

688-
public static exportRegistry(entrypointRelpath: string): string {
688+
public static exportRegistry(): string {
689689
return appRegistry.exportJSON();
690690
}
691691

src/core/app-framework.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ export interface KernelActionJson {
2020
name: string;
2121
}
2222

23-
// App definition
2423
export class KernelApp {
2524
name: string;
2625
actions: Map<string, KernelAction> = new Map();

src/internal/headers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ function* iterateHeaders(headers: HeadersLike): IterableIterator<readonly [strin
7171
export const buildHeaders = (newHeaders: HeadersLike[]): NullableHeaders => {
7272
const targetHeaders = new Headers();
7373
const nullHeaders = new Set<string>();
74-
const seenHeaders = new Set<string>();
7574
for (const headers of newHeaders) {
75+
const seenHeaders = new Set<string>();
7676
for (const [name, value] of iterateHeaders(headers)) {
7777
const lowerName = name.toLowerCase();
7878
if (!seenHeaders.has(lowerName)) {

0 commit comments

Comments
 (0)