From 6ec13025c6b7c926dcb06490893b369ce19a1215 Mon Sep 17 00:00:00 2001 From: Amedeo Palopoli Date: Mon, 3 Aug 2026 17:38:32 +0200 Subject: [PATCH 1/2] docs: wire changelog page into sidebar and footer - Add Docusaurus frontmatter to docs/changelog.md so it renders correctly - Update footer link from external GitHub Releases href to internal /next/changelog route --- docs/website/docs/changelog.md | 6 +++++- docs/website/docusaurus.config.js | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/website/docs/changelog.md b/docs/website/docs/changelog.md index 9216859..27c99d4 100644 --- a/docs/website/docs/changelog.md +++ b/docs/website/docs/changelog.md @@ -1,4 +1,8 @@ -# Changelog +--- +id: changelog +title: Changelog +sidebar_label: Changelog +--- All notable changes to this project will be documented in this file. diff --git a/docs/website/docusaurus.config.js b/docs/website/docusaurus.config.js index ca43487..7a7d5c8 100644 --- a/docs/website/docusaurus.config.js +++ b/docs/website/docusaurus.config.js @@ -166,7 +166,7 @@ const config = { }, { label: 'Changelog', - href: 'https://github.com/Arubacloud/acloud-github-runner/releases', + to: '/next/changelog', }, ], }, From baa6e2eb456c8e1b07381ce84c0e01f1f2c3ba4c Mon Sep 17 00:00:00 2001 From: Amedeo Palopoli Date: Mon, 3 Aug 2026 17:43:30 +0200 Subject: [PATCH 2/2] docs: fix footer changelog link and add frontmatter to versioned changelog - Change footer link from /next/changelog to /changelog so it resolves in both CI (DISABLE_VERSIONING=true, docs at /) and production (v1.0.0 changelog exists) - Add Docusaurus frontmatter to versioned_docs/version-1.0.0/changelog.md --- docs/website/docusaurus.config.js | 2 +- docs/website/versioned_docs/version-1.0.0/changelog.md | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/website/docusaurus.config.js b/docs/website/docusaurus.config.js index 7a7d5c8..7a7c8fb 100644 --- a/docs/website/docusaurus.config.js +++ b/docs/website/docusaurus.config.js @@ -166,7 +166,7 @@ const config = { }, { label: 'Changelog', - to: '/next/changelog', + to: '/changelog', }, ], }, diff --git a/docs/website/versioned_docs/version-1.0.0/changelog.md b/docs/website/versioned_docs/version-1.0.0/changelog.md index 9216859..27c99d4 100644 --- a/docs/website/versioned_docs/version-1.0.0/changelog.md +++ b/docs/website/versioned_docs/version-1.0.0/changelog.md @@ -1,4 +1,8 @@ -# Changelog +--- +id: changelog +title: Changelog +sidebar_label: Changelog +--- All notable changes to this project will be documented in this file.