diff --git a/package-lock.json b/package-lock.json
index 1430c8df0..22a339058 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -29906,7 +29906,7 @@
},
"services/gateway": {
"name": "@deploystack/gateway",
- "version": "0.9.1",
+ "version": "0.9.2",
"license": "SEE LICENSE IN ../../LICENSE",
"dependencies": {
"@fastify/cors": "^11.1.0",
diff --git a/services/gateway/CHANGELOG.md b/services/gateway/CHANGELOG.md
index 34c725339..faa468cde 100644
--- a/services/gateway/CHANGELOG.md
+++ b/services/gateway/CHANGELOG.md
@@ -1,5 +1,17 @@
# Changelog
+## 0.9.2 (2025-09-01)
+
+* 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))
+
## 0.9.1 (2025-08-26)
* chore(all): bump drizzle-orm from 0.44.4 to 0.44.5 ([c2fda9b](https://github.com/deploystackio/deploystack/commit/c2fda9b))
diff --git a/services/gateway/package.json b/services/gateway/package.json
index 692caae79..1e0168dea 100644
--- a/services/gateway/package.json
+++ b/services/gateway/package.json
@@ -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": {
diff --git a/services/gateway/src/config/version.ts b/services/gateway/src/config/version.ts
index eab9d2621..d7c71c030 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.9.0',
- buildTime: '2025-08-26T20:56:30.506Z',
+ version: '0.9.2',
+ buildTime: '2025-09-01T08:32:08.790Z',
source: 'release'
};