Conventional Commits - Definição do Glossário CI/CD
Conventional Commits é uma especificação para o formato de mensagem de commit, type(scope): description, que torna o histórico legível por máquina para que ferramentas possam derivar incrementos de versão e changelogs.
Tipos comuns
Tipos padrão incluem feat, fix, docs, refactor, test e chore. Um ! após o type ou um rodapé BREAKING CHANGE: marca uma mudança incompatível.
Guias relacionados
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,…