Skip to content

Commit f0b6eac

Browse files
release: 2.7.0
1 parent 7c6e9ef commit f0b6eac

File tree

6 files changed

+31
-5
lines changed

6 files changed

+31
-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-
".": "2.6.1"
2+
".": "2.7.0"
33
}

CHANGELOG.md

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

3+
## 2.7.0 (2025-12-06)
4+
5+
Full Changelog: [v2.6.1...v2.7.0](https://github.com/dodopayments/dodopayments-typescript/compare/v2.6.1...v2.7.0)
6+
7+
### Features
8+
9+
* **mcp:** add typescript check to code execution tool ([2f56804](https://github.com/dodopayments/dodopayments-typescript/commit/2f56804c7cf6dc223c979e584c887eab9b604dde))
10+
* **mcp:** handle code mode calls in the Stainless API ([f6bd9d6](https://github.com/dodopayments/dodopayments-typescript/commit/f6bd9d6f4d0772381cadafb66c0d722c6312eb47))
11+
* **mcp:** return logs on code tool errors ([83027fa](https://github.com/dodopayments/dodopayments-typescript/commit/83027faac8152d5b77daadfd27d6e7faff357270))
12+
13+
14+
### Bug Fixes
15+
16+
* **mcp:** correct code tool API endpoint ([afe32e3](https://github.com/dodopayments/dodopayments-typescript/commit/afe32e33cb2cd739e08b64793cec95d5042cc917))
17+
* **mcp:** return correct lines on typescript errors ([3b3812a](https://github.com/dodopayments/dodopayments-typescript/commit/3b3812adfe4dcef428aa5bdc5d322f163e5b9df3))
18+
* **mcp:** return tool execution error on api error ([f07b9bd](https://github.com/dodopayments/dodopayments-typescript/commit/f07b9bd918bbc2a1204e602f9372520ac8714014))
19+
20+
21+
### Chores
22+
23+
* **client:** fix logger property type ([b8287ca](https://github.com/dodopayments/dodopayments-typescript/commit/b8287cae23381f54b8dece0208b7f447dee991d5))
24+
* **internal:** codegen related update ([7c6e9ef](https://github.com/dodopayments/dodopayments-typescript/commit/7c6e9ef24f57274b326fdffacc8c88ffb82f1010))
25+
* **internal:** codegen related update ([0c4f3cb](https://github.com/dodopayments/dodopayments-typescript/commit/0c4f3cbd22e4e3ff0281c8354ad05d56d199a7d9))
26+
* **internal:** upgrade eslint ([1087217](https://github.com/dodopayments/dodopayments-typescript/commit/1087217168c4b4a3230cee92643e7f248c6fa103))
27+
* use latest @modelcontextprotocol/sdk ([5ee0582](https://github.com/dodopayments/dodopayments-typescript/commit/5ee05822a8084f85a65deee940c3fff80743a6b4))
28+
329
## 2.6.1 (2025-11-26)
430

531
Full Changelog: [v2.6.0...v2.6.1](https://github.com/dodopayments/dodopayments-typescript/compare/v2.6.0...v2.6.1)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dodopayments",
3-
"version": "2.6.1",
3+
"version": "2.7.0",
44
"description": "The official TypeScript library for the Dodo Payments API",
55
"author": "Dodo Payments <[email protected]>",
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": "dodopayments-mcp",
3-
"version": "2.6.1",
3+
"version": "2.7.0",
44
"description": "The official MCP Server for the Dodo Payments API",
55
"author": "Dodo Payments <[email protected]>",
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: 'dodopayments_api',
37-
version: '2.6.1',
37+
version: '2.7.0',
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 = '2.6.1'; // x-release-please-version
1+
export const VERSION = '2.7.0'; // x-release-please-version

0 commit comments

Comments
 (0)