Grouped Changelog Board
Releases grouped by month, each month a bold uppercase heading, with a consistent-width version column beside a description column and an optional "Read more" link, so entries stay scannable across every group.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/grouped-changelog-board.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/changelog/changelog4.tsx instead.
Usage
The file also exports changelog4Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.
import { Changelog4, changelog4Demo } from "@/components/blocks/changelog/changelog4"; export default function Page() { return <Changelog4 {...changelog4Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | "Changelog" | Section heading. |
| description | string | none | Section intro text. |
| groups | MonthGroup[] | none | Month-grouped releases, rendered in array order. |
| className | string | none | Extra classes for the outer section element. |
Types
type GroupedRelease = { version: string; description: string; href?: string; }; type MonthGroup = { month: string; releases: GroupedRelease[]; };
Behavior notes
- month is a plain display string (e.g. "March 2026") supplied by the caller; it is never derived from a date object at render time, so the grouping and the heading text can never drift apart or vary between server and client render.
- The version column uses a fixed w-24 width so descriptions line up across every release in every group, regardless of version-string length.
- href is optional per release; the "Read more" link only renders when it is set, so entries without a linked detail page don't show a dead link.
- The "Read more" link is a plain Next.js Link, not the Button primitive; it is decorative in this demo since there is no real release-detail page behind it.
More Changelog Blocks
View all →split-milestone-changelog
Split Milestone Changelog
Two-column release entries pairing milestone context with highlights and metrics.
changelog-release-feed
Changelog Release Feed
Release feed cards with aligned change-type labels and an optional CTA per card.
milestone-changelog-timeline
Milestone Changelog Timeline
Vertical timeline of releases with a connecting line, version badges, and tone-coded change types.
minimal-text-changelog
Minimal Text Changelog
Ultra-plain, text-only changelog with no badges, cards, or borders.
categorized-release-notes
Categorized Release Notes
Per-release changes grouped into Added, Changed, and Fixed sub-sections.
featured-release-changelog
Featured Release Changelog
The latest release highlighted in a large featured card, older releases condensed below.