Updates

The <Update> component renders changelog entries with a sticky meta column — label, description, and version tags on the left, content on the right. Stack multiple updates on one page to build a full changelog.

Usage

<Update label="June 2026" description="Week of June 22" tags="v2.1.185, v2.1.193">
## New features

- Custom domains now provision in under a minute
- Added Go SDK support for the search API

## Fixes

- Fixed sidebar collapse state not persisting across pages
</Update>

<Update label="May 2026" description="Week of May 18" tags="v2.1.170">
## Improvements

- Build pipeline is 2x faster for incremental changes
</Update>

New features

  • Custom domains now provision in under a minute
  • Added Go SDK support for the search API

Fixes

  • Fixed sidebar collapse state not persisting across pages

Improvements

  • Build pipeline is 2x faster for incremental changes

Props

Prop Type Description
label string Entry heading, e.g. a date or release name (required). Also becomes the entry's anchor id.
description string Muted secondary line under the label
tags string Comma-separated version tags rendered as pills

Each update gets an anchor derived from its label — label="June 2026" is linkable as #june-2026.

On smaller screens the meta column stacks above the content and the timeline border is hidden.

Was this page helpful?