Full Release Notes By Month

Release notes

Everything that changed, line by line

The full log rather than the highlights. Removals are in here too, which is usually the part that matters most.

May 2026

3.4.0

14 May

  • AddedShared waiting list and capacity across every site in a group
  • AddedMember site preference, respected before distance
  • ChangedGroup reporting now rolls up without an export step
  • RemovedPer-site waiting list settings, replaced by the group model
3.3.2

02 May

  • ChangedInvoice export moved to a background job with progress
  • FixedMonth-end export timing out for groups over eight sites

April 2026

3.3.0

11 April

  • AddedInsurer and self-pay settlement on a single ledger
  • AddedCredit notes against a specific appointment
  • ChangedInvoice references now include the site code
  • FixedPartial insurer payments leaving a balance of a rounding error
3.2.6

24 April

  • FixedBooking pages slow in the UK region for 41 minutes
  • ChangedAdded a query budget to the booking path

Nothing is ever quietly edited after publication. If a note turns out to be wrong we add a correction underneath it with the date.

About this block

Full Release Notes By MonthFREE

A complete changelog grouped by month, each version on a hairline row beside its entries, every line tagged added, changed, fixed, or removed with its own tone.

Changelog28: Full Release Notes By Month

A complete changelog grouped by month, each version on a hairline row beside its entries, every line tagged added, changed, fixed or removed with its own tone.

Free block

This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/changelog28"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/changelog28"

This installs the block to components/beste/block/changelog28.tsx plus the badge23 component it uses for the eyebrow.

Quick start

The installed file exports changelog28Demo alongside the block: the exact props behind the preview above. Spread it to get a working log in one line.

tsx
import { Changelog28, changelog28Demo } from "@/components/beste/block/changelog28";

export default function ReleaseNotesPage() {
  return <Changelog28 {...changelog28Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Changelog28 } from "@/components/beste/block/changelog28";

export default function ReleaseNotesPage() {
  return (
    <Changelog28
      badge={{ label: "Release notes" }}
      heading="Everything that changed, line by line"
      description="The full log rather than the highlights."
      kindLabels={{ added: "Added", changed: "Changed", fixed: "Fixed", removed: "Removed" }}
      months={[
        {
          label: "May 2026",
          releases: [
            {
              version: "3.4.0",
              date: "14 May",
              href: "/changelog/3-4-0",
              entries: [
                { kind: "added", text: "Shared waiting list across every site in a group" },
                { kind: "removed", text: "Per-site waiting list settings" },
              ],
            },
          ],
        },
      ]}
      footnote="Nothing is ever quietly edited after publication."
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the hairline rule, rendered through Badge23
headingstringSection heading in the left column of the header
descriptionstringSupporting paragraph, right-aligned from md up
kindLabelsRecord<Kind, string>The word shown on each entry chip
monthsMonth[][]Month groups, each holding its releases
footnotestringCorrection policy under the log
classNamestringExtra classes for the outer section
ts
type Kind = "added" | "changed" | "fixed" | "removed";

type Entry = {
  kind: Kind;
  text: string;
};

type Release = {
  version: string;
  date: string;
  entries: Entry[];
  href: string;
};

type Month = {
  label: string;
  releases: Release[];
};

Behavior notes

  • kind drives the chip colour from the kindStyles table: accent for added, amber for changed, emerald for fixed, muted for removed. Adding a fifth kind means extending that table as well as the union.
  • kindLabels falls back to the raw key when a label is missing, so an incomplete record degrades to "added" rather than rendering blank.
  • Chips are colour plus a word, never colour alone, so the four kinds stay distinguishable without relying on hue.
  • Only the version number is a link, not the whole row, since the entries beneath it are the content rather than a summary of it.
  • Version numbers use tabular-nums so the left column stays aligned across different lengths.
  • Entries use flex-wrap items-baseline, so a long line wraps under its chip rather than squeezing it.
  • Months use mb-10 with last:mb-0, and releases carry border-t, so rules appear between releases and above the first one in each month.
  • Grouping is authored, not computed. The block never parses dates or sorts, so the array order is the display order.

More Changelog blocks

View all Changelog
PRO

changelog4

Grouped Changelog Board

Month-grouped changelog board with aligned labels, release details, and optional links.

PRO

changelog7

Categorized Release Notes

Release notes with changes grouped by type — Added, Changed, Fixed — using color-coded category labels.

PRO

changelog33

Month Index Changelog

A changelog grouped by month with a sticky index on the left: each month is a button that scrolls the page to its group, a short rule grows beside the current one, and the index follows as you scroll. Entries on the right show the day, a title and a plain dotted list of changes. Serif headline settles in word by word, one sliding-marker pill in the header.

PRO

changelog10

Dense Inline Release Log

Compact single-line release rows with color-coded type dots, version tags, and a legend footer. Optimized for dense, scannable API changelogs.

PRO

changelog25

Newspaper Changelog

Broadsheet newspaper layout with masthead, featured headline story, sidebar briefs, and numbered patch notes in flowing columns.

PRO

changelog11

Two-Column Date Changelog

Minimal two-column layout with fixed-width date column on the left and version heading with change list on the right.