πŸ“‹ Conventional Commits Reference

feat: A new feature
fix: A bug fix
docs: Documentation only changes
style: Changes that don't affect code meaning
refactor: Code change that neither fixes nor adds
perf: Code change that improves performance
test: Adding missing or correcting tests
chore: Changes to build process or tools
ci: Changes to CI configuration
build: Changes that affect build system

Examples

feat(auth): add OAuth2 login
fix(api): resolve null pointer in user endpoint
docs: update README installation steps
style: format code according to style guide
refactor(core): simplify data processing logic
perf(db): optimize query performance
test(auth): add unit tests for login
chore: update dependencies
ci: add GitHub Actions workflow
build: upgrade webpack to v5