* 🔨 chore: update .vscode/settings.json (#13894) * 🐛 fix(builtin-tool-local-system): honor glob scope in local system tool (#13875) Made-with: Cursor * 📝 docs: Update changelog docs and release skills (#13897) - Update changelog documentation format across all historical changelog files - Merge release-changelog-style skill into version-release skill - Update changelog examples with improved formatting and structure Made-with: Cursor --------- Co-authored-by: YuTengjing <ytj2713151713@gmail.com> Co-authored-by: Innei <i@innei.in>
1.4 KiB
DB Schema Migration Changelog Example
A changelog reference for database migration release PR bodies.
This release includes a database schema migration for Agent Evaluation Benchmark. We are adding 5 new tables so benchmark setup, runs, and run-topic records can be stored in a complete and queryable structure.
Migration overview
Previously, benchmark-related data lacked a full lifecycle model, which made it harder to track evaluation flow from dataset to run results. This migration introduces the missing relational layer so benchmark configuration, execution, and analysis records stay connected.
In practical terms, this reduces ambiguity for downstream features and gives operators a cleaner foundation for troubleshooting and reporting.
Added tables:
agent_eval_benchmarksagent_eval_datasetsagent_eval_recordsagent_eval_runsagent_eval_run_topics
Notes for self-hosted users
- Migration runs automatically during app startup.
- No manual SQL action is required in standard deployments.
- As with any schema release, we still recommend database backup and rollout during a low-traffic window.
The migration owner: @{pr-author} — responsible for this database schema change, reach out for any migration-related issues.
Note for Claude: Replace
{pr-author}with the actual PR author. Retrieve viagh pr view <number> --json author --jq '.author.login'orgit logcommit author. Do NOT hardcode a username.