Skip to main content

Changelogs reference

View as Markdown

This page lists the fields and paths supported by changelogs.

Paths

Changelogs can be created for versioned resources using changelog.md or changelog.mdx.

/{collection}/{Resource Name}/versioned/{version}/changelog.mdx

For example:

/services/PaymentService/versioned/1.0.0/changelog.mdx
/domains/Payments/versioned/1.0.0/changelog.mdx

Optional fields

createdAt

  • Type: date

Date the changelog entry was created.

Example
---
createdAt: 2026-05-26
---

badges

  • Type: array

Badge metadata for the changelog entry.

Example
---
badges:
- content: Breaking change
backgroundColor: red
textColor: red
---

Badge fields

FieldTypeDescription
contentstringBadge text.
backgroundColorstringBadge background color.
textColorstringBadge text color.
iconstringOptional icon.

Example

---
createdAt: 2026-05-26
badges:
- content: Breaking change
backgroundColor: red
textColor: red
---

Updated the payment authorization event contract.