changelog-automation
SolidGit history'den otomatik changelog, semantic versioning, release notes, conventional commits
AI & Automation 519 stars
44 forks Updated 1 weeks ago MIT
Install
Quality Score: 89/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Changelog Automation
## Conventional Commits
Commit mesajlari bu formatta olmali:
```
<type>(<scope>): <description>
[optional body]
[optional footer(s)]
```
### Type'lar
| Type | Aciklama | SemVer Etkisi |
|------|---------|---------------|
| feat | Yeni ozellik | MINOR |
| fix | Bug fix | PATCH |
| docs | Dokumantasyon | - |
| style | Formatting (kod degisikligi yok) | - |
| refactor | Kod degisikligi (feature/fix degil) | - |
| perf | Performans iyilestirme | PATCH |
| test | Test ekleme/duzeltme | - |
| chore | Build, CI, tooling | - |
| ci | CI/CD degisikligi | - |
| build | Build sistemi degisikligi | - |
| revert | Geri alma | PATCH |
### Breaking Change
```
feat(api)!: remove deprecated endpoints
BREAKING CHANGE: /v1/users endpoint kaldirildi, /v2/users kullanin
```
`!` isareti veya `BREAKING CHANGE:` footer'i = MAJOR versiyon artisi.
## Semantic Versioning (SemVer)
```
MAJOR.MINOR.PATCH
MAJOR: Breaking change (geriye uyumsuz)
MINOR: Yeni ozellik (geriye uyumlu)
PATCH: Bug fix (geriye uyumlu)
```
### Versiyon Artirma Kurallari
```
Commit'lerde BREAKING CHANGE varsa → MAJOR++
Commit'lerde feat varsa → MINOR++
Sadece fix/perf/refactor varsa → PATCH++
Sadece docs/style/test/chore varsa → versiyon artmaz
```
## CHANGELOG.md Formati (Keep a Changelog)
```markdown
# Changelog
All notable changes to this project will be documented in this file.
## [Unreleased]
## [1.2.0] - 2026-03-25
...
Details
- Author
- vibeeval
- Repository
- vibeeval/vibecosystem
- Created
- 4 months ago
- Last Updated
- 1 weeks ago
- Language
- C#
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
api-versioning-patterns
API versioning strategies, breaking change detection, deprecation lifecycle, and migration guides
519 Updated 1 weeks ago
vibeeval AI & Automation Solid
changelog-gen
Changelog 生成器 - 从 Git 历史自动生成 CHANGELOG
692 Updated today
laolaoshiren AI & Automation Listed
changelog
Generate Changelog from Commits
4 Updated 5 days ago
AreteDriver