Chatto Release Notes
Write one docs-website MDX page per stable minor release. Follow
apps/docs-website/AGENTS.md for public documentation style and terminology.
Paths below are relative to the repository root.
Release And Evidence
- Read
.release-please-config.json, .release-please-manifest.json, and the
release-please PR, if present. Target the next stable minor release unless
the user specifies another release.
- Remove prerelease suffixes and normalize the page version to
x.y.0.
For example, 0.5.0-beta.4 belongs on the 0.5.0 page.
- Compare with the highest stable patch tag of the previous minor release.
Include the complete prerelease cycle, not only changes since the last beta.
- Check commits, PR descriptions, and all relevant
CHANGELOG.md sections.
Include later fix: commits that are not yet in the changelog. Check product
docs and code when the effect on readers is unclear.
- Stop and explain if the target release cannot be determined.
Existing Text
The page path is
apps/docs-website/src/content/docs/releases/<version-with-hyphens>.mdx.
Use hyphens in filenames and dotted versions in visible text.
Treat existing pages as manually edited. Preserve their wording, order, and
unrelated content. Make targeted edits when the user requests an update.
Without that request, put proposed changes in
.context/release-page-<version>-proposal.md. Restructure an existing page only
when the user requests it.
Content
- Write for users, operators, admins, and integration authors. Describe what
changes for them. Omit internal refactors, test work, CI, and generated-file
changes unless they change visible behavior or require reader action.
- Rank features by their effect on readers. Put the largest features first.
Describe each new feature once, in its final stable form. Implementation
size and breaking-change labels do not determine headline placement.
- Put compatibility requirements and migration actions in
Upgrade Notes.
Transport, storage, media-format, and cache changes are not feature cards
unless product documentation or the maintainer identifies a separately
intended user capability. Do not invent a feature from an incidental effect.
- A public integration API replacement can be a headline feature when it
defines the release. Name the replacement and repeat the required action
in upgrade notes. Link prerelease testers to the stable API reference;
do not list each intermediate method or message change.
- Include every bug fix relevant to readers of the previous stable release.
Omit fixes to behavior introduced and repaired during the prerelease cycle.
Put migration actions for prerelease testers in upgrade notes.
- Use short, factual sentences and concrete subjects. Avoid marketing claims,
descriptions of the page itself, emojis, PR lists, and copied changelog text.
- Describe features at the product level. Do not list every affected component,
screen, or RPC. Keep each card understandable on its own.
- For performance changes, name the visible benefit. Put startup, backup,
restore, and resource-use improvements with operator content. Put noticeable
frontend loading improvements with user content.
Page And Components
Read the components in apps/docs-website/src/components/release-notes/
before use. Add missing components if the requested page requires them.
Import them from ../../../components/release-notes/ in the MDX page.
- Start with
ReleaseHero. Until the stable release exists, use (unreleased)
in the frontmatter title, an unreleased description, and
status="Unreleased" on the hero.
- Use
ReleaseFeatureGrid with ReleaseFeatureCard as direct children.
This structure supports native Grid Lanes and its polyfill.
- Use one card per feature. Use
size="large" for headlines, size="small"
for compact items, and the default size otherwise. Keep each card to one
short paragraph: usually one sentence for small cards and at most two for
other cards. Move extra detail to upgrade notes, grouped fixes, or the GitHub
release. Do not add audience labels or subheadings inside cards.
- Add
Running and Integrating Chatto only when its content needs a separate
section. A more specific heading is acceptable.
- Put bug fixes in
Smaller fixes you'll appreciate, grouped by function.
Do not put fixes in feature cards.
- Add a plain
Upgrade Notes section when readers must act or check
compatibility. Do not put these notes in cards or callout boxes.
- End with
GitHub release and a link to
https://github.com/chattocorp/chatto/releases/tag/v<version>.
Keep this target for unreleased pages even before it exists.
- Do not force empty sections. Preserve existing sidebar order and labels when
adding the page to
apps/docs-website/astro.config.mjs.
Images
Use images only when the maintainer supplies or identifies an asset, or
explicitly requests one. Do not generate screenshots or demo images by default.
Store release images in
apps/docs-website/public/releases/<version-with-hyphens>/.
Use ReleaseImage or the card's imageSrc, imageAlt, imageCaption, and
imagePosition props. Add useful alt text and a short factual caption. Place
an image beside the feature it shows.
Verification
Run mise x -- pnpm --filter docs-website build after page edits. Check that
supplied images render. For material layout or style changes, check the page
at desktop and mobile widths. Report which checks ran.
1---2name: chatto-release-notes3description: Create or update Chatto release pages from release-please state, tags, changelog entries, and PRs.4---56# Chatto Release Notes78Write one docs-website MDX page per stable minor release. Follow9`apps/docs-website/AGENTS.md` for public documentation style and terminology.10Paths below are relative to the repository root.1112## Release And Evidence1314- Read `.release-please-config.json`, `.release-please-manifest.json`, and the15 release-please PR, if present. Target the next stable minor release unless16 the user specifies another release.17- Remove prerelease suffixes and normalize the page version to `x.y.0`.18 For example, `0.5.0-beta.4` belongs on the `0.5.0` page.19- Compare with the highest stable patch tag of the previous minor release.20 Include the complete prerelease cycle, not only changes since the last beta.21- Check commits, PR descriptions, and all relevant `CHANGELOG.md` sections.22 Include later `fix:` commits that are not yet in the changelog. Check product23 docs and code when the effect on readers is unclear.24- Stop and explain if the target release cannot be determined.2526## Existing Text2728The page path is29`apps/docs-website/src/content/docs/releases/<version-with-hyphens>.mdx`.30Use hyphens in filenames and dotted versions in visible text.3132Treat existing pages as manually edited. Preserve their wording, order, and33unrelated content. Make targeted edits when the user requests an update.34Without that request, put proposed changes in35`.context/release-page-<version>-proposal.md`. Restructure an existing page only36when the user requests it.3738## Content3940- Write for users, operators, admins, and integration authors. Describe what41 changes for them. Omit internal refactors, test work, CI, and generated-file42 changes unless they change visible behavior or require reader action.43- Rank features by their effect on readers. Put the largest features first.44 Describe each new feature once, in its final stable form. Implementation45 size and breaking-change labels do not determine headline placement.46- Put compatibility requirements and migration actions in `Upgrade Notes`.47 Transport, storage, media-format, and cache changes are not feature cards48 unless product documentation or the maintainer identifies a separately49 intended user capability. Do not invent a feature from an incidental effect.50- A public integration API replacement can be a headline feature when it51 defines the release. Name the replacement and repeat the required action52 in upgrade notes. Link prerelease testers to the stable API reference;53 do not list each intermediate method or message change.54- Include every bug fix relevant to readers of the previous stable release.55 Omit fixes to behavior introduced and repaired during the prerelease cycle.56 Put migration actions for prerelease testers in upgrade notes.57- Use short, factual sentences and concrete subjects. Avoid marketing claims,58 descriptions of the page itself, emojis, PR lists, and copied changelog text.59- Describe features at the product level. Do not list every affected component,60 screen, or RPC. Keep each card understandable on its own.61- For performance changes, name the visible benefit. Put startup, backup,62 restore, and resource-use improvements with operator content. Put noticeable63 frontend loading improvements with user content.6465## Page And Components6667Read the components in `apps/docs-website/src/components/release-notes/`68before use. Add missing components if the requested page requires them.69Import them from `../../../components/release-notes/` in the MDX page.7071- Start with `ReleaseHero`. Until the stable release exists, use `(unreleased)`72 in the frontmatter title, an unreleased description, and73 `status="Unreleased"` on the hero.74- Use `ReleaseFeatureGrid` with `ReleaseFeatureCard` as direct children.75 This structure supports native Grid Lanes and its polyfill.76- Use one card per feature. Use `size="large"` for headlines, `size="small"`77 for compact items, and the default size otherwise. Keep each card to one78 short paragraph: usually one sentence for small cards and at most two for79 other cards. Move extra detail to upgrade notes, grouped fixes, or the GitHub80 release. Do not add audience labels or subheadings inside cards.81- Add `Running and Integrating Chatto` only when its content needs a separate82 section. A more specific heading is acceptable.83- Put bug fixes in `Smaller fixes you'll appreciate`, grouped by function.84 Do not put fixes in feature cards.85- Add a plain `Upgrade Notes` section when readers must act or check86 compatibility. Do not put these notes in cards or callout boxes.87- End with `GitHub release` and a link to88 `https://github.com/chattocorp/chatto/releases/tag/v<version>`.89 Keep this target for unreleased pages even before it exists.90- Do not force empty sections. Preserve existing sidebar order and labels when91 adding the page to `apps/docs-website/astro.config.mjs`.9293## Images9495Use images only when the maintainer supplies or identifies an asset, or96explicitly requests one. Do not generate screenshots or demo images by default.9798Store release images in99`apps/docs-website/public/releases/<version-with-hyphens>/`.100Use `ReleaseImage` or the card's `imageSrc`, `imageAlt`, `imageCaption`, and101`imagePosition` props. Add useful alt text and a short factual caption. Place102an image beside the feature it shows.103104## Verification105106Run `mise x -- pnpm --filter docs-website build` after page edits. Check that107supplied images render. For material layout or style changes, check the page108at desktop and mobile widths. Report which checks ran.