Leave Localhost logoLeave LocalhostDocs
Content

Changelog

Publish a product changelog entry on the marketing site with a validated MDX file, one entry per buyer-visible release.

The changelog is part of the marketing site's MDX content system. Entries live in apps/marketing/content/changelog/<slug>.mdx and are served at /changelog (listing) and /changelog/<slug> (entry). One buyer-visible release equals one entry.

Frontmatter

---
title: "Workspaces and roles"
version: "0.3.0"
publishedAt: 2026-06-01
summary: "A one-line description shown in the changelog list."
type: added
draft: false
---

What changed, in MDX...
FieldRequiredNotes
titleyesEntry title.
versionyesRelease version string.
publishedAtyesYYYY-MM-DD.
summaryyesOne-line summary for the list.
typeyesOne of added, changed, fixed, security.
draftnotrue hides it from production.

As with the blog, Zod validation fails the build on a malformed or incomplete entry.

Publish an entry

  1. Add apps/marketing/content/changelog/<slug>.mdx (slug becomes the URL).
  2. Fill in the frontmatter above.
  3. Preview with bun run dev:marketing, then set draft: false and deploy.

On this page