Twelve months of notice on anything you could be depending on, and we write to every affected practice by name rather than relying on you reading this page.
Per-site waiting list settings
Each clinic had its own backfill rules. The group model replaced this and keeping both would let two settings disagree.
31 practices still on the old settings
Removed on
1 November 2026
Announced 14 May 2026
Use instead
Group waiting list rules, with per-site overrides where they genuinely differ
CSV-only invoice export
Superseded by the scheduled export, which does the same thing without anybody clicking a button once a month.
58 practices
Removed on
1 March 2027
Announced 2 May 2026
Use instead
Scheduled export to your accounting system, or the API
The v1 booking webhook
Sent a flat payload with no site identifier, which stopped making sense the moment groups shared a waiting list.
4 integrations
Removed on
1 September 2026
Announced 11 January 2026
Use instead
The v2 webhook, same endpoint, versioned payload
Legacy permission grid
Forty checkboxes per user. Replaced by six named roles, and every account was migrated automatically.
None remaining
Removed on
9 March 2026
Announced 4 August 2025
Use instead
Named roles, already applied to every account
Twelve months of notice as standard, never less than six. We write to affected practices individually, we never remove something in a patch release, and if you need longer we will keep the old path alive for you specifically rather than tell you to hurry.
A deprecation register listing what is being withdrawn on hairline rows with a tone-coded stage chip, the removal date, how many are still affected, and the replacement, closing on the written notice policy.
A deprecation register listing what is being withdrawn on hairline rows with a tone-coded stage chip, the removal date, how many are still affected and the replacement, closing on the written notice policy.
Upgrade to Pro
Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.
Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.
Radix flavor
npx shadcn add "https://ui.beste.co/r/changelog30?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/changelog30?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/changelog30.tsx plus the badge23 and button21 components it uses for the eyebrow and the policy actions.
The installed file exports changelog30Demo alongside the block: the exact props behind the preview above. Spread it to get a working register in one line.
import { Changelog30, changelog30Demo } from "@/components/beste/block/changelog30";
export default function DeprecationsPage() {
return <Changelog30 {...changelog30Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Changelog30 } from "@/components/beste/block/changelog30";
export default function DeprecationsPage() {
return (
<Changelog30
badge={{ label: "Going away" }}
heading="What we are removing, when, and what to use instead"
description="Twelve months of notice on anything you could be depending on."
stageLabels={{ announced: "Announced", warning: "Final year", removed: "Removed" }}
columns={["What is going", "Stage", "Removed on", "Use instead"]}
deprecations={[
{
what: "Per-site waiting list settings",
detail: "The group model replaced this and keeping both would let two settings disagree.",
stage: "warning",
removesOn: "1 November 2026",
announced: "Announced 14 May 2026",
instead: "Group waiting list rules, with per-site overrides",
affected: "31 practices still on the old settings",
},
]}
policyTitle="The deprecation policy"
policyBody="Twelve months of notice as standard, never less than six."
buttons={[
{ label: "Subscribe to deprecations", href: "/deprecations/subscribe" },
{ label: "Read the upgrade guides", href: "/docs/upgrades" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow above the hairline rule, rendered through Badge23 |
heading | string | – | Section heading in the left column of the header |
description | string | – | Supporting paragraph, right-aligned from md up |
stageLabels | Record<Stage, string> | – | The word shown on each stage chip |
columns | string[] | [] | Column headings, also reused as mobile row labels |
deprecations | Deprecation[] | [] | The register itself |
policyTitle | string | – | Heading in the closing policy panel |
policyBody | string | – | The written notice policy |
buttons | ActionLink[] | [] | Policy actions, first solid and the rest outlined |
className | string | – | Extra classes for the outer section |
type Stage = "announced" | "warning" | "removed";
type ActionLink = {
label: string;
href: string;
};
type Deprecation = {
what: string;
detail: string;
stage: Stage;
removesOn: string;
announced: string;
instead: string;
affected: string;
};stage drives the chip colour from the stageStyles table: muted for announced, amber for the final year, rose for already removed. It also mutes the title of anything already gone, so the register reads as history at the bottom.stageLabels falls back to the raw key when a label is missing, so an incomplete record degrades to "warning" rather than rendering blank.instead and affected are both required. The block is built so nothing can be listed as going away without a replacement and a count of who is still on it.hidden lg:grid, so on mobile the labels come from columns[2] and columns[3] rendered inline inside the date and replacement cells. Passing fewer than four column labels leaves those mobile labels blank.lg, its margin would collapse there. The rows container carries mt-12 lg:mt-0 to compensate, so the spacing above the register is correct at both widths.border-b matching the header's border-b, so the rules read as one continuous table.w-fit, so it hugs its label rather than filling the fixed 8rem grid track.lg:items-start rather than baseline-aligned, since the first cell carries three stacked lines and would otherwise drag the row out of alignment.changelog28
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.
changelog26
A release feed with a sticky version rail that filters the list, and hairline entries carrying a version and date line, tone-coded tags, an accent-bulleted highlight list, and an optional release note link.
changelog35
The newest release gets a full row: a photograph that blurs in and drifts on scroll beside its version, date, serif title, paragraph, plain change list and a sliding-marker pill. Earlier releases follow as compact ruled rows (version, date, title, one line) that link out and tint on hover.
changelog34
Releases as points on a vertical line that draws itself in ink as the page scrolls: version and date on the left of the line, a serif title, a paragraph and a plain dotted list of changes on the right. Serif headline settles in word by word with a sliding-marker pill at the header's right end.
changelog32
A changelog page section with a serif headline that settles in word by word and a sliding-marker pill at the right end of the header, then a ruled list of releases. Each release keeps its version number and date pinned on the left while the title, summary and a plain dotted list of changes settle in on the right.