Merge pull request 'feat(cli): add changelogurl and version cascade docs' (#209) from dev into main
Universal: Cascade Main → Dev / Cascade main → branches (push) Has been cancelled
Generic: Repo Health / Access control (push) Has been cancelled
Generic: Repo Health / Site Health (push) Has been cancelled
Platform: moko-platform CI / Gate 1: Code Quality (push) Has been cancelled
Platform: moko-platform CI / Gate 2: Unit Tests (8.1) (push) Has been cancelled
Platform: moko-platform CI / Gate 2: Unit Tests (8.2) (push) Has been cancelled
Platform: moko-platform CI / Gate 2: Unit Tests (8.3) (push) Has been cancelled
Platform: moko-platform CI / Gate 3: Self-Health Check (push) Has been cancelled
Platform: moko-platform CI / Gate 4: Governance (push) Has been cancelled
Platform: moko-platform CI / Gate 5: Template Integrity (push) Has been cancelled
Platform: moko-platform CI / CI Summary (push) Has been cancelled
Generic: Repo Health / Release configuration (push) Has been cancelled
Generic: Repo Health / Scripts governance (push) Has been cancelled
Generic: Repo Health / Repository health (push) Has been cancelled

This commit was merged in pull request #209.
This commit is contained in:
2026-05-29 10:52:19 +00:00
+14 -3
View File
@@ -367,7 +367,8 @@ function buildEntry(
string $infoUrl,
string $targetPlatform,
string $phpTag,
string $shaTag
string $shaTag,
string $changelogUrl = ''
): string {
$lines = [];
$lines[] = ' <update>';
@@ -399,6 +400,9 @@ function buildEntry(
$lines[] = $shaTag;
}
$lines[] = " <tags><tag>{$tagName}</tag></tags>";
if (!empty($changelogUrl)) {
$lines[] = " <changelogurl>{$changelogUrl}</changelogurl>";
}
$lines[] = ' <maintainer>Moko Consulting</maintainer>';
$lines[] = ' <maintainerurl>https://mokoconsulting.tech</maintainerurl>';
$lines[] = " {$targetPlatform}";
@@ -443,9 +447,15 @@ for ($i = 0; $i <= $stabilityIndex; $i++) {
$joomlaTag = $stabilityTagMap[$channelName] ?? $channelName;
$stabilityLabel = $stabilityLabelMap[$channelName] ?? $channelName;
// All cascaded entries use the SAME version as the highest-stability package.
// The version MUST match what's inside the ZIP (Joomla reads it post-install).
// The <tag> differentiates channels; the version is always the release version.
// Changelog URL: points to the CHANGELOG.md on main branch
$changelogUrl = "{$giteaUrl}/{$org}/{$repo}/raw/branch/main/CHANGELOG.md";
$entries[] = buildEntry(
$joomlaTag,
$channelVersion,
$entryVersion,
$channelDownloadUrl,
$displayName,
$stabilityLabel,
@@ -456,7 +466,8 @@ for ($i = 0; $i <= $stabilityIndex; $i++) {
$channelInfoUrl,
$targetPlatform,
$phpTag,
$shaTag
$shaTag,
$changelogUrl
);
}