Conventional Commits - CI/CD用語集の定義
Conventional Commitsはコミットメッセージの形式 type(scope): description に関する仕様であり、履歴を機械可読にすることで、ツールがバージョンの更新やchangelogを導き出せるようにします。
一般的なtype
標準的なtypeには feat、fix、docs、refactor、test、chore が含まれます。typeの後の ! や BREAKING CHANGE: フッターは破壊的変更を示します。
関連ガイド
Semantic Release - CI/CD Glossary DefinitionSemantic Release: Semantic release is an automated release workflow that determines the next version number f…
Changelog - CI/CD Glossary DefinitionChangelog: A changelog is a curated, ordered record of notable changes per release (features, fixes, breaking…
Semantic Versioning - CI/CD Glossary DefinitionSemantic versioning numbers releases MAJOR.MINOR.PATCH so the version itself signals compatibility: breaking,…