You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Filed by the domain:ui execution seat (session session_012u2pRjcqAYtoEjgr3wwhnK) after PR #5665 went red on a job its diff cannot reach. Not a defect in any one PR — recording it because it is red on main itself and now blocks merges.
The failure
apps/site's Next.js 16.3.1 / Turbopack production build fails:
./node_modules/.pnpm/pg-connection-string@2.14.0/node_modules/pg-connection-string/index.js:88:70
Error: Module not found: Can't resolve 'fs'
87 | // Only try to load fs if we expect to read from the disk
> 88 | const fs = config.sslcert || config.sslkey || config.sslrootcert ? require('fs') : null
A Node builtin is being pulled into a client bundle. The import chain, identical in both the Client Component Browser and Client Component SSR traces:
Run 32559808825 on 9986f9114 reports 2 failed jobs: Build Docs and Test (coverage). Its Build Docs log carries the identical trace above — same modules, same two MDX routes, same task tally. So this is one failure inherited, not four independent ones.
Why it went unnoticed for ~6 hours
The PR-level check kept passing while the push-level one failed.Build Docs was green on the PR runs for #5656 (01:45Z), #5659 (02:03Z) and #5662 (02:09Z) — all based on aa3b81062 or earlier — while the push runs on their own merge commits were already red.
PR #5665 is the first in this lane based after the breakage entered, and its PR-level Build Docs fails. So the gate does catch it; it simply cannot catch it until your base includes it. The breakage window is therefore: after aa3b81062, at or before 7e811687a.
Impact
Any PR whose base includes the breakage cannot go green on Build Docs and cannot be merged. #5665 is ACCEPTed on its merits and is held on this alone — its diff is three comments, two test docstrings, two content/docs/components/basic/*.mdx prose edits, a README and a changeset, none of which appears anywhere in the failing import chain, and none of which can change module resolution.
Not diagnosed here, deliberately
I have not established which change introduced it, and I am not guessing. Two candidates worth measuring first, in this order:
A dependency movement. The chain runs entirely through third-party pins (@objectstack/spec@17.1.0, @objectstack/formula@17.1.0, pg-connection-string@2.14.0). Pin @objectstack/* to 17.1.0 #5529 ("Pin @objectstack/* to 17.1.0") is open and touches exactly this surface. A lockfile change would explain why the failure is not attributable to any one PR's source diff.
A bundler-boundary change — anything that newly pulls packages/core's evaluator into packages/components' entry, or packages/components into InteractiveDemo.tsx's client graph. That would make it a real regression rather than a dependency surprise.
The distinguishing measurement is cheap: check out aa3b81062 and 7e811687a, run pnpm --filter @object-ui/site build on each, and bisect the window.
Filed unassigned — it is not this seat's to fix and it is not scoped to domain:ui.
Filed by the
domain:uiexecution seat (sessionsession_012u2pRjcqAYtoEjgr3wwhnK) after PR #5665 went red on a job its diff cannot reach. Not a defect in any one PR — recording it because it is red onmainitself and now blocks merges.The failure
apps/site's Next.js 16.3.1 / Turbopack production build fails:A Node builtin is being pulled into a client bundle. The import chain, identical in both the Client Component Browser and Client Component SSR traces:
@object-ui/site#buildis the only failing task (28 successful, 29 total).It is on
main, not on a PRPush-to-
mainCI runs, all failure:9986f91140e05aac6826ff2d6ac7e811687aRun
32559808825on9986f9114reports 2 failed jobs:Build DocsandTest (coverage). ItsBuild Docslog carries the identical trace above — same modules, same two MDX routes, same task tally. So this is one failure inherited, not four independent ones.Why it went unnoticed for ~6 hours
The PR-level check kept passing while the push-level one failed.
Build Docswas green on the PR runs for #5656 (01:45Z), #5659 (02:03Z) and #5662 (02:09Z) — all based onaa3b81062or earlier — while the push runs on their own merge commits were already red.PR #5665 is the first in this lane based after the breakage entered, and its PR-level
Build Docsfails. So the gate does catch it; it simply cannot catch it until your base includes it. The breakage window is therefore: afteraa3b81062, at or before7e811687a.Impact
Any PR whose base includes the breakage cannot go green on
Build Docsand cannot be merged. #5665 is ACCEPTed on its merits and is held on this alone — its diff is three comments, two test docstrings, twocontent/docs/components/basic/*.mdxprose edits, a README and a changeset, none of which appears anywhere in the failing import chain, and none of which can change module resolution.Not diagnosed here, deliberately
I have not established which change introduced it, and I am not guessing. Two candidates worth measuring first, in this order:
@objectstack/spec@17.1.0,@objectstack/formula@17.1.0,pg-connection-string@2.14.0). Pin @objectstack/* to 17.1.0 #5529 ("Pin@objectstack/*to 17.1.0") is open and touches exactly this surface. A lockfile change would explain why the failure is not attributable to any one PR's source diff.packages/core's evaluator intopackages/components' entry, orpackages/componentsintoInteractiveDemo.tsx's client graph. That would make it a real regression rather than a dependency surprise.The distinguishing measurement is cheap: check out
aa3b81062and7e811687a, runpnpm --filter @object-ui/site buildon each, and bisect the window.Filed unassigned — it is not this seat's to fix and it is not scoped to
domain:ui.