Skip to content

Commit 1b4931f

Browse files
Lasimgithub-actions[bot]
authored andcommitted
chore(gateway): release v0.8.0
1 parent bf6cbe1 commit 1b4931f

File tree

4 files changed

+32
-5
lines changed

4 files changed

+32
-5
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/gateway/CHANGELOG.md

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

3+
## 0.8.0 (2025-08-24)
4+
5+
* feat(backend): implement CRUD operations for user devices ([74550da](https://github.com/deploystackio/deploystack/commit/74550da))
6+
* feat(backend): rename device_name to device_id in API specifications ([f66d3d6](https://github.com/deploystackio/deploystack/commit/f66d3d6))
7+
* feat(frontend): add success and error toasts for user configuration updates ([b021ddb](https://github.com/deploystackio/deploystack/commit/b021ddb))
8+
* feat(frontend): add user arguments and configuration sections ([43a5fab](https://github.com/deploystackio/deploystack/commit/43a5fab))
9+
* feat(frontend): add user configuration management to MCP server installation ([a709a37](https://github.com/deploystackio/deploystack/commit/a709a37))
10+
* feat(frontend): enhance device detail view with i18n support ([41987b5](https://github.com/deploystackio/deploystack/commit/41987b5))
11+
* feat(frontend): ensure fresh data loading in edit mode ([45bd18b](https://github.com/deploystackio/deploystack/commit/45bd18b))
12+
* feat(frontend): replace device_name with device_id in user configuration ([54bf418](https://github.com/deploystackio/deploystack/commit/54bf418))
13+
* feat(frontend): update argument field labels and placeholders ([c4aa090](https://github.com/deploystackio/deploystack/commit/c4aa090))
14+
* feat(gateway): add endpoint to retrieve merged MCP configurations ([d13cd98](https://github.com/deploystackio/deploystack/commit/d13cd98))
15+
* feat(gateway): implement device detection and new MCP config endpoint ([e5367c3](https://github.com/deploystackio/deploystack/commit/e5367c3))
16+
* feat(gateway): implement graceful and forceful server stop functionality ([bf6cbe1](https://github.com/deploystackio/deploystack/commit/bf6cbe1))
17+
* refactor(backend): improve user configuration validation logic ([468967d](https://github.com/deploystackio/deploystack/commit/468967d))
18+
* refactor(backend): remove unnecessary permissions from user config routes ([b476825](https://github.com/deploystackio/deploystack/commit/b476825))
19+
* refactor(backend): rename device_id to hardware_id in configurations ([12be78b](https://github.com/deploystackio/deploystack/commit/12be78b))
20+
* refactor(frontend): improve user configuration display and structure ([e79efc0](https://github.com/deploystackio/deploystack/commit/e79efc0))
21+
* refactor(frontend): separate user args and env in user configuration ([5616f7f](https://github.com/deploystackio/deploystack/commit/5616f7f))
22+
* refactor(gateway): streamline device registration during OAuth2 flow ([55c38c0](https://github.com/deploystackio/deploystack/commit/55c38c0))
23+
* fix(backend): change device removal to hard delete from database ([1335efb](https://github.com/deploystackio/deploystack/commit/1335efb))
24+
* fix(backend): Refactor MCP User Configuration API to use object for user_args ([fa14c5a](https://github.com/deploystackio/deploystack/commit/fa14c5a))
25+
* chore(backend): release v0.30.0 ([74dc303](https://github.com/deploystackio/deploystack/commit/74dc303))
26+
* chore(backend): release v0.30.1 ([96d27a4](https://github.com/deploystackio/deploystack/commit/96d27a4))
27+
* chore(frontend): release v0.24.0 ([c001de7](https://github.com/deploystackio/deploystack/commit/c001de7))
28+
* chore(frontend): release v0.24.1 ([a7a51fe](https://github.com/deploystackio/deploystack/commit/a7a51fe))
29+
330
## <small>0.7.1 (2025-08-23)</small>
431

532
* feat(all): featured server and pre-install mcp server ([f919b90](https://github.com/deploystackio/deploystack/commit/f919b90))

services/gateway/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@deploystack/gateway",
3-
"version": "0.7.1",
3+
"version": "0.8.0",
44
"description": "The local DeployStack Gateway for secure MCP server management.",
55
"main": "dist/index.js",
66
"bin": {

services/gateway/src/config/version.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ export interface VersionCheckResult {
1818

1919
// This will be replaced by the build script
2020
let versionData: VersionInfo = {
21-
version: '0.7.0',
22-
buildTime: '2025-08-23T15:47:22.626Z',
21+
version: '0.8.0',
22+
buildTime: '2025-08-24T20:27:55.324Z',
2323
source: 'release'
2424
};
2525

0 commit comments

Comments
 (0)