Bump VERSION to 0.2.8, finalize changelog
All checks were successful
CI/CD / detect-changes (pull_request) Successful in 21s
CI/CD / test-frontend (pull_request) Successful in 5s
CI/CD / test-go-pg (pull_request) Successful in 2m9s
CI/CD / test-sqlite (pull_request) Successful in 2m50s
CI/CD / build-and-deploy (pull_request) Successful in 1m50s

Team admin settings audit (pass 1): remove dead BYOK/provider/persona
vestiges from team store, models, policy defaults, workflow stage UI,
and ICD tests. Fix stale chat_only stage mode in frontend to match
backend CHECK constraint.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-27 16:13:10 +00:00
parent b82640ba40
commit df310d9aa5
12 changed files with 51 additions and 102 deletions

View File

@@ -74,24 +74,6 @@
T.assert(Array.isArray(d.data), 'data should be array');
});
await T.test('crud', 'teams', 'GET /teams/:teamId/personas', async function () {
var d = await T.apiGet('/teams/' + teamId + '/personas');
T.assertHasKey(d, 'data', '/team-personas');
T.assert(Array.isArray(d.data), 'team personas should be array');
});
await T.test('crud', 'teams', 'GET /teams/:teamId/providers', async function () {
var d = await T.apiGet('/teams/' + teamId + '/providers');
T.assertHasKey(d, 'data', '/team-providers');
T.assert(Array.isArray(d.data), 'data should be array');
T.assertHasKey(d, 'allow_team_providers', '/team-providers');
});
await T.test('crud', 'teams', 'GET /teams/:teamId/models', async function () {
var d = await T.apiGet('/teams/' + teamId + '/models');
T.assertHasKey(d, 'models', '/team-models');
});
// ── Team Tasks CRUD ──
var teamTaskId = null;