23b66875e4d6ab5dd7490a5ac4f7562fafb8906a
codewithcj changed sparkyfitness versioning on 2026-06-01:
- Old (through v0.16.6.3 / 2026-05-24): vMAJOR.MINOR.PATCH.BUILD
- New (from v0.16.7 / 2026-06-01) : vMAJOR.MINOR.PATCH
Our version-checker regex was `^v\d+\.\d+\.\d+\.\d+$` (4 segments
only), so the new v0.16.7 / v0.16.8 tags were invisible to it. The
"newest matching" became an arbitrarily-chosen old 4-segment tag
(v0.16.5.9 in the latest scan), which then showed up as an "upgrade
to an older version" -- nonsense, but predictable given the filter.
Two changes:
1. Bump both `codewithcj/sparkyfitness` (frontend) and
`codewithcj/sparkyfitness_server` (backend) from v0.16.6.3 to
v0.16.8 (the actual upstream latest).
2. Loosen the regex to `^v\d+\.\d+\.\d+(\.\d+)?$` so it matches
both the legacy 4-segment form and the new 3-segment form.
Once everything's on 3-segment we can tighten it again if we
want, but the current form is harmless.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Description
No description provided