From 3257af77e68e8243b1d2ec4ec24ff65e2da6b2f5 Mon Sep 17 00:00:00 2001 From: Lasim <7317318+Lasim@users.noreply.github.com> Date: Thu, 1 Jan 2026 21:35:41 +0000 Subject: [PATCH] chore(backend): release v0.57.0 --- services/backend/CHANGELOG.md | 9 +++++++++ services/backend/package.json | 2 +- services/backend/src/config/version.ts | 4 ++-- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/services/backend/CHANGELOG.md b/services/backend/CHANGELOG.md index 9a23e60a5..8a01b39e9 100644 --- a/services/backend/CHANGELOG.md +++ b/services/backend/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.57.0 (2026-01-01) + +* chore(all): update deploystack banner image ([924cbcb5835e1a91c572f658db1e47b6465a20a9](https://github.com/deploystackio/deploystack/commit/924cbcb5835e1a91c572f658db1e47b6465a20a9)) +* fix(backend): log database status during authentication and server startup ([31e5497bb9c5d85bd29131773fa1a2e69a33610f](https://github.com/deploystackio/deploystack/commit/31e5497bb9c5d85bd29131773fa1a2e69a33610f)) +* feat(all): implement per-user MCP instance isolation for multi-user teams ([bc9d18336a33185ece6c92e286596c9846dfab4f](https://github.com/deploystackio/deploystack/commit/bc9d18336a33185ece6c92e286596c9846dfab4f)) +* feat(backend): add email notifications for global admin role changes ([843f51aa30bed200cff2797afa301c92c9f1e10f](https://github.com/deploystackio/deploystack/commit/843f51aa30bed200cff2797afa301c92c9f1e10f)) +* style(backend): improve email template styles and layout ([290b7d846bf6739dd247d0f76ee7ee2e94afb2da](https://github.com/deploystackio/deploystack/commit/290b7d846bf6739dd247d0f76ee7ee2e94afb2da)) +* refactor(all): move admin user routes to /api/admin/users ([c319dd06904ddba21a0babb3644d02d235ad1bb5](https://github.com/deploystackio/deploystack/commit/c319dd06904ddba21a0babb3644d02d235ad1bb5)) + ## 0.56.0 (2025-12-29) * feat(all): add MCP servers page to admin teams detail with pagination ([6186e7bb519b493e2d4e7354d9ae694beb2b1186](https://github.com/deploystackio/deploystack/commit/6186e7bb519b493e2d4e7354d9ae694beb2b1186)) diff --git a/services/backend/package.json b/services/backend/package.json index 36bbd5822..f60132912 100644 --- a/services/backend/package.json +++ b/services/backend/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/backend", - "version": "0.56.0", + "version": "0.57.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 3714c8ef0..d2d6eabf9 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.56.0', - buildTime: '2025-12-28T22:06:30.761Z', + version: '0.57.0', + buildTime: '2026-01-01T21:35:40.433Z', source: 'release' };