Skip to content

fix(core,list): 列身份归一到 ingestion chokepoint — 一列一个身份 (#3104 PR1) - #3119

Merged
os-zhuang merged 1 commit into
mainfrom
claude/identity-dual-read-field-priority-h5crvu
Jul 31, 2026
Merged

fix(core,list): 列身份归一到 ingestion chokepoint — 一列一个身份 (#3104 PR1)#3119
os-zhuang merged 1 commit into
mainfrom
claude/identity-dual-read-field-priority-h5crvu

Conversation

@os-zhuang

Copy link
Copy Markdown
Contributor

#3104 PR1(盘点 + 复现 + 归一器)。台账:objectstack#4115。

复现:缺陷比 issue 描述的更严重 —— ListView 和 ObjectGrid 各自和自己打架

issue 的框架是「两种优先序并存于 15+ 处」。逐点位读完源码后,真正的机制不是「不同文件用不同优先序」,而是同一个文件里,请求路径和渲染路径读同一个 schema.columns 却解析出两个字段:

路径 代码 读法
请求 ListView.tsxexpandFields / selectFields memo;ObjectGrid.getSelectFields f?.field,只读 field
渲染 FLS 闸门、hiddenFields 过滤、fieldOrder 排序、导出 ×2、hide-fields 弹层 f.name || f.fieldName || f.field,name 优先

两个后果,都是静默的:

  • { field: 'account', name: 'account_name' } → 行数据按 account 取(含 $expand=account),而字段级权限检查、导出、hide-fields 全部按 account_name。一列,两个字段。
  • { name: 'account' } → 渲染路径把这列画出来,请求路径解析成 undefined 直接滤掉 —— $select$expand 都不带它。列在那里,后面什么都没有。

这就是「关系列显示裸 id / 列全空 / 排序不生效 / 导出缺列」这一缺陷类的机制。

ListColumnSchema(spec 17.0.0-rc.0)只声明了一个必填键 field,没有 name、没有 fieldName、没有 accessorKey —— 所以 field 不是「几种方言之一」,它是契约。

归一:挂在已有的 chokepoint 上,不在消费端铺 ?? name

按 AGENTS.md #0.1,修法不是在读点再加一个 ?? name。遗留接纳收进已经在折叠这个视图词汇表的那一处:normalizeListViewSchema(@object-ui/core,ListView 组件边界的唯一 fold,#2890 建立)。它现在多折一层列身份,且排在 fieldscolumns 改名之后 —— 一个两轴都遗留的视图(遗留列表键 + 遗留条目键)一趟修完。

新增 @object-ui/coreutils/column-identity.ts:

导出 作用
columnIdentity(entry) 唯一读者fieldnamefieldName,canonical-first,所以与 buildExpandFields 一致而不是和它赛跑;兼容裸字符串列
normalizeColumnIdentity(-ies)() 归一器
hasConflictingColumnIdentity(entry) 列的多个键互相矛盾时为 true(留给 PR3 的响亮化)
CANONICAL_COLUMN_IDENTITY_KEY / LEGACY_COLUMN_IDENTITY_KEYS / TABLE_ADAPTER_COLUMN_KEY 词汇表本身

stamp 策略 = 镜像,不删除(与 normalizeListViewSchema 里其它 fold 相反,这是刻意的):

  • field 写入解析出的身份 → 请求路径永远找得到。
  • 已经存在的遗留键被覆盖成同一个身份 → 尚未收敛的 name-first 读点解析出的,正是请求所要的那个字段。
  • 不存在的遗留键绝不凭空创造 —— 干净的 { field: 'stage' } 原样按引用返回。归一器不去制造它正要退役的词汇。

删除在仓内是可行的(每个 name-first 读法都会 fall through 到 field),但 columns 条目会越过包边界进入宿主渲染器,把 name 从它们脚下抽掉是一个我们没有清单的破坏性变更。删除留给 PR3,等仓内消费者都改读 columnIdentity() 之后。

accessorKey 刻意不碰:它是 TanStack Table 自己的列键(TableColumn.accessorKey,types/src/data-display.ts),命名的是表格列模型里的槽位,不是 ObjectStack 元数据身份。跨这条边界做归一只会把这次合并固化下来 —— 正是本战役要拆的东西。

行为:任何只带一个身份键的列,每个读点解析出的字符串与改动前完全相同。解析结果发生变化的,恰好是那些两个读点本来就不一致的条目 —— 那是缺陷,不是回归。

盘点(ratchet)

column-identity.ratchet.test.ts 扫描 packages/*/src,把 34 个点位连同每处的优先序和判定冻结入库。新增双读、或已列文件里多出一处 → 红;变少也红(要求在移除读点的同一个 commit 里把数字降下来,树里的实况和台账不会漂移)。

判定 数量 说明
column-identity 24 本战役的目标,PR2 收敛
two-layer 6 两层概念,不是两种拼写
form-cluster 2 #3090 已按相反方向定案
unrelated 2 扫描器噪音,记录在案以免藏住真的

column-identity 24 处:ListView.tsx ×9(name-first)、RelatedList.tsx ×8(adapter-first)、ObjectGrid.tsx / ObjectTree.tsx ×1(name-first)、expand-fields.ts / record-details.tsx / record-related-list.tsx / ViewPreview.tsx / SchemaForm.tsx ×1(field-first)。

对 issue 盘点的两处更正

issue 把 dashboard-filters.ts:146resolveActionParams.ts 列为优先序对立的证据。读完声明后,这两处不是同一身份的双读:

  • resolveActionParams.ts(3 处) —— 同一文件里两种优先序都对field ?? name 选的是从 row 上读哪个键(行数据按对象字段做键);name ?? field 命名的是动作负载里的 param,缺省用它绑定的字段名。两个概念。
  • core/utils/dashboard-filters.ts(1 处) —— DashboardFilterDef 把两个键都显式声明了:name 是过滤器变量的句柄,field 是它指向的对象字段。f.name || f.field 是「没起名的过滤器,句柄缺省取所绑字段」,是一个派生,不是双读。

也就是说「两种优先序对半分 ⇒ 污染已经发生」这个推论,有一部分其实是两层概念(正是 #3090 的判别法)。真正的污染在别处,而且更糟:ListView 和 ObjectGrid 各自和自己不一致。

未知项(issue 要求查清)

  • fieldName 第三键的写入方与存量 —— 全仓没有写入方grep 'fieldName:' 的每一处命中都是函数形参或无关的接口成员(AIFieldSuggestion.fieldName),没有任何代码往列对象上写 fieldName。它只活在读者里(防御性写法)。归一器仍然接纳它(宿主存量元数据可能带),ratchet 也计它,但结论是:这个键没有生产者。
  • accessorKey —— TanStack Table 的适配键,见上,不属于本战役。

闸门 mutation-test(逐个删机制,证明会红)

变异 闸门 结果
M1 摘掉 normalizeListViewSchema 里的列身份 fold 复现测试 + core 单测 🔴 5 failed(含 expected [] to include 'account')
M2 在未列入的文件里新写一处 c.name ?? c.field ratchet 🔴 sort-values.ts:149 被点名
M3 把 expand-fields.ts 的双读收敛成单键 ratchet 🔴 0 dual reads, inventory says 1 — good news; lower the count

复现测试怎么观测「一列两个身份」

ListView.columnIdentity.test.tsx真实的 ListView,checkField 是最利落的观测点:两条路径都会调它(渲染侧来自 effectiveFields,请求侧来自 selectFields),所以两个键不一致的列会让同一列检查两个不同的字段名。断言是「恰好一个身份」,外加 $select / $expand 的正向断言。

复现测试落地即绿(不是红着合进 main):缺陷由 M1 变异证明 —— 摘掉 fold 立刻红。

验证

vitest  packages/core                                  →  60 files / 1295 tests 绿
vitest  packages/plugin-list plugin-grid plugin-view   →  70 files /  743 tests 绿
vitest  packages/types plugin-detail plugin-tree       →  57 files /  610 tests 绿
vitest  packages/app-shell                             → 250 files / 2089 tests 绿
turbo   type-check --filter=core --filter=plugin-list  →  绿
eslint  改动文件 --quiet                                →  0 error

(首轮 type-checkCannot find module '@object-ui/permissions'packages/permissions/dist 未构建导致的既有构建顺序问题,与本 PR 无关;构建该包后即绿。)

破坏面

@object-ui/core minor(按 AGENTS.md §9,objectui 的破坏性变更也标 minor)。纯新增 API + 一处 ingestion fold。单键列零行为变化。

后续

  • PR2 消费者收敛:24 处改读 columnIdentity(),ratchet 计数随之下降。
  • PR3 闸门 + 响亮化(hasConflictingColumnIdentity 已就位)、fold 从镜像改为删除、台账条目处置。

关联:objectstack#4115(台账)、#3090(playbook 与判别法)、#2598(chokepoint 先例)、#3103(热身件,已合)。


Generated by Claude Code

Column field identity was resolved twice with two different precedences over
the same `schema.columns` array, and the two halves disagreed:

  request path  ListView's `$expand` / `$select` builders and
                ObjectGrid.getSelectFields read `f?.field` and ONLY that.
  render path   the FLS gate, the hidden-field filter, `fieldOrder`, both
                export branches and the hide-fields popover read
                `f.name || f.fieldName || f.field` — name FIRST.

So `{field:'account', name:'account_name'}` fetched `account` while the
renderer keyed off `account_name`, and `{name:'account'}` rendered a column
the request dropped entirely. That is the mechanism behind the "relation
column shows a bare id / column is empty / sort does nothing / export is
missing a column" defect class.

Per AGENTS.md #0.1 the fix is not another `?? name` at the read sites. Legacy
acceptance moves to the boundary that already folds this view's vocabulary:
`normalizeListViewSchema` now canonicalizes each column's identity too,
running after the `fields` -> `columns` rename so a doubly-legacy view is
fixed on both axes in one pass.

New in @object-ui/core (`utils/column-identity.ts`):
  columnIdentity()                 the single reader, canonical-first
  normalizeColumnIdentity(-ies)()  the fold
  hasConflictingColumnIdentity()   true when a column's keys disagree

The fold MIRRORS rather than deletes the legacy key, unlike the other folds in
normalizeListViewSchema. Deleting works in-repo (every name-first read falls
through to `field`), but `columns` entries cross the package boundary into host
renderers and dropping `name` from under them is a breaking change with no
inventory. An absent legacy key is never invented, and an already-canonical
column is returned by reference so ListView's useMemo deps stay stable.

`accessorKey` is deliberately untouched: it is TanStack Table's column key
(`TableColumn.accessorKey`), not ObjectStack metadata identity.

Tests:
  - ListView.columnIdentity.test.tsx — the repro through the real ListView.
    `checkField` is the observable: BOTH paths call it, so a column whose keys
    disagree checks two different field names. Now exactly one.
  - column-identity.ratchet.test.ts — the 34-site inventory with a per-site
    precedence and verdict; a new dual read, or an extra one in a listed file,
    fails. Shrinking fails too, so the tree and the record cannot drift.

The inventory corrects the issue's framing in two places: resolveActionParams
(3) and dashboard-filters (1) carry BOTH orders legitimately — `name` and
`field` are separately declared there and mean different things, so those are
two layers, not two spellings. The real pollution is worse than "two orders
coexist": ListView and ObjectGrid each disagree with themselves.

Behaviour is unchanged for any column carrying a single identity key. The
entries whose resolution moves are exactly the ones where two sites already
disagreed.

Refs: objectstack#4115, #3090 (playbook), #2598 (chokepoint precedent)

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01C2pdPmf2yZSd4wFDs1NHY5
@vercel

vercel Bot commented Jul 31, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

1 Skipped Deployment
Project Deployment Actions Updated (UTC)
objectui Ignored Ignored Jul 31, 2026 11:16am

Request Review

@github-actions

Copy link
Copy Markdown
Contributor

✅ Console Performance Budget

Metric Value Budget
Main entry (gzip) 28.1 KB 350 KB
Entry file index-BXu_WsYz.js
Status PASS

📦 Bundle Size Report

Package Size Gzipped
app-shell (index.js) 8.26KB 2.99KB
app-shell (runtime-config.js) 7.42KB 2.32KB
app-shell (types.js) 0.01KB 0.04KB
app-shell (urlParams.js) 7.57KB 2.97KB
auth (AuthContext.js) 0.31KB 0.24KB
auth (AuthGuard.js) 1.17KB 0.53KB
auth (AuthProvider.js) 22.10KB 4.37KB
auth (AuthShell.js) 3.49KB 1.40KB
auth (ForgotPasswordForm.js) 12.12KB 3.41KB
auth (LoginForm.js) 17.86KB 5.29KB
auth (PreviewBanner.js) 0.90KB 0.50KB
auth (RegisterForm.js) 6.43KB 2.09KB
auth (SocialSignInButtons.js) 9.60KB 3.89KB
auth (UserMenu.js) 3.40KB 1.22KB
auth (auth-gate-events.js) 1.29KB 0.66KB
auth (authStyles.js) 5.04KB 1.72KB
auth (createAuthClient.js) 35.76KB 9.11KB
auth (createAuthenticatedFetch.js) 4.37KB 1.69KB
auth (index.js) 2.35KB 1.07KB
auth (org-roles.js) 6.66KB 2.78KB
auth (phone-identifier.js) 1.11KB 0.66KB
auth (types.js) 0.59KB 0.35KB
auth (useAuth.js) 4.91KB 0.87KB
auth (useIsWorkspaceAdmin.js) 1.61KB 0.85KB
collaboration (CommentThread.js) 18.38KB 4.49KB
collaboration (LiveCursors.js) 3.17KB 1.27KB
collaboration (PresenceAvatars.js) 3.65KB 1.42KB
collaboration (PresenceProvider.js) 2.79KB 1.13KB
collaboration (index.js) 1.25KB 0.53KB
collaboration (useCommentSearch.js) 1.98KB 0.88KB
collaboration (useConflictResolution.js) 7.75KB 1.86KB
collaboration (useMentionNotifications.js) 1.81KB 0.68KB
collaboration (usePresence.js) 6.33KB 1.84KB
collaboration (useRealtimeSubscription.js) 7.91KB 2.01KB
components (index.js) 474.90KB 104.10KB
core (index.js) 2.25KB 0.80KB
create-plugin (index.js) 9.28KB 2.98KB
data-objectstack (index.js) 136.20KB 34.74KB
fields (index.js) 222.06KB 54.35KB
i18n (LocalizationContext.js) 1.76KB 0.96KB
i18n (currency.js) 1.22KB 0.64KB
i18n (i18n.js) 4.32KB 1.77KB
i18n (index.js) 2.46KB 0.96KB
i18n (pickLocalized.js) 1.70KB 0.83KB
i18n (provider.js) 5.37KB 1.72KB
i18n (useObjectLabel.js) 25.17KB 5.80KB
i18n (useSafeTranslation.js) 3.26KB 1.44KB
layout (index.js) 38.44KB 10.66KB
mobile (MobileProvider.js) 0.92KB 0.49KB
mobile (ResponsiveContainer.js) 0.94KB 0.38KB
mobile (breakpoints.js) 1.51KB 0.70KB
mobile (createOfflineDataSource.js) 5.61KB 1.74KB
mobile (index.js) 1.50KB 0.62KB
mobile (offlineQueue.js) 3.91KB 1.35KB
mobile (pwa.js) 0.97KB 0.49KB
mobile (serviceWorker.js) 1.48KB 0.62KB
mobile (serviceWorkerSource.js) 3.41KB 1.48KB
mobile (useBreakpoint.js) 1.54KB 0.65KB
mobile (useGesture.js) 6.96KB 1.98KB
mobile (useOfflineSync.js) 1.99KB 0.72KB
mobile (usePullToRefresh.js) 2.53KB 0.85KB
mobile (useResponsive.js) 0.71KB 0.42KB
mobile (useResponsiveConfig.js) 1.36KB 0.63KB
mobile (useSpecGesture.js) 4.05KB 1.53KB
mobile (useTouchTarget.js) 1.01KB 0.54KB
permissions (MePermissionsProvider.js) 8.75KB 3.06KB
permissions (PermissionContext.js) 0.31KB 0.25KB
permissions (PermissionGuard.js) 0.89KB 0.45KB
permissions (PermissionProvider.js) 3.67KB 1.12KB
permissions (evaluator.js) 4.41KB 1.44KB
permissions (index.js) 0.91KB 0.41KB
permissions (store.js) 0.91KB 0.42KB
permissions (useFieldPermissions.js) 1.28KB 0.52KB
permissions (usePermissions.js) 1.55KB 0.71KB
plugin-ai (index.js) 15.71KB 3.79KB
plugin-calendar (index.js) 44.90KB 12.35KB
plugin-charts (index.js) 60.52KB 17.11KB
plugin-chatbot (index.js) 180.09KB 42.72KB
plugin-dashboard (index.js) 111.59KB 28.74KB
plugin-designer (index.js) 210.51KB 42.50KB
plugin-detail (index.js) 222.38KB 54.45KB
plugin-editor (index.js) 2.46KB 1.10KB
plugin-form (index.js) 111.38KB 26.93KB
plugin-gantt (index.js) 162.26KB 39.53KB
plugin-grid (index.js) 183.32KB 48.56KB
plugin-kanban (index.js) 47.82KB 13.18KB
plugin-list (index.js) 105.07KB 25.24KB
plugin-map (index.js) 16.80KB 5.24KB
plugin-markdown (index.js) 13.65KB 4.67KB
plugin-report (index.js) 40.32KB 10.53KB
plugin-timeline (index.js) 25.75KB 7.32KB
plugin-tree (index.js) 8.36KB 2.81KB
plugin-view (index.js) 83.54KB 20.39KB
providers (DataSourceProvider.js) 0.75KB 0.39KB
providers (MetadataProvider.js) 1.37KB 0.59KB
providers (ThemeProvider.js) 1.90KB 0.85KB
providers (UploadProvider.js) 11.71KB 3.53KB
providers (index.js) 0.44KB 0.22KB
providers (types.js) 0.01KB 0.04KB
react-runtime (index.js) 5.67KB 2.37KB
react (LazyPluginLoader.js) 3.77KB 1.33KB
react (SchemaRenderer.js) 19.28KB 6.38KB
react (data-invalidation.js) 5.05KB 2.08KB
react (index.js) 1.02KB 0.55KB
sdui-parser (codegen.js) 4.09KB 1.74KB
sdui-parser (index.js) 3.47KB 1.54KB
sdui-parser (parse.js) 10.04KB 2.82KB
sdui-parser (types.js) 0.29KB 0.24KB
sdui-parser (validate.js) 4.69KB 1.48KB
types (ai.js) 0.20KB 0.17KB
types (api-types.js) 0.20KB 0.18KB
types (app.js) 2.87KB 0.99KB
types (base.js) 0.20KB 0.18KB
types (blocks.js) 0.20KB 0.18KB
types (complex.js) 0.20KB 0.18KB
types (crud.js) 0.20KB 0.18KB
types (data-display.js) 0.20KB 0.18KB
types (data-protocol.js) 0.20KB 0.19KB
types (data.js) 0.20KB 0.18KB
types (designer.js) 1.87KB 0.85KB
types (disclosure.js) 0.20KB 0.18KB
types (error-code.js) 1.54KB 0.88KB
types (feedback.js) 0.20KB 0.18KB
types (field-types.js) 0.20KB 0.18KB
types (form.js) 0.20KB 0.18KB
types (http-retry.js) 4.32KB 2.02KB
types (index.js) 2.45KB 1.21KB
types (layout.js) 0.20KB 0.18KB
types (managed-by.js) 0.19KB 0.18KB
types (mobile.js) 0.20KB 0.18KB
types (navigation.js) 0.20KB 0.18KB
types (objectql.js) 0.20KB 0.18KB
types (overlay.js) 0.20KB 0.18KB
types (permissions.js) 0.20KB 0.18KB
types (plugin-scope.js) 0.20KB 0.18KB
types (record-components.js) 0.20KB 0.19KB
types (record-semantics.js) 1.28KB 0.67KB
types (registry.js) 0.20KB 0.18KB
types (reports.js) 0.20KB 0.18KB
types (spec-report.js) 5.05KB 1.93KB
types (system-fields.js) 3.33KB 1.54KB
types (theme.js) 0.20KB 0.18KB
types (ui-action.js) 1.08KB 0.64KB
types (views.js) 0.20KB 0.18KB
types (widget.js) 0.20KB 0.18KB

Size Limits

  • ✅ Core packages should be < 50KB gzipped
  • ✅ Component packages should be < 100KB gzipped
  • ⚠️ Plugin packages should be < 150KB gzipped

@os-zhuang
os-zhuang marked this pull request as ready for review July 31, 2026 11:27
@os-zhuang
os-zhuang merged commit 6ae818e into main Jul 31, 2026
16 checks passed
@os-zhuang
os-zhuang deleted the claude/identity-dual-read-field-priority-h5crvu branch July 31, 2026 11:27
os-zhuang added a commit that referenced this pull request Jul 31, 2026
…3104 PR2) (#3122)

PR1 (#3119) put a canonicalizing fold at ListView's ingestion boundary. This
converges the 22 read sites themselves onto `columnIdentity()`, so a surface
that is NOT downstream of that fold resolves the same identity anyway.

That distinction is the user-visible part. A standalone `object-grid` node —
authored directly on a page, with no `list-view` above it — never passed
through `normalizeListViewSchema`. Its `getSelectFields` read `c.field` alone
while the `ensureId` probe one line above read `f?.name || f?.field`, so a
legacy `{name:'account'}` column reached `$select` as a literal `undefined`
hole: the server never returned the field and every cell in that column came
back empty. Same for ObjectTree, RelatedList and the record:details /
record:related_list renderers.

Converged:
  ListView ×9 + its 2 request builders  ->  columnIdentity()
  RelatedList ×8                        ->  accessorKey || columnIdentity()
  ObjectGrid (probe + projection)       ->  columnIdentity()
  ObjectTree                            ->  columnIdentity() || key
  buildExpandFields                     ->  columnIdentity()
  record-details / record-related-list  ->  columnIdentity() (|| key)

`accessorKey` keeps its precedence in RelatedList — it is TanStack Table's
column key, not ObjectStack metadata identity, and only the `field || name`
tail was converged. `key` stays a tail fallback in ObjectTree and
record-related-list for the same reason: it is a generic entry key.

Two incidental fixes TypeScript surfaced once the resolver stopped returning
`any`: ListView's filter-field options and its hide-fields popover both built
entries keyed `undefined` for a column with no resolvable identity. Those
entries could never match a column; they are now dropped.

Inventory re-triage: PR1 recorded 24 family members. Two were mis-classified
and are reclassified rather than converged — reading what they actually feed
shows they are not column reads at all. ViewPreview adapts a ViewItem FORM
section to what object-form selects by (#3090's two-layer join); SchemaForm
renders an arbitrary metadata ARRAY into a popover summary and guesses at a
display key. So the family was 22, and it is now 0.

The ratchet asserts that, asserts each converged surface actually routes
through the shared reader (a surface that dropped identity resolution instead
of converging it goes red), and pins accessorKey's precedence in RelatedList.

Refs: objectstack#4115, #3090 (playbook), #3119 (PR1)


Claude-Session: https://claude.ai/code/session_01C2pdPmf2yZSd4wFDs1NHY5

Co-authored-by: Claude <noreply@anthropic.com>
os-zhuang added a commit that referenced this pull request Jul 31, 2026
…3124)

Closes the battle opened in #3104. PR1 (#3119) put the canonicalizing fold at
ingestion; PR2 (#3122) converged all 22 read sites onto columnIdentity(). This
is the audible half.

A column carrying two identity keys that DISAGREE now logs a one-time dev-mode
warning naming which key won and what to change. The fold making the two halves
agree is what stops the bug, but silently rewriting `name` to match `field`
also hides that the producer is emitting a contradiction. The renderer
recovering is not the same as the metadata being right, so the recovery says so.

Deliberately narrow:
  - Only contradictions. `{name:'stage'}` is legacy, not conflicting — stamped
    without noise.
  - Warn once per (identity, conflicting spelling). Columns are re-normalized on
    every render, and a warning that floods the console is one that gets muted.
    Keyed by the pair rather than the identity alone, so a column carrying two
    different stale spellings reports both.
  - Silent under NODE_ENV=production, and the fold still runs there.

No lint rule, and that is a measured decision. #3104 asked for
no-restricted-syntax on `.field ?? .name` to be evaluated on its false-positive
rate first. With the family at zero, all 12 remaining scanner hits are
legitimate — a syntactic rule cannot tell a two-layer join from a dual read,
because the distinction is what the keys MEAN in that layer, not how the
expression is spelled. Adopting it would mean 12 inline disables on correct
code, which trains the next author to reach for the disable. The ratchet carries
a verdict and a why per site instead. The evaluation is written into its header.

Ledger item resolved with no change needed: #3104 flagged ListColumn for
disposition under objectstack#4115 (spec-named symbols must be imports, not
declarations). ListColumnSchema is already a by-reference re-export of
@objectstack/spec/ui, and spec-subschema-parity.test.ts already pins it by
reference identity — the only check that distinguishes a re-export from a
faithful fork. Already compliant.

Verified: M5 (drop the warn call) turns 4 of the new tests red.
  vitest core+list+grid+detail+tree+view+types -> 188 files / 2663 tests green
  vitest app-shell                             -> 250 files / 2089 tests green
  turbo type-check, eslint                     -> green

Refs: objectstack#4115, #3090 (playbook), #3119 (PR1), #3122 (PR2)


Claude-Session: https://claude.ai/code/session_01C2pdPmf2yZSd4wFDs1NHY5

Co-authored-by: Claude <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants