From 8aeac741f18ae855f225b0ffbabb79b135bd9022 Mon Sep 17 00:00:00 2001 From: Lasim <7317318+Lasim@users.noreply.github.com> Date: Thu, 4 Sep 2025 08:01:27 +0000 Subject: [PATCH] chore(gateway): release v0.12.0 --- package-lock.json | 2 +- services/gateway/CHANGELOG.md | 7 +++++++ services/gateway/package.json | 2 +- services/gateway/src/config/version.ts | 4 ++-- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 04ba87e42..efe505c2c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -29637,7 +29637,7 @@ }, "services/gateway": { "name": "@deploystack/gateway", - "version": "0.11.0", + "version": "0.12.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 516e6dc52..553888620 100644 --- a/services/gateway/CHANGELOG.md +++ b/services/gateway/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.12.0 (2025-09-04) + +* feat(gateway): add 'clients' command to display connected MCP clients with detailed information ([faec3ca](https://github.com/deploystackio/deploystack/commit/faec3ca)) +* feat(gateway): add client notification functionality and tools refresh endpoint ([925cd6e](https://github.com/deploystackio/deploystack/commit/925cd6e)) +* refactor(gateway): remove tools refresh notification endpoint and client notification service ([3cdfc02](https://github.com/deploystackio/deploystack/commit/3cdfc02)) +* chore(release): update release command to include --no-increment option ([904e877](https://github.com/deploystackio/deploystack/commit/904e877)) + ## 0.11.1 (2025-09-03) * chore(gateway): release v0.11.0 ([3395bc9](https://github.com/deploystackio/deploystack/commit/3395bc9)) diff --git a/services/gateway/package.json b/services/gateway/package.json index f70988364..9f5bdfca6 100644 --- a/services/gateway/package.json +++ b/services/gateway/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/gateway", - "version": "0.11.1", + "version": "0.12.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 a9c78f3c7..51d83e9d5 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.11.0', - buildTime: '2025-09-03T17:31:33.452Z', + version: '0.12.0', + buildTime: '2025-09-04T08:01:26.745Z', source: 'release' };