chore(register): retire the scaffold example schema - #580
Merged
Conversation
The descriptor carried exactly one schema, the scaffold's `example`
placeholder, and ci-seed.sh asserted it was present after import as a proof
that the import ran at all.
Shillinq shipped the same untouched placeholder, so two apps claimed the
slug `example` on a shared OpenRegister, where slugs are global. Measured
on the dev instance: id 432 (shillinq) and id 1112 (keepiq), byte-identical
two-property schemas.
Keepiq keeps its secrets in its own lib/Db tables rather than as
OpenRegister objects, so there is no real schema to put in its place. The
descriptor now declares no schemas and no registers, and ci-seed.sh reports
the schemas it finds instead of asserting one, matching what the adjacent
`registers` branch already did and for the same stated reason.
occ openregister:schemas:prune-retired --app keepiq --slug example --apply
-> example (id=1112, app=keepiq): 0 objects, referenced by 1 register(s)
DELETED (objects removed=0, table dropped=yes)
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 | ✅ | ✅ 536/536 | |||
| app:check-code | ⏭️ | ||||
| info.xml | ✅ | ||||
| REUSE | ❌ | ||||
| PHPUnit | ✅ | ||||
| Newman | ✅ | ||||
| Playwright | ⏭️ deferred — runs on the promotion into beta/main, not on a pull request into development | ||||
| Hydra gates | ✅ |
Quality workflow — 2026-08-31 21:20 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.
Part of the fleet schema consolidation.
The descriptor carried exactly one schema, the scaffold's
exampleplaceholder, andci-seed.shasserted it was present after import as a proof that the import ran at all.Shillinq shipped the same untouched placeholder, so two apps claimed the slug
exampleon a shared OpenRegister, where slugs are global. Measured on the dev instance: id 432 (shillinq) and id 1112 (keepiq), byte-identical two-property schemas.Why it is not replaced with a real schema
Keepiq keeps its secrets in its own
lib/Dbtables rather than as OpenRegister objects, which is what the descriptor's own comment already said. There is no real schema to put in its place, so the descriptor now declares no schemas and no registers.ci-seed.shreports the schemas it finds instead of asserting one. That matches what the adjacentregistersbranch in the same script already did, and for the same stated reason: asserting something the shipped config does not describe.Verified
info.version0.1.1 to 0.2.0. Depends on ConductionNL/openregister#3248.Follow-up worth considering: with no schemas and no registers,
keepiq_register.jsondescribes nothing. Retiring the file entirely is the honest end state, but that is a larger change than this one.🤖 Generated with Claude Code