Update
Use update blocks for release notes, docs changelog entries, and filterable component changes.
Updates are timeline entries. When a page has multiple update tags, the right rail can expose tag filters.
Basic example
API pages now use endpoint blocks with request and response examples in the right rail.
<Update label="API docs upgraded" description="2026-06-20" tags={["api", "docs"]} icon="badge">
API pages now use endpoint blocks with request and response examples in the right rail.
</Update>
Timeline entries
Stack multiple updates when a page needs a compact changelog. Keep each entry tied to a real docs or product change.
The component catalog now links to individual pages for the Mintlify-style MDX family.
Endpoint pages can keep request and response examples in the right example rail.
Linked cards and tiles require icons and avoid nested card surfaces.
<Update label="Component pages expanded" description="2026-06-20" tags={["components", "docs"]} icon="layout-grid">
The component catalog now links to individual pages for the Mintlify-style MDX family.
</Update>
<Update label="API examples moved right" description="2026-06-20" tags={["api", "examples"]} icon="braces">
Endpoint pages can keep request and response examples in the right example rail.
</Update>
RSS metadata
Use rss when an update should feed a changelog or release feed with cleaner summary text than the rendered MDX body.
The public docs now show the SDK checkout calls alongside copyable request and response examples.
<Update
label="SDK checkout docs"
description="2026-06-20"
tags={["sdk", "checkout"]}
icon="code"
rss={{
title: "SDK checkout documentation expanded",
description: "The SDK checkout reference now includes endpoint-aware request and response examples."
}}
>
The public docs now show the SDK checkout calls alongside copyable request and response examples.
</Update>
Authoring rules
Update usage
Use for dated changerelease noteUse an update when the date or change history matters to the reader.
Keep labels stableanchorsThe label creates the default anchor. Add an explicit id if the label may change.
Tag consistentlyright rail filtersReuse tag names such as api, sdk, components, and docs so filters stay predictable.
Props
labelstringrequiredLabel for the update. Appears to the left of the update and creates an anchor link. Labels should be unique.
descriptionstringDescription of the update. Appears below the label and tags.
rssobjectOptional RSS title and description metadata.
Plandalf extensions
datestringAlternate date value. description takes precedence when both are present.
idstringStable anchor ID for the update.
iconstringdefault: badgeIcon shown beside the update label.
iconTypestringIcon style metadata for icon libraries that support variants.
class | classNamestringOptional utility classes for local spacing or sizing.