claude-code-ultimate-guide/examples/skills/release-notes-generator/assets/changelog-template.md
Florian BRUNIAUX 52d76411e3 feat(skills): publish 5 new skills to SkillHub
Add skill-creator, landing-page-generator, ccboard, guide-recap,
and release-notes-generator with genericized content (no personal
refs, FR→EN translation, placeholder URLs/paths).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-15 21:10:09 +01:00

1.9 KiB

CHANGELOG Section Template

Use this template for generating CHANGELOG.md entries.

## [X.Y.Z] - YYYY-MM-DD

### Objective
[1-2 sentence summary of this release]

### New Features

#### [Feature Name] (#PR_NUMBER)
- **Description** : [Clear functional description]
- **Spec link** : [Link to spec if available]
- **Impacted components** : `component-a`, `service-b`, etc.
- **Impact** : [Who is affected: End-users / Admins / All]

### Bug Fixes

#### [Module/Component] (#PR_NUMBER)
- **Issue** : [Bug description]
- **Cause** : [Root cause identified]
- **Fix** : [Fix description]
- **[Error tracker]** : PROJECT-XX (if applicable)

### Technical Improvements

#### Performance
- [Optimization description with measurable impact if possible]

#### UI/UX
- [Interface improvement description]

#### Architecture
- [Significant refactoring description]

### Security
- **[CVE-XXXX-XXXXX]** : [Description and impact]

### Database Migrations

#### Deployment Process

**Step 1: Apply migrations**
```bash
[migration-command]

Step 2: Data migration scripts (if applicable)

[data-migration-command]

Post-migration verification

-- Verification queries
SELECT COUNT(*) FROM [table];

Breaking Changes

None or:

  • [Component/API] : Breaking change description
    • Migration required : How to migrate
    • Impact : Who is affected

Deprecations

None or:

  • [Feature X] : Deprecated in this version
    • Reason : Why
    • Alternative : What to use instead
    • Planned removal : Version X.Y.Z

Tests

  • unit tests for [feature]
  • integration tests for [module]

Statistics

  • PRs : #XX, #YY, #ZZ
  • Files impacted : XX+
  • New tables : [list if applicable]
  • Migrations : X migrations
  • Breaking changes : 0