Loading...
Loading...
Use when creating "changelog", "release notes", "version updates", generating "CHANGELOG.md", or asking about "git history to changelog", "commit summary", "what changed since last release"
npx skill4agent add eyadsibai/ltk changelog-generator# Since last tag
git log $(git describe --tags --abbrev=0)..HEAD --oneline
# Between dates
git log --since="2024-01-01" --until="2024-01-31" --oneline
# Between versions
git log v1.0.0..v2.0.0 --oneline| Category | Emoji | Includes |
|---|---|---|
| New Features | ✨ | New functionality, capabilities |
| Improvements | 🔧 | Enhancements, optimizations |
| Bug Fixes | 🐛 | Resolved issues, corrections |
| Breaking Changes | ⚠️ | API changes, migrations needed |
| Security | 🔒 | Security patches, vulnerability fixes |
| Documentation | 📚 | Docs updates (usually excluded) |
| Internal | 🔨 | Refactoring, tests (usually excluded) |
fix: resolve null pointer in UserService#getById
refactor: extract common logic to BaseRepository- Fixed an issue where user profiles wouldn't load
- Improved application performance and reliability# Updates - Week of March 10, 2024
## ✨ New Features
- **Team Workspaces**: Create separate workspaces for different
projects. Invite team members and keep everything organized.
## 🔧 Improvements
- **Faster Sync**: Files now sync 2x faster across devices
- **Better Search**: Search now includes file contents, not just titles
## 🐛 Fixes
- Fixed issue where large images wouldn't upload
- Resolved timezone confusion in scheduled postsCreate a changelog from commits since last releaseGenerate changelog for all commits from the past weekCreate release notes for version 2.5.0 based on commits since v2.4.0