Skip to content
Mintlify
Mintlify
Components

Update

Open RSS feed

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.

Examplev0.1.1

Example update

You can add anything here, like a screenshot, a code snippet, or a list of changes.

Screenshot of the PearsDB Introduction page as an example of an image in an Update component.

Features

  • Responsive design
  • Anchor for each update
  • Generated RSS feed entry for each update

How to use

Update example
<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.

Custom RSS content
<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

labelstringrequired

Label 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.

descriptionstring

Description of the update. Appears below the label and tag.

rssobject

Update 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 label as the title.
Show properties
titlestring

Custom title for the RSS feed entry.

descriptionstring

Custom description for the RSS feed entry.

Was this page helpful?Suggest editsRaise issue