From dee127ce5ead9b69ebfb09615fb69666f92b38d5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 27 Feb 2026 14:10:07 +0000 Subject: [PATCH 1/2] Initial plan From 38a919c05e1259947235bd2e08e1ea3ae6a126fd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 27 Feb 2026 14:15:18 +0000 Subject: [PATCH 2/2] Fix release notes never appearing in Slack notifications Co-authored-by: Vetle444 <35739538+Vetle444@users.noreply.github.com> --- CHANGELOG.md | 3 +++ build/AwesomeBuildsystem/Core/VersionUtil.csx | 2 +- build/build.csx | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 566fc8355..0227659d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## [55.2.3] +- [Build] Fixed release notes never being included in Slack notifications + ## [55.2.2] - [iOS26][Tip] Added more padding. diff --git a/build/AwesomeBuildsystem/Core/VersionUtil.csx b/build/AwesomeBuildsystem/Core/VersionUtil.csx index 3d2c8ddf1..79ddd1ae4 100644 --- a/build/AwesomeBuildsystem/Core/VersionUtil.csx +++ b/build/AwesomeBuildsystem/Core/VersionUtil.csx @@ -68,7 +68,7 @@ public static class VersionUtil foreach (var line in lines) { - if (!foundHeader && (changelogHeader == null || line.Contains(changelogHeader ?? "## Version"))) + if (!foundHeader && (changelogHeader == null || Regex.IsMatch(line, changelogHeader))) { foundHeader = true; continue; diff --git a/build/build.csx b/build/build.csx index 3557c7278..d0ebfd4bc 100755 --- a/build/build.csx +++ b/build/build.csx @@ -400,7 +400,7 @@ TaskRunner var ipaFilePath = outputFiles.FirstOrDefault(f => f.EndsWith(".ipa")); var aabFilePath = outputFiles.FirstOrDefault(f => f.EndsWith(".aab")); var version = Utils.GetChangelogVersion(RootDirectory, ChangelogHeaderPrefix, VersionPattern); - var releaseNote = Utils.GetChangelogNotes(RootDirectory, $"{ChangelogHeaderPrefix}{VersionPattern}] - [0-9]+-[0-9]+-[0-9]+"); + var releaseNote = Utils.GetChangelogNotes(RootDirectory, $"## \\[{VersionPattern}\\]"); var isIOSDelivery = ipaFilePath != null; var isAndroidDelivery = aabFilePath != null;