Deprecations And Removals

Going away

What we are removing, when, and what to use instead

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.

What is goingStageRemoved onUse instead

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

Final year

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

Announced

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

Final year

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

Removed on

9 March 2026

Announced 4 August 2025

Use instead

Named roles, already applied to every account

The deprecation policy

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.

About this block

Deprecations And RemovalsPRO

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.

Changelog30: Deprecations And Removals

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.

Upgrade Now

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/changelog30?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

Quick start

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.

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

tsx
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" },
      ]}
    />
  );
}

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
stageLabelsRecord<Stage, string>The word shown on each stage chip
columnsstring[][]Column headings, also reused as mobile row labels
deprecationsDeprecation[][]The register itself
policyTitlestringHeading in the closing policy panel
policyBodystringThe written notice policy
buttonsActionLink[][]Policy actions, first solid and the rest outlined
classNamestringExtra classes for the outer section
ts
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;
};

Behavior notes

  • 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.
  • The column header row is 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.
  • Because the header row is hidden below 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.
  • Rows use border-b matching the header's border-b, so the rules read as one continuous table.
  • The chip is w-fit, so it hugs its label rather than filling the fixed 8rem grid track.
  • Rows are lg:items-start rather than baseline-aligned, since the first cell carries three stacked lines and would otherwise drag the row out of alignment.

More Changelog blocks

View all Changelog
FREE

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.

PRO

changelog26

Version Rail Release Timeline

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.

PRO

changelog35

Latest and Earlier

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.

PRO

changelog34

Drawn Line Changelog

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.

PRO

changelog32

Ruled Changelog

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.

PRO

changelog5

Milestone Changelog Timeline

Timeline-style changelog with version badges, dates, and color-coded change types. Ideal for release notes and version history.