Release v0.6.2: unified deep-build, lifecycle consolidation & bare-translation display#71
Merged
smartlabsAT merged 4 commits intoJun 13, 2026
Conversation
Behavior change: first-level to-many (o2m/m2m/files) and bare translations are now fetched unbounded (deep _limit=-1), consistent with the nested-M2A policy. See CHANGELOG v0.7.0.
A bare translations column now shows the active-language row through its configured/heuristic template (HTML-stripped) instead of raw JSON. Reuses the exported pickTranslationRow and resolveUserLanguage.
4 tasks
Quality Check ResultsTypeScript Type Check✅ Passed - No type errors found ESLint✅ Passed - No linting errors Prettier Format Check✅ Passed - Code is properly formatted Build✅ Passed - Extension builds successfully Updated: 2026-06-13T15:00:13.766Z |
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.
Closes #70.
Consolidates the
super-table.vueorchestrator and unifiesdeep-query construction onto a single schema-driven classifier (describeHop), plus a folded-in display improvement. Released as 0.6.2 (patch on the 0.6.x line — a deliberate, contained behavior change; see note below).Changes
Refactor — one schema-driven deep classifier (
buildDeep)deepentries are both derived viadescribeHop, removing the ad-hocspecial.includes(...)first-level branch from the SFC.super-table.vueshrinks ~98 lines.Behavior change — to-many fetched completely
o2m/m2m/filescolumns (and baretranslations) now fetch unbounded (deep[<field>][_limit]=-1), consistent with the nested-M2A policy. Previously they were capped at the server default page size (silently truncating the comma-joined list) or not fetched. Trade-off: a column on a very large to-many relation fetches every row — the inherent cost of displaying it fully. Verified live that first-level to-many columns render ALL elements joined (e.g.tags→ "Urgent1, VIP2"), so the unbounded fetch is required for completeness, not cosmetic.Lifecycle consolidation
onMounted/onUnmountedblocks are merged into one auditable pair (4 listeners add/remove symmetric; initialloadPresets/scheduleGetItemspreserved).Feature — bare
translationscolumns render the active-language valuetranslationscolumn renders the active-language row (current user's language → first-row fallback) through its configured template or a heuristic field (description/title/…), HTML-stripped. Pure, testablerenderBareTranslationreusing the exportedpickTranslationRow+resolveUserLanguage.Verification
vue-tsc, ESLint--max-warnings=0, Prettier — all green.deep[tags][_limit]=-1); core interactions (search, pagination→page 2 single-fetch, bookmarks M2A relationship is not displayed correctly #60/Support deep relational paths in M2A templates (nested translations inside the target) #65 repro presets); full M2A/translation regression identical to v0.6.1; bare-translations column shows readable descriptions, not JSON._limit:1" finding was refuted live — it would break m2m/o2m column display) and the bare-translation render branch (test-gap auflagen closed by extractingrenderBareTranslation+ directpickTranslationRowtests).Note on versioning
Strict SemVer would call the behavior change a minor; on this 0.x project it ships as a patch (0.6.2) at maintainer discretion.
Test plan