Skip to content

Commit 2c3af15

Browse files
release: 0.1.0-alpha.9
1 parent 1acc8d1 commit 2c3af15

File tree

6 files changed

+32
-5
lines changed

6 files changed

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

CHANGELOG.md

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

3+
## 0.1.0-alpha.9 (2025-12-05)
4+
5+
Full Changelog: [v0.1.0-alpha.8...v0.1.0-alpha.9](https://github.com/dedalus-labs/dedalus-sdk-typescript/compare/v0.1.0-alpha.8...v0.1.0-alpha.9)
6+
7+
### Features
8+
9+
* **api:** config update for dedalus-ai/dev ([8c11861](https://github.com/dedalus-labs/dedalus-sdk-typescript/commit/8c118618ec69f55a087a043abee618119a0606d2))
10+
* **api:** mcp server params ([8c60036](https://github.com/dedalus-labs/dedalus-sdk-typescript/commit/8c60036fbf24faa8cb214d374b1ff3e870729305))
11+
* **mcp:** add typescript check to code execution tool ([024c566](https://github.com/dedalus-labs/dedalus-sdk-typescript/commit/024c5668e2f25b52976ba1f8fc3630db0a6d0597))
12+
* **mcp:** handle code mode calls in the Stainless API ([5207502](https://github.com/dedalus-labs/dedalus-sdk-typescript/commit/52075024138a9341c20391f339c2f628a7dfb535))
13+
* **mcp:** return logs on code tool errors ([0c59c13](https://github.com/dedalus-labs/dedalus-sdk-typescript/commit/0c59c13635e51387660f81e8290a42b26ac2ec15))
14+
15+
16+
### Bug Fixes
17+
18+
* **api:** add thought signature ([4564ccb](https://github.com/dedalus-labs/dedalus-sdk-typescript/commit/4564ccb11385c0570266eee44798058d9f73fe48))
19+
* **mcp:** return correct lines on typescript errors ([4e10642](https://github.com/dedalus-labs/dedalus-sdk-typescript/commit/4e106423fa976e775f8d747b66514f1dd72eb294))
20+
21+
22+
### Chores
23+
24+
* **api:** migrate pkg manager to uv ([12a8f74](https://github.com/dedalus-labs/dedalus-sdk-typescript/commit/12a8f74e586a131a1cbd7a0dddfbb5da2a50e0a0))
25+
* **client:** fix logger property type ([a57767f](https://github.com/dedalus-labs/dedalus-sdk-typescript/commit/a57767f1f7b579882068f6f59a3694bb24981fc9))
26+
* **internal:** codegen related update ([1acc8d1](https://github.com/dedalus-labs/dedalus-sdk-typescript/commit/1acc8d1b39c3f006b11c31db7e82421a2c6edc29))
27+
* **internal:** upgrade eslint ([394adcd](https://github.com/dedalus-labs/dedalus-sdk-typescript/commit/394adcd67ceefa5c42d245e0ece3afaa1c844d96))
28+
* use latest @modelcontextprotocol/sdk ([ab3663d](https://github.com/dedalus-labs/dedalus-sdk-typescript/commit/ab3663ddb7d7f38e12c57f790319ef3561ba1974))
29+
330
## 0.1.0-alpha.8 (2025-11-26)
431

532
Full Changelog: [v0.1.0-alpha.7...v0.1.0-alpha.8](https://github.com/dedalus-labs/dedalus-sdk-typescript/compare/v0.1.0-alpha.7...v0.1.0-alpha.8)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dedalus-labs",
3-
"version": "0.1.0-alpha.8",
3+
"version": "0.1.0-alpha.9",
44
"description": "The official TypeScript library for the Dedalus API",
55
"author": "Dedalus <founders@dedaluslabs.ai>",
66
"types": "dist/index.d.ts",

packages/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dedalus-labs-mcp",
3-
"version": "0.1.0-alpha.8",
3+
"version": "0.1.0-alpha.9",
44
"description": "The official MCP Server for the Dedalus API",
55
"author": "Dedalus <founders@dedaluslabs.ai>",
66
"types": "dist/index.d.ts",

packages/mcp-server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const newMcpServer = () =>
3434
new McpServer(
3535
{
3636
name: 'dedalus_labs_api',
37-
version: '0.1.0-alpha.8',
37+
version: '0.1.0-alpha.9',
3838
},
3939
{ capabilities: { tools: {}, logging: {} } },
4040
);

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.1.0-alpha.8'; // x-release-please-version
1+
export const VERSION = '0.1.0-alpha.9'; // x-release-please-version

0 commit comments

Comments
 (0)