diff --git a/package-lock.json b/package-lock.json index f955e2f5a..ef6afb15a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -29638,7 +29638,7 @@ }, "services/backend": { "name": "@deploystack/backend", - "version": "0.31.3", + "version": "0.32.0", "dependencies": { "@fastify/cookie": "^11.0.2", "@fastify/cors": "^11.1.0", @@ -30043,7 +30043,7 @@ }, "services/frontend": { "name": "@deploystack/frontend", - "version": "0.26.0", + "version": "0.26.1", "dependencies": { "@tailwindcss/vite": "^4.1.12", "@tanstack/vue-table": "^8.21.3", @@ -30091,7 +30091,7 @@ }, "services/gateway": { "name": "@deploystack/gateway", - "version": "0.9.0", + "version": "0.9.1", "license": "SEE LICENSE IN ../../LICENSE", "dependencies": { "@fastify/cors": "^11.1.0", diff --git a/services/backend/CHANGELOG.md b/services/backend/CHANGELOG.md index f62cfad64..924b4b58f 100644 --- a/services/backend/CHANGELOG.md +++ b/services/backend/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 0.32.0 (2025-08-26) + +* chore(all): bump drizzle-orm from 0.44.4 to 0.44.5 ([c2fda9b](https://github.com/deploystackio/deploystack/commit/c2fda9b)) +* chore(all): bump lucide-vue-next from 0.540.0 to 0.541.0 ([88e8acc](https://github.com/deploystackio/deploystack/commit/88e8acc)) +* chore(frontend): bump lucide-vue-next in /services/frontend ([f6fd104](https://github.com/deploystackio/deploystack/commit/f6fd104)) +* chore(frontend): release v0.26.0 ([d09a5d1](https://github.com/deploystackio/deploystack/commit/d09a5d1)) +* chore(frontend): release v0.26.1 ([b422f45](https://github.com/deploystackio/deploystack/commit/b422f45)) +* chore(gateway): release v0.9.0 ([75cecd4](https://github.com/deploystackio/deploystack/commit/75cecd4)) +* chore(gateway): release v0.9.1 ([0bebfcd](https://github.com/deploystackio/deploystack/commit/0bebfcd)) +* feat(all): Add translations for 'secret' data type in mcp-catalog ([463e580](https://github.com/deploystackio/deploystack/commit/463e580)) +* feat(gateway): enhance MCP configuration refresh with change detection ([00e1276](https://github.com/deploystackio/deploystack/commit/00e1276)) +* feat(gateway): enhance team and user configuration decryption process ([6aeaad2](https://github.com/deploystackio/deploystack/commit/6aeaad2)) +* refactor(gateway): replace legacy MCP config methods with new gateway endpoint ([914a49b](https://github.com/deploystackio/deploystack/commit/914a49b)) +* fix(frontend): improve GitHub URL display and handling in featured servers ([06dfff3](https://github.com/deploystackio/deploystack/commit/06dfff3)) + ## 0.31.3 (2025-08-25) * chore(backend): release v0.31.2 ([77608e7](https://github.com/deploystackio/deploystack/commit/77608e7)) diff --git a/services/backend/package.json b/services/backend/package.json index 19cda4b3c..3d9b57e60 100644 --- a/services/backend/package.json +++ b/services/backend/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/backend", - "version": "0.31.3", + "version": "0.32.0", "scripts": { "dev": "nodemon", "build": "tsc && webpack --mode=production", diff --git a/services/backend/src/config/version.ts b/services/backend/src/config/version.ts index dc3e635f8..5734d1237 100644 --- a/services/backend/src/config/version.ts +++ b/services/backend/src/config/version.ts @@ -9,8 +9,8 @@ export interface VersionInfo { // This will be replaced by the build script let versionData: VersionInfo = { - version: '0.31.2', - buildTime: '2025-08-25T19:31:55.874Z', + version: '0.32.0', + buildTime: '2025-08-26T21:01:21.344Z', source: 'release' };