feat: add twilight support to release notes and update related components

This commit is contained in:
mr. M 2025-01-01 17:56:36 +01:00
parent bf1d514141
commit ec4ab1c93e
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB
7 changed files with 451 additions and 203 deletions

View file

@ -11,7 +11,7 @@ export type BreakingChange = string | { description: string; link: string };
export interface ReleaseNote {
version: string;
date: string;
date?: string; // optional for twilight
extra?: string;
image?: boolean;
fixes?: Fix[];
@ -20,6 +20,7 @@ export interface ReleaseNote {
themeChanges?: string[];
inProgress?: boolean;
workflowId?: number;
isTwilight?: boolean;
}
export const releaseNotes: ReleaseNote[] = releaseNotesStable.reverse();