Update
Use the update component to display product updates, release notes, and changelog entries in a structured timeline format with dates.
Use the Update component to display changelog entries, version updates, and release notes with consistent formatting.
Example update
You can add anything here, like a screenshot, a code snippet, or a list of changes.

Features
- Responsive design
- Anchor for each update
- Generated RSS feed entry for each update
How to use
<Update label="2024-10-11" description="v0.1.0" tags={["Mintlify"]}>
This is an update with a label, description, and tag.
</Update>Use multiple Update components to create changelogs.
Update components automatically generate RSS feed entries. The entries contain pure Markdown only--components, code blocks, inline code, and raw HTML elements are not included.
If your update includes components or HTML, use the rss prop to provide alternative text for RSS subscribers.
<Update
label="March 2025"
description="v2.0.0"
rss={{
title: "March 2025 - Major redesign",
description: "Complete UI overhaul with new components"
}}
>
## New dashboard
<Frame>
<img src="/dashboard.png" alt="New dashboard UI displaying updated components." />
</Frame>
Check out our redesigned dashboard with improved navigation.
</Update>Props
labelstringrequiredLabel for the update. Appears to the left of the update and creates an anchor link using the same automatic anchor ID rules as headings. Use unique labels to create distinct anchor links.
tagsstring[]Tags for the update. Shown as filters in the right side panel.
descriptionstringDescription of the update. Appears below the label and tag.
rssobjectUpdate components automatically generate RSS feed entries. Use the rss property to create a single RSS feed entry with a custom title and description.
If not provided:
- Updates with Markdown headings create a separate RSS feed entry for each heading.
- Updates without Markdown headings create a single RSS feed entry using the
labelas the title.
Show Hide properties
titlestringCustom title for the RSS feed entry.
descriptionstringCustom description for the RSS feed entry.