None. This is a backward-compatible release.
- Added Dependabot for automated dependency updates
- Added SECURITY.md for vulnerability reporting
- Added performance benchmarks
- Increased test coverage
# Update CLI
curl -fsSL https://gitant.io/install.sh | sh
# Update daemon
docker pull ghcr.io/graycodeai/gitant-daemon:v0.1.1
# Update web
docker pull ghcr.io/graycodeai/gitant-web:v0.1.1No schema changes. Existing data is compatible.
No configuration changes required.
No breaking API changes.
- CLI renamed:
gitant→gt(aliasgitantstill works) - MCP tools renamed: All tools now use
gitant_prefix - API endpoints: Some endpoints moved to
/api/v1/prefix
# Backup existing data
cp -r ~/.gitant ~/.gitant.backup
# Run migration (if any)
gitant migrate# Old config
daemon_url: http://localhost:7777
# New config (same, but documented)
daemon_url: http://localhost:7777| Old Endpoint | New Endpoint |
|---|---|
/repos |
/api/v1/repos |
/issues |
/api/v1/repos/{id}/issues |
/prs |
/api/v1/repos/{id}/prs |
All MCP tools now use gitant_ prefix:
| Old Name | New Name |
|---|---|
list_repos |
gitant_list_repos |
create_issue |
gitant_create_issue |
open_pr |
gitant_open_pr |
If you need to rollback:
# Restore from backup
cp -r ~/.gitant.backup ~/.gitant
# Downgrade CLI
curl -fsSL https://gitant.io/install.sh | sh -s -- --version v0.1.0If you encounter issues during migration:
- Check the FAQ
- Search GitHub Issues
- Ask on Discord
- Email support@gitant.io