Skip to content

Backend v0.56.0

Choose a tag to compare

@deploystack-automation deploystack-automation released this 29 Dec 07:43
· 82 commits to main since this release

0.56.0 (2025-12-29)

BREAKING CHANGE

  • Admin teams list endpoint response structure changed from flat array to paginated format
  • Add pagination support to GET /api/admin/teams endpoint
    • Query params: limit (1-100, default 20), offset (default 0)
    • Response now includes data.teams and data.pagination metadata
    • Pagination metadata: total, limit, offset, has_more
  • Create new GET /api/admin/teams/search endpoint
    • Filter by team name (partial, case-insensitive)
    • Includes same pagination support as list endpoint
  • Add pagination schemas and validation helper to admin/teams/schemas.ts
  • Register search route in admin teams index
  • Update API specs (api-spec.json, api-spec.yaml)
  • GET /users response format changed from { success, data: [...] } to { success, data: { users: [...], pagination: {...} } }