Thanks to visit codestin.com
Credit goes to github.com

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
9 changes: 9 additions & 0 deletions services/backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
2 changes: 1 addition & 1 deletion services/backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deploystack/backend",
"version": "0.56.0",
"version": "0.57.0",
"scripts": {
"dev": "nodemon",
"build": "tsc && webpack --mode=production",
Expand Down
4 changes: 2 additions & 2 deletions services/backend/src/config/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
};

Expand Down