Skip to content

Commit fb12f77

Browse files
release: 0.25.0
1 parent 6d54339 commit fb12f77

File tree

6 files changed

+25
-5
lines changed

6 files changed

+25
-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.24.0"
2+
".": "0.25.0"
33
}

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,24 @@
11
# Changelog
2+
## 0.25.0 (2025-12-19)
3+
4+
Full Changelog: [v0.24.0...v0.25.0](https://github.com/flowglad/flowglad-node/compare/v0.24.0...v0.25.0)
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **mcp:** remove deprecated tool schemes
9+
* **mcp:** **Migration:** To migrate, simply modify the command used to invoke the MCP server. Currently, the only supported tool scheme is code mode. Now, starting the server with just `node /path/to/mcp/server` or `npx package-name` will invoke code tools: changing your command to one of these is likely all you will need to do.
10+
11+
### Bug Fixes
12+
13+
* **mcp:** add client instantiation options to code tool ([9af9932](https://github.com/flowglad/flowglad-node/commit/9af99329f36d61f792255d4695210d67940260c0))
14+
* **mcp:** pass base url to code tool ([3ad4714](https://github.com/flowglad/flowglad-node/commit/3ad4714d57a8aa9abe6a903a253033516c944fae))
15+
16+
17+
### Chores
18+
19+
* **mcp:** remove deprecated tool schemes ([6d54339](https://github.com/flowglad/flowglad-node/commit/6d5433967c016f96cea8294cbc9bc7b34d869a6e))
20+
* **mcp:** update lockfile ([06783ad](https://github.com/flowglad/flowglad-node/commit/06783ad1f379228e59aac505e5eba2fa824d8e94))
21+
222
## 0.24.0 (2025-12-08)
323

424
Full Changelog: [v0.23.0...v0.24.0](https://github.com/flowglad/flowglad-node/compare/v0.23.0...v0.24.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@flowglad/node",
3-
"version": "0.24.0",
3+
"version": "0.25.0",
44
"description": "The official TypeScript library for the Flowglad API",
55
"author": "Flowglad <[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": "@flowglad/node-mcp",
3-
"version": "0.24.0",
3+
"version": "0.25.0",
44
"description": "The official MCP Server for the Flowglad API",
55
"author": "Flowglad <[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
@@ -21,7 +21,7 @@ export const newMcpServer = () =>
2121
new McpServer(
2222
{
2323
name: 'flowglad_node_api',
24-
version: '0.24.0',
24+
version: '0.25.0',
2525
},
2626
{ capabilities: { tools: {}, logging: {} } },
2727
);

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.24.0'; // x-release-please-version
1+
export const VERSION = '0.25.0'; // x-release-please-version

0 commit comments

Comments
 (0)