diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 60c2a88..6f9e7e4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - "mcp": "0.4.0", - "typescript": "0.5.0" + "mcp": "0.5.0", + "typescript": "0.5.1" } diff --git a/mcp/CHANGELOG.md b/mcp/CHANGELOG.md index 25891b4..681824e 100644 --- a/mcp/CHANGELOG.md +++ b/mcp/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [0.5.0](https://github.com/sumup/sumup-ai/compare/mcp-v0.4.0...mcp-v0.5.0) (2025-11-24) + + +### Features + +* init ([4cfe434](https://github.com/sumup/sumup-ai/commit/4cfe434a67afbb935552276dfdf239cd74aaa261)) +* **mcp:** docker ([#22](https://github.com/sumup/sumup-ai/issues/22)) ([995936a](https://github.com/sumup/sumup-ai/commit/995936ab9c34413336aa28d1a6319a2efaf53c8a)) +* **mcp:** versioning/publishing pipeline ([5e83e70](https://github.com/sumup/sumup-ai/commit/5e83e708aeaadc26faf67e6abcdc3236dbe273dc)) +* **readme:** badges ([#110](https://github.com/sumup/sumup-ai/issues/110)) ([1c490fb](https://github.com/sumup/sumup-ai/commit/1c490fb7aa37411f25d6abf117da197b87d6c884)) +* rename to sumup-ai ([ebc2e10](https://github.com/sumup/sumup-ai/commit/ebc2e10794c0adc580eeb67ca373c540ca19fa43)) +* setup mcp publishing ([#253](https://github.com/sumup/sumup-ai/issues/253)) ([67df63d](https://github.com/sumup/sumup-ai/commit/67df63db00b7efa5b220b43caad833ea2826c511)) +* switch to release please ([#254](https://github.com/sumup/sumup-ai/issues/254)) ([8e4150f](https://github.com/sumup/sumup-ai/commit/8e4150f7e6398ab71ce7ee8af0f4e52184dc15c1)) + + +### Bug Fixes + +* changeset setup ([#21](https://github.com/sumup/sumup-ai/issues/21)) ([50c0e9c](https://github.com/sumup/sumup-ai/commit/50c0e9c7cdd19ebcc6516c97438b9317c563120b)) +* changeset setup for typescript sdk ([#14](https://github.com/sumup/sumup-ai/issues/14)) ([290253e](https://github.com/sumup/sumup-ai/commit/290253e985bee2de99e9b034923c335f45f9d261)) +* **mcp:** package.json config ([#17](https://github.com/sumup/sumup-ai/issues/17)) ([09df4fd](https://github.com/sumup/sumup-ai/commit/09df4fddacc0ed95db616cd73976fcb80572b4f7)) +* **mcp:** publishing ([5e24da2](https://github.com/sumup/sumup-ai/commit/5e24da29081863ceb8c16a222e9a1a90ae4f8431)) +* **mcp:** publishing and versioning ([55abf5e](https://github.com/sumup/sumup-ai/commit/55abf5e1777841ab15ac08f168e1b229577763a5)) + ## [0.4.0](https://github.com/sumup/sumup-ai/compare/mcp-v0.3.0...mcp-v0.4.0) (2025-11-23) diff --git a/mcp/package-lock.json b/mcp/package-lock.json index 37ae6a9..29f6957 100644 --- a/mcp/package-lock.json +++ b/mcp/package-lock.json @@ -1,16 +1,16 @@ { "name": "@sumup/mcp", - "version": "0.4.0", + "version": "0.5.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@sumup/mcp", - "version": "0.4.0", + "version": "0.5.0", "license": "Apache-2.0", "dependencies": { "@modelcontextprotocol/sdk": "^1.8.0", - "@sumup/agent-toolkit": "^0.5.0" + "@sumup/agent-toolkit": "^0.3.0" }, "bin": { "mcp": "dist/index.mjs" @@ -950,9 +950,9 @@ "license": "MIT" }, "node_modules/@sumup/agent-toolkit": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@sumup/agent-toolkit/-/agent-toolkit-0.5.0.tgz", - "integrity": "sha512-y1foC6i6uL2pqgXaNys39/HLTdOr0uvhdb59N2E35AFwWo5zp1iU+QIkSQgieVjS3riv4W4bSk9G4loVvNRBJg==", + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@sumup/agent-toolkit/-/agent-toolkit-0.3.0.tgz", + "integrity": "sha512-J3igpImyHadhH/YJNVzN7cp56nQLyplHW1xnOAiYRw2JFgorfHo9sMbwux1cCc6SO/BKY9vKq697eZT16JZJTQ==", "license": "Apache-2.0", "dependencies": { "@langchain/core": "^1.0.6", @@ -960,12 +960,21 @@ "@openai/agents": "^0.3.3", "@sumup/sdk": "^0.0.7", "ai": "^5.0.98", - "zod": "^3.25.76" + "zod": "^4.1.12" }, "engines": { "node": ">=22" } }, + "node_modules/@sumup/agent-toolkit/node_modules/zod": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/zod/-/zod-4.1.12.tgz", + "integrity": "sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, "node_modules/@sumup/sdk": { "version": "0.0.7", "resolved": "https://registry.npmjs.org/@sumup/sdk/-/sdk-0.0.7.tgz", diff --git a/mcp/package.json b/mcp/package.json index 63435ad..888bbdc 100644 --- a/mcp/package.json +++ b/mcp/package.json @@ -1,6 +1,6 @@ { "name": "@sumup/mcp", - "version": "0.4.0", + "version": "0.5.0", "description": "MCP server for interacting with SumUp", "homepage": "https://github.com/sumup/sumup-ai", "license": "Apache-2.0", @@ -46,7 +46,7 @@ ], "dependencies": { "@modelcontextprotocol/sdk": "^1.8.0", - "@sumup/agent-toolkit": "^0.5.0" + "@sumup/agent-toolkit": "^0.3.0" }, "devDependencies": { "@biomejs/biome": "^2.3.7", diff --git a/typescript/CHANGELOG.md b/typescript/CHANGELOG.md index 57af634..988c09a 100644 --- a/typescript/CHANGELOG.md +++ b/typescript/CHANGELOG.md @@ -1,5 +1,12 @@ # @sumup/agent-toolkit +## [0.5.1](https://github.com/sumup/sumup-ai/compare/typescript-v0.5.0...typescript-v0.5.1) (2025-11-24) + + +### Bug Fixes + +* **sdk:** examples ([53a5c2d](https://github.com/sumup/sumup-ai/commit/53a5c2dccb3bd465e68a197c390a530c291ef558)) + ## [0.5.0](https://github.com/sumup/sumup-ai/compare/typescript-v0.4.1...typescript-v0.5.0) (2025-11-23) diff --git a/typescript/jsr.json b/typescript/jsr.json index 2ed8370..5e8715d 100644 --- a/typescript/jsr.json +++ b/typescript/jsr.json @@ -1,6 +1,6 @@ { "name": "@sumup/agent-toolkit", - "version": "0.5.0", + "version": "0.5.1", "license": "Apache-2.0", "exports": { "./langchain": "./src/langchain/index.ts", diff --git a/typescript/package-lock.json b/typescript/package-lock.json index df6e42b..4f1bac8 100644 --- a/typescript/package-lock.json +++ b/typescript/package-lock.json @@ -1,12 +1,12 @@ { "name": "@sumup/agent-toolkit", - "version": "0.5.0", + "version": "0.5.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@sumup/agent-toolkit", - "version": "0.5.0", + "version": "0.5.1", "license": "Apache-2.0", "dependencies": { "@langchain/core": "^1.0.6", diff --git a/typescript/package.json b/typescript/package.json index 339b361..a82e86b 100644 --- a/typescript/package.json +++ b/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@sumup/agent-toolkit", - "version": "0.5.0", + "version": "0.5.1", "homepage": "https://github.com/sumup/sumup-ai", "license": "Apache-2.0", "author": "SumUp (https://sumup.com/)", diff --git a/typescript/src/common/const.ts b/typescript/src/common/const.ts index 5656fda..680c61d 100644 --- a/typescript/src/common/const.ts +++ b/typescript/src/common/const.ts @@ -1 +1 @@ -export const VERSION = "0.5.0"; // x-release-please-version +export const VERSION = "0.5.1"; // x-release-please-version