Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions services/gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## <small>0.9.2 (2025-09-01)</small>

* fix(database): implement safe database proxy for graceful startup handling ([68623a2](https://github.com/deploystackio/deploystack/commit/68623a2))
* fix(gateway): update default backend URL for login command to use cloud-api ([f71a14e](https://github.com/deploystackio/deploystack/commit/f71a14e))
* feat(frontend): enhance user preferences handling for walkthrough ([80ff8ed](https://github.com/deploystackio/deploystack/commit/80ff8ed))
* feat(frontend): enhance walkthrough handling with improved checks and timing ([d073cab](https://github.com/deploystackio/deploystack/commit/d073cab))
* refactor: remove unnecessary console logs and improve user walkthrough handling ([f23f7b6](https://github.com/deploystackio/deploystack/commit/f23f7b6))
* chore: specify Node.js and npm engine requirements in package.json and add .nvmrc ([8b0b3a9](https://github.com/deploystackio/deploystack/commit/8b0b3a9))
* chore: update package.json overrides and simplify README instructions ([0911ece](https://github.com/deploystackio/deploystack/commit/0911ece))
* chore(all): bump vue from 3.5.18 to 3.5.20 ([d990c96](https://github.com/deploystackio/deploystack/commit/d990c96))
* chore(backend): release v0.32.0 ([b3c7341](https://github.com/deploystackio/deploystack/commit/b3c7341))

## <small>0.9.1 (2025-08-26)</small>

* chore(all): bump drizzle-orm from 0.44.4 to 0.44.5 ([c2fda9b](https://github.com/deploystackio/deploystack/commit/c2fda9b))
Expand Down
2 changes: 1 addition & 1 deletion services/gateway/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deploystack/gateway",
"version": "0.9.1",
"version": "0.9.2",
"description": "The local DeployStack Gateway for secure MCP server management.",
"main": "dist/index.js",
"bin": {
Expand Down
4 changes: 2 additions & 2 deletions services/gateway/src/config/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export interface VersionCheckResult {

// This will be replaced by the build script
let versionData: VersionInfo = {
version: '0.9.0',
buildTime: '2025-08-26T20:56:30.506Z',
version: '0.9.2',
buildTime: '2025-09-01T08:32:08.790Z',
source: 'release'
};

Expand Down