fix: update server feed generation bugs in joomla.go #601

Open
opened 2026-06-11 21:14:57 +00:00 by jmiller · 1 comment
Owner

Summary

Two issues in services/updateserver/joomla.go prevent Joomla 6.x from seeing updates:

  1. targetplatform (line 186): Default regex incompatible with Joomla version matching
  2. client tag (line 388): Packages mapped to client=administrator but Joomla packages have client_id=0 (site) — mismatch silently drops the update

Workaround

  • All 19 repo_manifest.target_version rows updated to 6..*
  • Go source fixed locally, needs Docker rebuild

Fix

  1. Line 186: change default to 6..*
  2. Line 388: remove package from administrator case (packages = site in Joomla)
## Summary Two issues in services/updateserver/joomla.go prevent Joomla 6.x from seeing updates: 1. **targetplatform** (line 186): Default regex incompatible with Joomla version matching 2. **client tag** (line 388): Packages mapped to client=administrator but Joomla packages have client_id=0 (site) — mismatch silently drops the update ## Workaround - All 19 repo_manifest.target_version rows updated to 6..* - Go source fixed locally, needs Docker rebuild ## Fix 1. Line 186: change default to 6\..* 2. Line 388: remove package from administrator case (packages = site in Joomla)
Author
Owner

Branch created: feature/601-fix-default-targetplatform-incompatible-

git fetch origin
git checkout feature/601-fix-default-targetplatform-incompatible-
Branch created: [`feature/601-fix-default-targetplatform-incompatible-`](https://code.mokoconsulting.tech/MokoConsulting/MokoGitea-APP/src/branch/feature/601-fix-default-targetplatform-incompatible-) ```bash git fetch origin git checkout feature/601-fix-default-targetplatform-incompatible- ```
jmiller changed title from fix: default targetplatform incompatible with Joomla 6 to fix: update server feed generation bugs in joomla.go 2026-06-11 21:16:35 +00:00
jmiller reopened this issue 2026-06-11 22:36:26 +00:00
Sign in to join this conversation.