Merge pull request #3317 from pipecat-ai/mb/add-changelog-other

Add 'other' changelog category
This commit is contained in:
Mark Backman
2025-12-29 20:46:18 -05:00
committed by GitHub
3 changed files with 7 additions and 1 deletions

View File

@@ -86,7 +86,7 @@ jobs:
fi
# Validate fragment types
VALID_TYPES="added changed deprecated removed fixed security"
VALID_TYPES="added changed deprecated removed fixed security other"
INVALID_FRAGMENTS=""
for file in changelog/*.md; do

View File

@@ -56,6 +56,7 @@ Every pull request that makes a user-facing change should include a changelog en
- `removed.md` - Removed features
- `fixed.md` - Bug fixes
- `security.md` - Security fixes
- `other.md` - Other changes (documentation, dependencies, etc.)
3. Write your changelog entry as a Markdown bullet point. Include the `-` at the start:

View File

@@ -251,3 +251,8 @@ showcontent = true
directory = "security"
name = "Security"
showcontent = true
[[tool.towncrier.type]]
directory = "other"
name = "Other"
showcontent = true