Release notes and changelog for Narvana - the modern PaaS platform.
# Install dependencies
bun install
# Start development server
bun run dev
# Build for production
bun run buildRelease entries are automatically generated when a new version is tagged in the control-plane repository. The GitHub Actions workflow:
- Creates a release entry markdown file in
src/content/releases/ - Generates an SVG banner for the release
- Commits and pushes the changes
To manually add a release, create a markdown file in src/content/releases/ with the following frontmatter:
---
title: "Narvana v1.0.0"
date: "2026-01-07"
versionNumber: "1.0.0"
description: "Brief description of the release"
image:
src: "../../assets/release-1_0_0.svg"
alt: "Narvana v1.0.0 Release"
---
## What's New
Your release content here...To use a custom banner instead of the auto-generated one, place your SVG file at:
src/assets/custom/release-{version_underscore}.svg
For example, for version 1.0.0: src/assets/custom/release-1_0_0.svg
Apache License 2.0 - see the control-plane repository for details.