diff --git a/package-lock.json b/package-lock.json index 1f94fed19..04ba87e42 100644 --- a/package-lock.json +++ b/package-lock.json @@ -29637,7 +29637,7 @@ }, "services/gateway": { "name": "@deploystack/gateway", - "version": "0.10.1", + "version": "0.11.0", "license": "SEE LICENSE IN ../../LICENSE", "dependencies": { "@fastify/cors": "^11.1.0", diff --git a/services/gateway/CHANGELOG.md b/services/gateway/CHANGELOG.md index 1a8bb1b17..0bfe82f34 100644 --- a/services/gateway/CHANGELOG.md +++ b/services/gateway/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.11.0 (2025-09-03) + +* feat(frontend): update page title to 'DeployStack Cloud' ([8772df7](https://github.com/deploystackio/deploystack/commit/8772df7)) +* feat(gateway): add selective restart functionality for MCP servers and enhance configuration change ([f81f835](https://github.com/deploystackio/deploystack/commit/f81f835)) +* feat(gateway): implement MCP endpoint and enhance logging for session management ([6a3332b](https://github.com/deploystackio/deploystack/commit/6a3332b)) +* refactor(gateway): remove unnecessary hints from MCP command error messages ([b65fade](https://github.com/deploystackio/deploystack/commit/b65fade)) +* refactor(gateway): remove version string from command description ([6f2196a](https://github.com/deploystackio/deploystack/commit/6f2196a)) + ## 0.10.2 (2025-09-02) * chore(all): bump @types/nodemailer from 7.0.0 to 7.0.1 ([60b7fdc](https://github.com/deploystackio/deploystack/commit/60b7fdc)) diff --git a/services/gateway/package.json b/services/gateway/package.json index d9b223e05..fd8e1ee53 100644 --- a/services/gateway/package.json +++ b/services/gateway/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/gateway", - "version": "0.10.2", + "version": "0.11.0", "description": "The local DeployStack Gateway for secure MCP server management.", "main": "dist/index.js", "bin": { diff --git a/services/gateway/src/config/version.ts b/services/gateway/src/config/version.ts index 66b2ea329..a9c78f3c7 100644 --- a/services/gateway/src/config/version.ts +++ b/services/gateway/src/config/version.ts @@ -18,8 +18,8 @@ export interface VersionCheckResult { // This will be replaced by the build script let versionData: VersionInfo = { - version: '0.10.1', - buildTime: '2025-09-02T19:56:51.000Z', + version: '0.11.0', + buildTime: '2025-09-03T17:31:33.452Z', source: 'release' };