This guide helps with adding changelog entries as markdown files. Each file represents one changelog entry.
Files should be named: YYYY-MM-DD-slug.md
Example: 2025-08-22-message-broker-functions.md
Each markdown file should include frontmatter with the following fields:
---
date: YYYY-MM-DD
title: Your Entry Title
authors:
- name: Author Name
image: /path/to/image.jpg
- name: Another Author
image: /path/to/image.jpg
---After the frontmatter, write your changelog content in markdown. You can use:
- Paragraphs - Regular text
- Images -
 - Lists - Bulleted or numbered
- Bold/Italic - Standard markdown formatting
- Links -
[Link text](https://example.com) - Code - Inline
codeor code blocks
---
date: 2025-08-22
title: New Feature Launch
authors:
- name: John Doe
image: /employees/john.jpg
---
We're excited to announce our new feature! This update includes:
- Improved performance
- Better user experience
- New integrations

Learn more in our [documentation](https://docs.example.com).- Create a new
.mdfile in this directory - Add the frontmatter with date, title, and authors
- Write your content in markdown
- The entry will automatically appear on the changelog page, grouped by month