From 1b4931fd7a4729d763c27d5656c0f701f57d4dbf Mon Sep 17 00:00:00 2001 From: Lasim <7317318+Lasim@users.noreply.github.com> Date: Sun, 24 Aug 2025 20:27:57 +0000 Subject: [PATCH] chore(gateway): release v0.8.0 --- package-lock.json | 4 ++-- services/gateway/CHANGELOG.md | 27 ++++++++++++++++++++++++++ services/gateway/package.json | 2 +- services/gateway/src/config/version.ts | 4 ++-- 4 files changed, 32 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2987780de..a30e0d381 100644 --- a/package-lock.json +++ b/package-lock.json @@ -30043,7 +30043,7 @@ }, "services/frontend": { "name": "@deploystack/frontend", - "version": "0.24.0", + "version": "0.24.1", "dependencies": { "@tailwindcss/vite": "^4.1.12", "@tanstack/vue-table": "^8.21.3", @@ -30091,7 +30091,7 @@ }, "services/gateway": { "name": "@deploystack/gateway", - "version": "0.7.1", + "version": "0.8.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 b55ea7b00..531d579c9 100644 --- a/services/gateway/CHANGELOG.md +++ b/services/gateway/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## 0.8.0 (2025-08-24) + +* feat(backend): implement CRUD operations for user devices ([74550da](https://github.com/deploystackio/deploystack/commit/74550da)) +* feat(backend): rename device_name to device_id in API specifications ([f66d3d6](https://github.com/deploystackio/deploystack/commit/f66d3d6)) +* feat(frontend): add success and error toasts for user configuration updates ([b021ddb](https://github.com/deploystackio/deploystack/commit/b021ddb)) +* feat(frontend): add user arguments and configuration sections ([43a5fab](https://github.com/deploystackio/deploystack/commit/43a5fab)) +* feat(frontend): add user configuration management to MCP server installation ([a709a37](https://github.com/deploystackio/deploystack/commit/a709a37)) +* feat(frontend): enhance device detail view with i18n support ([41987b5](https://github.com/deploystackio/deploystack/commit/41987b5)) +* feat(frontend): ensure fresh data loading in edit mode ([45bd18b](https://github.com/deploystackio/deploystack/commit/45bd18b)) +* feat(frontend): replace device_name with device_id in user configuration ([54bf418](https://github.com/deploystackio/deploystack/commit/54bf418)) +* feat(frontend): update argument field labels and placeholders ([c4aa090](https://github.com/deploystackio/deploystack/commit/c4aa090)) +* feat(gateway): add endpoint to retrieve merged MCP configurations ([d13cd98](https://github.com/deploystackio/deploystack/commit/d13cd98)) +* feat(gateway): implement device detection and new MCP config endpoint ([e5367c3](https://github.com/deploystackio/deploystack/commit/e5367c3)) +* feat(gateway): implement graceful and forceful server stop functionality ([bf6cbe1](https://github.com/deploystackio/deploystack/commit/bf6cbe1)) +* refactor(backend): improve user configuration validation logic ([468967d](https://github.com/deploystackio/deploystack/commit/468967d)) +* refactor(backend): remove unnecessary permissions from user config routes ([b476825](https://github.com/deploystackio/deploystack/commit/b476825)) +* refactor(backend): rename device_id to hardware_id in configurations ([12be78b](https://github.com/deploystackio/deploystack/commit/12be78b)) +* refactor(frontend): improve user configuration display and structure ([e79efc0](https://github.com/deploystackio/deploystack/commit/e79efc0)) +* refactor(frontend): separate user args and env in user configuration ([5616f7f](https://github.com/deploystackio/deploystack/commit/5616f7f)) +* refactor(gateway): streamline device registration during OAuth2 flow ([55c38c0](https://github.com/deploystackio/deploystack/commit/55c38c0)) +* fix(backend): change device removal to hard delete from database ([1335efb](https://github.com/deploystackio/deploystack/commit/1335efb)) +* fix(backend): Refactor MCP User Configuration API to use object for user_args ([fa14c5a](https://github.com/deploystackio/deploystack/commit/fa14c5a)) +* chore(backend): release v0.30.0 ([74dc303](https://github.com/deploystackio/deploystack/commit/74dc303)) +* chore(backend): release v0.30.1 ([96d27a4](https://github.com/deploystackio/deploystack/commit/96d27a4)) +* chore(frontend): release v0.24.0 ([c001de7](https://github.com/deploystackio/deploystack/commit/c001de7)) +* chore(frontend): release v0.24.1 ([a7a51fe](https://github.com/deploystackio/deploystack/commit/a7a51fe)) + ## 0.7.1 (2025-08-23) * feat(all): featured server and pre-install mcp server ([f919b90](https://github.com/deploystackio/deploystack/commit/f919b90)) diff --git a/services/gateway/package.json b/services/gateway/package.json index e58e479fb..b0f98c86c 100644 --- a/services/gateway/package.json +++ b/services/gateway/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/gateway", - "version": "0.7.1", + "version": "0.8.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 ea37cc78d..4f6b69ff8 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.7.0', - buildTime: '2025-08-23T15:47:22.626Z', + version: '0.8.0', + buildTime: '2025-08-24T20:27:55.324Z', source: 'release' };