Skip to content

Commit 2ac80ce

Browse files
release: 2.5.0
1 parent dfd759f commit 2ac80ce

File tree

6 files changed

+26
-5
lines changed

6 files changed

+26
-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.4.0"
2+
".": "2.5.0"
33
}

CHANGELOG.md

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

3+
## 2.5.0 (2025-09-06)
4+
5+
Full Changelog: [v2.4.0...v2.5.0](https://github.com/img-processing/node-sdk/compare/v2.4.0...v2.5.0)
6+
7+
### Features
8+
9+
* **mcp:** allow setting logging level ([36435db](https://github.com/img-processing/node-sdk/commit/36435db6d60428f99fb0c091dc44f53e1926a3da))
10+
* **mcp:** expose client options in `streamableHTTPApp` ([e703796](https://github.com/img-processing/node-sdk/commit/e703796d8b841b4e5646c5b9454ddb81f88a1c64))
11+
12+
13+
### Bug Fixes
14+
15+
* **mcp:** fix query options parsing ([e87c83f](https://github.com/img-processing/node-sdk/commit/e87c83f4dfdb17fbb22029ab6b1d0c7fa64c540e))
16+
17+
18+
### Chores
19+
20+
* ci build action ([854760e](https://github.com/img-processing/node-sdk/commit/854760e576752a3a6179067c85f0423b59914a3f))
21+
* **internal:** codegen related update ([40e6528](https://github.com/img-processing/node-sdk/commit/40e65286601bc2914d4a0993a2098b25c9446c60))
22+
* **internal:** codegen related update ([913fa07](https://github.com/img-processing/node-sdk/commit/913fa0740c637f10708ee113fee1d46b7879e223))
23+
324
## 2.4.0 (2025-08-29)
425

526
Full Changelog: [v2.3.3...v2.4.0](https://github.com/img-processing/node-sdk/compare/v2.3.3...v2.4.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "img-processing-sdk",
3-
"version": "2.4.0",
3+
"version": "2.5.0",
44
"description": "The official TypeScript library for the Img Processing API",
55
"author": "Img Processing <support@img-processing.com>",
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": "img-processing-mcp",
3-
"version": "2.4.0",
3+
"version": "2.5.0",
44
"description": "The official MCP Server for the Img Processing API",
55
"author": "Img Processing <support@img-processing.com>",
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
@@ -33,7 +33,7 @@ export const newMcpServer = () =>
3333
new McpServer(
3434
{
3535
name: 'img_processing_sdk_api',
36-
version: '2.4.0',
36+
version: '2.5.0',
3737
},
3838
{ capabilities: { tools: {}, logging: {} } },
3939
);

src/version.ts

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

0 commit comments

Comments
 (0)