From 3686e7facf19881aefa2a5d95a98a0c130f74be4 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sun, 26 Oct 2025 16:32:00 +0100 Subject: [PATCH] Remove changelog --- web/pages/news.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/pages/news.tsx b/web/pages/news.tsx index 586770c1..ad2a89ea 100644 --- a/web/pages/news.tsx +++ b/web/pages/news.tsx @@ -65,7 +65,7 @@ export default function WhatsNew() { {new Date(release.published_at).toLocaleDateString()} -
+
{formatPullLinks(release.body || "_No release notes provided._")} @@ -86,7 +86,7 @@ function formatPullLinks(text = "") { /https:\/\/github\.com\/CompassConnections\/Compass\/pull\/(\d+)/g, (_, num) => `[#${num}](https://github.com/CompassConnections/Compass/pull/${num})`) .replace( - /https:\/\/github\.com\/CompassConnections\/Compass\/compare\/([\w.-]+\.\.\.[\w.-]+)/g, - (_, range) => `[${range}](https://github.com/CompassConnections/Compass/compare/${range})`) + /\**Full Changelog\**: https:\/\/github\.com\/CompassConnections\/Compass\/compare\/([\w.-]+\.\.\.[\w.-]+)/g, + '') }