Skip to content

Commit 68d9220

Browse files
Lasimgithub-actions[bot]
authored andcommitted
chore(backend): release v0.56.0
1 parent 6186e7b commit 68d9220

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

services/backend/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# Changelog
22

3+
## 0.56.0 (2025-12-28)
4+
5+
* feat(all): add MCP servers page to admin teams detail with pagination ([6186e7bb519b493e2d4e7354d9ae694beb2b1186](https://github.com/deploystackio/deploystack/commit/6186e7bb519b493e2d4e7354d9ae694beb2b1186))
6+
* feat(all): add OAuth re-authentication for MCP installations ([f08e92a29ba06850def5a9dac17f5cc19be6a5a5](https://github.com/deploystackio/deploystack/commit/f08e92a29ba06850def5a9dac17f5cc19be6a5a5))
7+
* feat(all): add per-team remote MCP server permission - global setting ([69ace9d7f15c1b26857f3c6528a4d161e58d2466](https://github.com/deploystackio/deploystack/commit/69ace9d7f15c1b26857f3c6528a4d161e58d2466))
8+
* feat(all): make team member limits configurable per-team ([1c70523ce3d0e83ea4c1032ca4dce7fca48ca869](https://github.com/deploystackio/deploystack/commit/1c70523ce3d0e83ea4c1032ca4dce7fca48ca869))
9+
* feat(backend): add endpoint to retrieve team MCP installations with pagination for global_admin ([765b4555d1ef0ee4096a8c43e9e712d14af69645](https://github.com/deploystackio/deploystack/commit/765b4555d1ef0ee4096a8c43e9e712d14af69645))
10+
* feat(backend): add pagination and search to admin teams endpoints ([35c79a17ad807fcad7f688d2a1264421cc47b478](https://github.com/deploystackio/deploystack/commit/35c79a17ad807fcad7f688d2a1264421cc47b478))
11+
* feat(backend): add pagination and search to user endpoints ([dca989fcdf9199968ef6ce0e6c745c16b80dcca9](https://github.com/deploystackio/deploystack/commit/dca989fcdf9199968ef6ce0e6c745c16b80dcca9))
12+
* refactor(backend): remove deprecated Gateway CLI code after Satellite pivot ([87a28186e21504a6abe5f6487aaf4bee05a43639](https://github.com/deploystackio/deploystack/commit/87a28186e21504a6abe5f6487aaf4bee05a43639))
13+
* refactor(backend): separate team settings into dedicated settings group ([86a25126afc1fb44afce07bc496250b97fc83022](https://github.com/deploystackio/deploystack/commit/86a25126afc1fb44afce07bc496250b97fc83022))
14+
* docs(all): update project description for clarity and focus ([cbbfcf6f1392f8a357075b4c0447357bd647cac9](https://github.com/deploystackio/deploystack/commit/cbbfcf6f1392f8a357075b4c0447357bd647cac9))
15+
16+
17+
### BREAKING CHANGE
18+
19+
* Admin teams list endpoint response structure changed from flat array to paginated format
20+
21+
- Add pagination support to GET /api/admin/teams endpoint
22+
- Query params: limit (1-100, default 20), offset (default 0)
23+
- Response now includes data.teams and data.pagination metadata
24+
- Pagination metadata: total, limit, offset, has_more
25+
- Create new GET /api/admin/teams/search endpoint
26+
- Filter by team name (partial, case-insensitive)
27+
- Includes same pagination support as list endpoint
28+
- Add pagination schemas and validation helper to admin/teams/schemas.ts
29+
- Register search route in admin teams index
30+
- Update API specs (api-spec.json, api-spec.yaml)
31+
* GET /users response format changed from { success, data: [...] } to { success, data: { users: [...], pagination: {...} } }
32+
333
## 0.55.0 (2025-12-24)
434

535
* feat(all): add real-time SSE streaming for MCP installations list ([420b99e99af44ae12cd04dca5a05eb60a130aad2](https://github.com/deploystackio/deploystack/commit/420b99e99af44ae12cd04dca5a05eb60a130aad2))

services/backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@deploystack/backend",
3-
"version": "0.55.0",
3+
"version": "0.56.0",
44
"scripts": {
55
"dev": "nodemon",
66
"build": "tsc && webpack --mode=production",

services/backend/src/config/version.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ export interface VersionInfo {
99

1010
// This will be replaced by the build script
1111
let versionData: VersionInfo = {
12-
version: '0.55.0',
13-
buildTime: '2025-12-24T10:08:59.771Z',
12+
version: '0.56.0',
13+
buildTime: '2025-12-28T22:06:30.761Z',
1414
source: 'release'
1515
};
1616

0 commit comments

Comments
 (0)