Problem
Release notes pages across v1.12.x, v1.13.x, and v2.0.x-SNAPSHOT had inconsistent naming:
- Sidebar titles and in-page H1s mixed "X.Y Release" (singular, sidebar) with "X.Y Releases" (plural, H1), and the current-version page for each stream was oddly named
all-releases.mdx while every older minor version had its own <version>-release.mdx file.
- Frontmatter
title: fields carried a redundant trailing suffix (e.g. 1.10 Release | OpenMetadata 1.10 Releases) instead of ending cleanly at OpenMetadata.
- The
docs.json nav group was labeled "All Releases" instead of "All Release Notes", inconsistent with the rest of the naming.
v1.12.x/releases.mdx imported a nonexistent snippet, /snippets/releases/1.2.14.mdx (typo, missing a digit — should be 1.12.14.mdx), which would have rendered a broken/blank latest-release page for v1.12.x.
Fix
Fixed by #394.
Problem
Release notes pages across
v1.12.x,v1.13.x, andv2.0.x-SNAPSHOThad inconsistent naming:all-releases.mdxwhile every older minor version had its own<version>-release.mdxfile.title:fields carried a redundant trailing suffix (e.g.1.10 Release | OpenMetadata 1.10 Releases) instead of ending cleanly atOpenMetadata.docs.jsonnav group was labeled"All Releases"instead of"All Release Notes", inconsistent with the rest of the naming.v1.12.x/releases.mdximported a nonexistent snippet,/snippets/releases/1.2.14.mdx(typo, missing a digit — should be1.12.14.mdx), which would have rendered a broken/blank latest-release page for v1.12.x.Fix
all-releases.mdxto<version>-release.mdxper version line, matching the existing pattern for older minorsX.Y Release Notes(Older Release Notesfor the archive page,Latest Release Notesfor the two pages that track the current shipping version)OpenMetadata"All Releases"nav group to"All Release Notes"indocs.json1.2.14.mdx→1.12.14.mdxsnippet importFixed by #394.