---
title: Updates
description: The Update component for building changelog pages with dated entries and tags.
icon: clock
---

# 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

```mdx
<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>
```

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

## 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 |

## Deep links

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

<Note>
On smaller screens the meta column stacks above the content and the timeline
border is hidden.
</Note>
