chore(release): raise the version line above 0.2.0-beta.1 on the App Store - #465
Merged
Merged
Conversation
The App Store serves 0.2.0-beta.1 (doriath) for this app, and the release workflow was computing a beta BELOW it. The baseline comes from this repo's latest stable tag and appinfo/info.xml, neither of which knows what was published while the fleet released from Codeberg -- that line had walked up a minor that only exists as prerelease tags, which the stable-tag filter cannot see. The store has no version ordering rule (_check_permission validates existence and ownership only), so a lower version uploads with a 200 and is then never offered to anyone already on the higher one. Setting the baseline to 0.2.0 makes the next beta 0.2.1-beta.<ts>, which clears it. Minor bump only -- the major is unchanged.
Contributor
Quality Report — ConductionNL/keepiq @
|
| Check | PHP | Vue | Security | License | Tests |
|---|---|---|---|---|---|
| lint | ✅ | ||||
| phpcs | ✅ | ||||
| phpmd | ✅ | ||||
| psalm | ✅ | ||||
| phpstan | ✅ | ||||
| phpmetrics | ✅ | ||||
| eslint | ✅ | ||||
| stylelint | ✅ | ||||
| build | ✅ | ||||
| check-manifest | ✅ | ||||
| test-l10n | ✅ | ||||
| format | ✅ | ||||
| check-l10n-js | ✅ | ||||
| check-schema-l10n | ✅ | ||||
| composer | ✅ | ✅ 111/111 | |||
| npm | ✅ | ✅ 550/550 | |||
| app:check-code | ⏭️ | ||||
| info.xml | ✅ | ||||
| REUSE | ❌ | ||||
| PHPUnit | ✅ | ||||
| Newman | ✅ | ||||
| Playwright | ✅ | ||||
| Hydra gates | ✅ |
Quality workflow — 2026-08-27 18:28 UTC
Download the full PDF report from the workflow artifacts.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The App Store serves
0.2.0-beta.1for this app (store iddoriath), and the release workflow computes a beta below it.The baseline comes from this repo's latest stable tag and
appinfo/info.xml. Neither knows what was published while the fleet released from Codeberg — that line had walked up a minor, and it exists only as prerelease tags, which the^v[0-9]+\.[0-9]+\.[0-9]+$stable-tag filter cannot see.The store has no version ordering rule —
_check_permissionvalidates existence and ownership only — so a lower version uploads with a 200 and is then never offered to anyone already on the higher one. It is not a rejection, it is a silent no-op.This change:
<version>→0.2.0, so the next beta is0.2.1-beta.<ts>, which clears the store. Minor bump only; the major is unchanged.Nothing else is touched —
openapi.json(where present) is re-synced to the new version by the release job itself.Related: ConductionNL/.github#593 makes this self-correcting by reading the store directly, so the baseline cannot drift below it again.