mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-04-28 06:19:46 +00:00
Introduce full AI orchestration ecosystem: - MCP Server with 16 tools, scoped auth, and audit logging - A2A v0.3 server with JSON-RPC 2.0, SSE streaming, and task manager - Auto-Combo engine with 6-factor scoring and self-healing - VS Code extension with smart dispatch and budget tracking - Harden CI pipeline: add static checks, remove continue-on-error - Add translator schema validation tests - Update .gitignore and CHANGELOG for release checklist
1,001 B
1,001 B
Release Checklist
Use this checklist before tagging or publishing a new OmniRoute release.
Version and Changelog
- Bump
package.jsonversion (x.y.z) in the release branch. - Move release notes from
## [Unreleased]inCHANGELOG.mdto a dated section:## [x.y.z] — YYYY-MM-DD
- Keep
## [Unreleased]as the first changelog section for upcoming work. - Ensure the latest semver section in
CHANGELOG.mdequalspackage.jsonversion.
API Docs
- Update
docs/openapi.yaml:info.versionmust equalpackage.jsonversion.
- Validate endpoint examples if API contracts changed.
Runtime Docs
- Review
docs/ARCHITECTURE.mdfor storage/runtime drift. - Review
docs/TROUBLESHOOTING.mdfor env var and operational drift. - Update localized docs if source docs changed significantly.
Automated Check
Run the sync guard locally before opening PR:
npm run check:docs-sync
CI also runs this check in .github/workflows/ci.yml (lint job).